Tagged Questions

The process of extracting information from the HTML source code of live websites. Typically used by third-party applications to interact with a website that doesn't expose an API.

learn more… | top users | synonyms (1)

102
votes
37answers
20k views

Options for HTML scraping?

I'm thinking of trying Beautiful Soup, a python package for HTML scraping. Are there any other HTML scraping packages I should be looking at? Python is not a requirement, I'm actually interested in ...
24
votes
7answers
1k views

Web Scraping in a Google Chrome Extension (JavaScript + Chrome APIs)

What are the best options for performing a Web Scraping from within a Google Chrome Extension with JavaScript and whatever more technologies are available. Other JavaScript-libraries are also ...
18
votes
12answers
2k views

How do screen scrapers work?

I hear people writing these programs all the time and I know what they do, but how do they actually do it? I'm looking for general concepts.
13
votes
4answers
178 views

What would be the most ethical way to consume content from a site that is not providing an API?

I was wondering what would be the most ethical way to consume some bytes (386 precisely) of content from a given Site A, with an application (e.g. Google App Engine) in some Site B, but doing it ...
13
votes
3answers
313 views

Is there a Mathematica API for the functions.wolfram site?

Is there a Mathematica API for the functions.wolfram site? If there's not, has anyone implemented a web scraper for it? For example it would be nice to be able to access ...
11
votes
2answers
4k views

Scrape web pages in real time with Node.js

What's a good was to scrape website content using Node.js. I'd like to build something very, very fast that can execute searches in the style of kayak.com, where one query is dispatched to several ...
10
votes
2answers
3k views

How can I get google cache age of any url or web page

In my project I need this result (Google cache age) to be added as an important information. I tried to search sources for **Google cache age i.e. The number of days since Google last re-indexed the ...
10
votes
12answers
3k views

Is there anyway to tell if a website is coded in PHP or ASP

Assuming that the .php and .aspx extensions have been hidden from the URLs, are there any clues in the HTML that might suggest the site is coded in either php or asp? Cheers.
9
votes
6answers
495 views

data mining - how to identify main content on a webpage

Given a news article webpage (from any major news source such as times or bloomberg), I want to identify the main article content on that page and throw out the other misc elements such as ads, ...
9
votes
1answer
510 views

How to check Google index count of a url or webpage link

In my project I need this result (Google index count) to be added as an important information. If you have any link from where I can get Google index count of a url, it will be helpful to me.
9
votes
4answers
563 views

How can I handle Javascript in a Perl web crawler?

I would like to crawl a website, the problem is, that its full of JavaScript things, such as buttons and such that when they are pressed, they do not change the URL, but the data on the page is ...
8
votes
1answer
736 views

Good Free/Paid Web Scraping Library in C#.NET which handles javascripts

I am looking for a good paid/free web scraping library with .NET support which has decent support for JavaScript processing and offers very good performance. It should have its own browser engine and ...
8
votes
1answer
667 views

How to isolate a single element from a scraped web page in R

I'm trying to do soemone a favour, and it's a tad outside my comfort zone, so I'm stuck. I want to use R to scrape this page ...
8
votes
9answers
2k views

Web scraping with Python

I'm currently trying to scrape a website that has fairly poorly-formatted HTML (often missing closing tags, no use of classes or ids so it's incredibly difficult to go straight to the element you ...
7
votes
1answer
814 views

html scraping and css queries

what are the advantages and disadvantages of the following libraries? PHP Simple HTML DOM Parser QP phpQuery From the above i've used QP and it failed to parse invalid HTML, and simpleDomParser, ...
6
votes
2answers
100 views

Why does this regex take so long to find email addresses in certain files?

I have a regular expression that looks for email addresses ( this was taken from another SO post that I can't find and has been tested on all kinds of email configurations ... changing this is not ...
6
votes
3answers
156 views

How do I check if a URL has a link on botw.org or not?

I am developing an application in which I have to check whether a link exists on botw.org for a given URL. Is there any free API available to check botw.org, or any other source to check this? ...
6
votes
3answers
585 views

Hows Mozenda Screen Scraper coded?

I want to know how is the Mozenda Screen Scraper coded? http://www.mozenda.com/screen-scraper I shows a browser where user can select the fields he wants to scrap and it creates a crawl script out ...
6
votes
2answers
877 views

Any Good Open Source Web Crawling Framework in C#

Iam building a shopping comparison engine and I need to build a crawling engine to perform the daily data collection process. I have decided to build the crawler in C#. I have a lot of bad experience ...
6
votes
1answer
1k views

How to use CrawlSpider from scrapy to click a link with javascript onclick?

I want scrapy to crawl pages where going to the next one link looks like this: Next Will scrapy be able to interpret javascript code of that? With livehttpheaders extension I found out that ...
6
votes
3answers
1k views

How can I use R (Rcurl/XML packages ?!) to scrape this webpage?

I have a (somewhat complex) web scraping challenge that I wish to accomplish and would love for some direction (to whatever level you feel like sharing) here goes: I would like to go through all the ...
5
votes
3answers
119 views

Scraping with BeautifulSoup and multiple paragraphs

I'm trying to scrape a speech from a website using BeautifulSoup. I'm encountering problems, however, since the speech is divided into many different paragraphs. I'm extremely new to programming and ...
5
votes
2answers
304 views

Click a Button in Scrapy

I'm using Scrapy to crawl a webpage. Some of the information I need only pops up when you click on a certain button (of course also appears in the HTML code after clicking). I found out that Scrapy ...
5
votes
5answers
374 views

unable to scrape content from a website

I am trying to scrap some content from a website but the code below is not working(not showing any output). here is the code $url="some url"; $otherHeaders=""; //here i am using some other headers ...
5
votes
4answers
492 views

How to automate multiple requests to a web search form using R

I'm trying to learn how to use RCurl (or some other suitable R package if I'm wrong about RCurl being the right tool) to automate the process of submitting search terms to a web form and placing the ...
5
votes
2answers
840 views

Scraping Javascript driven web pages with PyQt4 - how to access pages that need authentication?

I have to scrape a very, very simple page on our company's intranet in order to automate one of our internal processes (returning a function's output as successful or not). I found the following ...
5
votes
7answers
388 views

Could a web-scraper get around a good throttle protection?

Suppose that a data source sets a tight IP-based throttle. Would a web scraper have any way to download the data if the throttle starts rejecting their requests as early as 1% of the data being ...
5
votes
2answers
835 views

Web Scraping With Haskell

What is the current state of libraries for scraping websites with Haskell? I'm trying to make myself do more of my quick oneoff tasks in Haskell, in order to help increase my comfort level with the ...
5
votes
3answers
2k views

Scraping and web crawling framework, PHP

I know scrapy.org that is a fast high-level screen scraping and web crawling framework, used to crawl websites and extract structured data from their pages. I used it in some projects and it is very ...
5
votes
5answers
1k views

How do you Screen Scrape?

When there is no webservice API available, your only option might be to Screen Scrape, but how do you do it in c#? how do you think of doing it?
5
votes
15answers
5k views

Whats the best screen scraping language?

Hi I want to create a desktop app (c# prob) that scrapes or manipulates a form on a 3rd party web page. Basically I enter my data in the form in the desktop app, it goes away to the 3rd party website ...
4
votes
2answers
183 views

Login to a website through web-scraping tool in Python

I am using Selenium webdriver in Python for a web-scraping project. I would like to login by entering the login details and then click the submit button. I am able to enter the Username and ...
4
votes
1answer
53 views

How do I convert web content to a consistant character set when crawling the web?

I've done a lot of research on this and a lot of testing. As I understand it, HTTP headers are only set if the web server is setup to do so, and may default to a particular encoding even if ...
4
votes
3answers
208 views

How do I scrape only the <body> tag off of a website

I'm working on a webcrawler. At the moment i scrape the whole content and then using regular expression i remove <meta>, <script>, <style> and other tags and get the content of the ...
4
votes
2answers
140 views

Save dynamic PHP page for offline viewing

I have a PHP page foo.php that pulls records from a MySQL database and displays them in a nice way. The tricky part is I have links at the top like "Sort by Name" that link to foo.php?sort=name. My ...
4
votes
1answer
673 views

Navigating / scraping hashbang links with javascript (phantomjs)

I'm trying to download the HTML of a website that is almost entirely generated by JavaScript. So, I need to simulate browser access and have been playing around with PhantomJS. Problem is, the site ...
4
votes
3answers
405 views

Looking for a simple Java spider

I need to supply a base URL (such as http://www.wired.com) and need to spider through the entire site outputting an array of pages (off the base URL). Is there any library that would do the trick? ...
4
votes
2answers
357 views

Scraping a wiki page for the “Periodic table” and all the links

I wish to scrape the following wiki article: http://en.wikipedia.org/wiki/Periodic_table So that the output of my R code will be a table with the following columns: Chemical elements short name ...
4
votes
1answer
304 views

How to perform web scraping to find specific linked pages in Java on Google App Engine?

I need to retrieve text from a remote web site that does not provide an RSS feed. What I know is that the data I need is always on pages linked to from the main page (http://www.example.com/) with a ...
4
votes
1answer
859 views

Html Agility Pack: Find Comment Node

I am scraping a website that uses Javascript to dynamically populate the content of a website with the Html Agility pack. Basically, I was searching for the XPATH "\\div[@class='PricingInfo']", but ...
3
votes
2answers
22 views

How can I extract sentences with years in them with a regex?

I'm parsing Wikipedia articles. I want to extract every sentence with a year in it. The year can be anything from 1000 - 2012. Below is the regex I've been trying, but I can't quite get it right. ...
3
votes
2answers
77 views

How to load a certain div of an external webpage on another webpage that is on a different domain

How can you load a certain div of a webpage on another webpage that resides on a different domain. I have tried this: <div id="m"></div> <script>$('#m').load('http://something.com ...
3
votes
2answers
80 views

Parsing meta tags efficiently with lxml?

I'm parsing HTML pages with lxml. The pages have meta tags as follows: <meta property="og:locality" content="Detroit" /> <meta property="og:country-name" content="USA" /> How can I use ...
3
votes
1answer
117 views

Jsoup is unable to fetch complete content from a webpage[No errors/exceptions, but misses some content]

I am trying to fetch content from following page with JSOUP: http://www.exchangeandmart.co.uk/used-cars-for-sale But it does not fetch the div with id=results , even though it is visible when I open ...
3
votes
0answers
239 views

Unable to login with Python[mechanize & urllib2] but curl (shell-script) is working great ? (Debug)

I am trying to login to a website, using Python. Problem : < Python mechanize script > The script seems to successfully authenticate sometimes and redirect me to home, sometimes it doesn't and ...
3
votes
1answer
84 views

How can I control Firefox from R to handle AJAX/Javascripts

I try to figure out a way of controlling a browser (preferably Firefox) via R scripts in order to retrieve information controlled by AJAX/Javascripts in Websites. For example, how could I retrieve the ...
3
votes
1answer
135 views

Python Post to form with anti-scrape protection

Trying to scrape the content off a site with Python, that has a simple form authentication with username and password, but also has a hidden field called "foil" that contains what looks like a ...
3
votes
1answer
130 views

Solution for server side web scraping/navigation (with JavaScript support)

I need to do server side web scraping/navigation, including sites with JavaScript, and I need a solution that would work on a hosting plan - I dont have my own server. I came across ...
3
votes
3answers
325 views

How to handle page scraping errors with Simple HTML Dom Parser

Similar to Facebook, I am building an app that allows users to post a link. The user fills out the link in an input field, and the controller returns Title Link Meta description Images (as ...
3
votes
1answer
106 views

Removing markup when working with enlive

I'm learning to use the fantastic enlive library to do some web-scraping. I need to capture some text that may be partially highlighted. For example the html may look like: <a href="example.com" ...

1 2 3 4 5 13