39
votes
27answers
5k 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 …
12
votes
13answers
447 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:
…
12
votes
12answers
1k 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.
9
votes
3answers
635 views
Grant’s python rep tracker updated to use JSON API
Hi All,
This is a follow up to Grant's original and excellent post where he presented us with a screen scraper to let us all get all obsessive about where our rep points were coming from on a minute …
9
votes
7answers
1k 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 …
9
votes
4answers
765 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 …
8
votes
11answers
559 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
5answers
1k views
Screen Scraping from a web page with a lot of Javascript
Hello
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 …
8
votes
12answers
2k 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?
7
votes
12answers
1k 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 …
7
votes
15answers
2k 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. …
7
votes
6answers
3k views
How do you screen scrape ajax pages?
How do you screen scrape ajax pages?
6
votes
4answers
692 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 …
5
votes
2answers
193 views
Scraping Library for PHP - phpQuery?
I'm looking for a PHP library that allows me to scrap webpages and takes care about all the cookies and prefilling the forms with the default values, that's what annoys me the most.
I'm tired of …
5
votes
4answers
354 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 …
