Tagged Questions
Screen-scraping, also known as web-scrapping or data-scraping is a software technique use to collect and parse information from web sites. The information is scraped via a parser, for example using regular expressions.
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 ...
68
votes
19answers
3k views
How do I prevent site scraping?
I have a fairly large music website with a large artist database. I've been noticing other music sites scraping our site's data (I enter dummy Artist names here and there and then do google searches ...
56
votes
5answers
2k views
Web scraping etiquette
I'm considering writing a simple web scraping application to extract information from a website that does not seem to specifically prohibit this.
I've checked for other alternatives (eg RSS, web ...
42
votes
12answers
2k views
How do search engines find relevant content?
How does Google find relevant content when it's parsing the web?
Let's say, for instance, Google uses the PHP native DOM Library to parse content. What methods would they be for it to find the most ...
38
votes
7answers
18k views
Web scraping with Python
I'd like to grab daily sunrise/sunset times from here. Is it possible to scrape web content with Python? what are the modules used? Is there any tutorial available?
Thanks
22
votes
13answers
8k views
How legal is screen scraping?
I'm trying to build an iPhone application that gathers content from real estate websites to display it in a mashed-up and structured manner (mapping, price averages...etc)
I've stumbled upon many ...
21
votes
5answers
2k views
Legalities of screen scraping
How does the fair use doctrine apply to websites in terms of screen-scraping?
The particular example I am thinking of is extraction of the useful data from a website, and re-presentation of the raw ...
21
votes
12answers
17k views
How to implement a web scraper in PHP?
What built-in PHP functions are useful for web scraping? What are some good resources (web or print) for getting up to speed on web scraping with PHP?
19
votes
4answers
1k views
Why is python decode replacing more than the invalid bytes from an encoded string?
Trying to decode an invalid encoded utf-8 html page gives different results in
python, firefox and chrome.
The invalid encoded fragment from test page looks like 'PREFIX\xe3\xabSUFFIX'
>>> ...
19
votes
8answers
6k views
Headless, scriptable Firefox/Webkit on linux?
I'm looking to automate some web interactions, namely periodic download of files from a secure website. This basically involves entering my username/password and navigating to the appropriate URL.
I ...
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.
17
votes
24answers
7k views
Protection from screen scraping
Following on from my question on the Legalities of screen scraping, even if it's illegal people will still try, so:
What technical mechanisms can be employed to prevent or at least disincentivise ...
17
votes
8answers
9k views
17
votes
8answers
19k views
How can I scrape an HTML table to CSV?
The Problem
I use a tool at work that lets me do queries and get back HTML tables of info. I do not have any kind of back-end access to it.
A lot of this info would be much more useful if I could ...
16
votes
7answers
6k views
Are there any Python libraries, or features, that make screen scraping easier?
I'm wanting to create a REST API for TV listings in my country. While online aggregations of TV listings do exist they're too tied to the presentation to be of any use to software developers.
In ...
15
votes
9answers
5k views
Is there a PHP equivalent of Perl's WWW::Mechanize?
I'm looking for a library that has functionality similar to Perl's WWW::Mechanize, but for PHP. Basically, it should allow me to submit HTTP GET and POST requests with a simple syntax, and then parse ...
15
votes
9answers
12k views
What's a good tool to screen-scrape with Javascript support?
Is there a good test suite or tool set that can automate website navigation -- with Javascript support -- and collect the HTML from the pages?
Of course I can scrape straight HTML with BeautifulSoup. ...
14
votes
9answers
3k views
How to “scan” a website (or page) for info, and bring it into my program?
Well, I'm pretty much trying to figure out how to pull information from a webpage, and bring it into my program (in Java).
For example, if I know the exact page I want info from, for the sake of ...
14
votes
12answers
1k views
Win32.: How to scrape HTML without regular expressions?
A recent blog entry by a Jeff Atwood says that you should never parse HTML using regular expressions - yet doesn't give an alternative.
i want to scrape search search results, extracting values:
...
14
votes
6answers
6k views
Screen Scraping from a web page with a lot of Javascript
I have been asked to write an app which screen scrapes info from an intranet web page and presents the certain info from it in a nice easy to view format. The web page is a real mess and requires the ...
14
votes
8answers
5k views
PHP CSS Selector Library?
Is there a PHP class/library that would allow me to query an XHTML document with CSS selectors? I need to scrape some pages for data that is very easily accessible if I could somehow use CSS selectors ...
13
votes
2answers
2k views
Beautiful Soup cannot find a CSS class if the object has other classes, too
if a page has <div class="class1"> and <p class="class1">, then soup.findAll(True, 'class1') will find them both.
If it has <p class="class1 class2">, though, it will not be found. ...
13
votes
7answers
5k views
HTML Scraping in Php
I've been doing some html scraping in PHP using regular expressions. This works, but the result is finicky and fragile. Has anyone used any packages that provide a more robust solution? A config ...
12
votes
4answers
1k views
Grabbing each frame of an HTML5 canvas
These palette cycle images are breathtaking: http://www.effectgames.com/demos/canvascycle/?sound=0
I'd like to make some (or all) of these into desktop backgrounds.
I could use an animated gif ...
12
votes
4answers
2k views
How to download any(!) webpage with correct charset in python?
Problem
When screen-scraping a webpage using python one has to know the character encoding of the page. If you get the character encoding wrong than your output will be messed up.
People usually use ...
12
votes
4answers
3k views
What is the best way to parse a web page in Ruby?
I have been looking at XML and HTML libraries on rubyforge for a simple way to pull data out of a web page. For example if I want to parse a user page on stackoverflow how can I get the data into a ...
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
3answers
757 views
Is there a simple way in R to extract only the text elements of an HTML page?
Is there a simple way in R to extract only the text elements of an HTML page?
I think this is known as 'screen scraping' but I have no experience of it, I just need a simple way of extracting the ...
10
votes
6answers
2k views
Screen scraping with Python
Does Python have screen scraping libraries that offer JavaScript support?
I've been using pycurl for simple HTML requests, and Java's HtmlUnit for more complicated requests requiring JavaScript ...
10
votes
6answers
1k views
WebBrowsing in C# - Libraries, Tools etc. - Anything like Mechanize in Perl?
Looking for something similar to Mechanize for .NET...
If you don't know what Mechanize is.. http://search.cpan.org/dist/WWW-Mechanize/
I will maintain a list of suggestions here. Anything for ...
10
votes
5answers
3k views
Extracting tables from PDF files?
Anyone got any experience with extracting data from PDF files programatically, in particular embedded tables? What tools did you use? Is this always a one-off process depending on the file, or are ...
9
votes
4answers
213 views
Inferring templates from a collection of strings
I am indexing a set of websites which have a very large number of pages (tens of millions) that are generated from a small number of templates. I am looking for an algorithm to learn the templates ...
9
votes
6answers
1k views
Headless Browser for Python (Javascript support REQUIRED!)
I need a headless browser which is fairly easy to use (I am still fairly new to Python and programming in general) which will allow me to navigate to a page, log into a form that requires Javascript, ...
9
votes
5answers
820 views
How can I use Perl to grab text from a web page that is dynamically generated with JavaScript?
There is a website I am trying to pull information from in Perl, however the section of the page I need is being generated using javascript so all you see in the source is:
<div ...
9
votes
9answers
4k views
Scrape a dynamic website
What is the best method to scrape a dynamic website where most of the content is generated by what appears to be ajax requests? I have previous experience with a Mechanize, BeautifulSoup, and python ...
8
votes
3answers
1k views
Click on a javascript link within python?
I am navigating a site using python's mechanize module and having trouble clicking on a javascript link for next page. I did a bit of reading and people suggested I need python-spidermonkey and ...
8
votes
9answers
3k views
Get data from a facebook page wall or group wall for use on personal website
I want to connect to public facebook page or group and list all entries from the wall on a personal website. I will use PHP on my server so that would be the best solution for me. Or javascript.
...
8
votes
2answers
330 views
Is there a Python equivalent for the Perl module Term::VT102?
In Perl there is a very handy module, Term::VT102, which allows you to create a screen in memory. This is very handy for scraping purposes since you can keep track of all the changes to portions of ...
8
votes
3answers
2k views
Can I scrape flash?
I'd like to scrape a website to programmatically collect any external links within any flash elements on the page. I'd also like to collect any other text, if possible, but the links are the important ...
8
votes
11answers
532 views
Unit testing screen scraper
I'm in the process of writing an HTML screen scraper. What would be the best way to create unit tests for this?
Is it "ok" to have a static html file and read it from disk on every test?
Do you have ...
8
votes
11answers
748 views
Programmatically detecting “most important content” on a page
What work, if any, has been done to automatically determine the most important data within an html document? As an example, think of your standard news/blog/magazine-style website, containing ...
8
votes
2answers
664 views
How do sites like Hubspot track inbound links?
Are all these types of sites just illegally scraping Google or another search engine?
As far as I can tell ther is no 'legal' way to get this data for a commercial site.. The Yahoo! api ( ...
7
votes
3answers
1k views
Memory leak in Node.js scraper
This is a simple scraper written in JavaScript with Node.js, for scraping Wikipedia for periodic table element data. The dependencies are jsdom for DOM manipulation and chain-gang for queuing.
It ...
7
votes
3answers
2k views
What is the most elegant way to do screen scraping in node.js?
I'm in the process of hacking together a web app which uses extensive screen scraping in node.js. I feel like I'm fighting against the current at every corner. There must be an easier way to do this. ...
7
votes
4answers
1k views
Best way for a beginner to learn screen scraping with python
This might be one of thoose questions that are difficult to answer, but here goes:
I dont consider my self programmer - but I would like to :-) I've learned R, because I was sick and tired of spss, ...
7
votes
2answers
1k views
Indian Railway Train Search API
Is there any API provided by Indian Railways to search its train network, time-tables etc. There are many sites out there which show time-table etc. I searched Google but couldn't find any info on Web ...
7
votes
3answers
784 views
How to scrape a _private_ google group?
I'd like to scrape the discussion list of a private google group. It's a multi-page list and I might have to this later again so scripting sounds like the way to go.
Since this is a private group, I ...
7
votes
4answers
1k views
scrape html generated by javascript with python
I need to scrape a site with python. I obtain the source html code with the urlib module, but I need to scrape also some html code that is generated by a javascript function (which is included in the ...
7
votes
6answers
6k views
Website scraping using jquery and ajax
I want to be able to manipulate the html of a given url. Something like html scraping. I know this can be done using curl or some scraping library.But i would like to know if it is possible to use ...
7
votes
15answers
5k views
Super-fast screen scraping techniques?
I often find myself needing to do some simple screen scraping for internal purposes (i.e. a third party service I use only publishes reports via HTML). I have at least two or three cases of this now. ...