vote up 0 vote down star

I currently have some Ruby code used to scrape some websites. I was using Ruby because at the time I was using Ruby on Rails for a site, and it just made sense.

Now I'm trying to port this over to Google App Engine, and keep getting stuck.

I've ported Python Mechanize to work with Google App Engine, but it doesn't support DOM inspection with XPATH.

I've tried the built-in ElementTree, but it choked on the first HTML blob I gave it when it ran into '&mdash'.

Do I keep trying to hack ElementTree in there, or do I try to use something else?

thanks, Mark

flag

29% accept rate
1  
Duplicate of all of these: stackoverflow.com/search?q=%5Bpython%5D+html+parse/… – S.Lott Oct 13 at 22:02
I might have to go with scrapy, can i use XPath with beautiful soup? – MStodd Oct 15 at 5:53
Actually I might have to go with none since I'm not sure beautiful soup works with xpath, and it looks like scrapy has a binary dependancy. – MStodd Oct 15 at 6:00

5 Answers

vote up 11 vote down

Beautiful Soup.

link|flag
For some reason I was thinking that was pure python, but it looks like it is. I'll check it out. – MStodd Oct 13 at 22:11
1  
Second that. Beautiful Soup is incredible. – David Wolever Oct 13 at 22:21
+1 for Beautiful Soup. Scraping is its whole purpose. – steveha Oct 13 at 23:19
Right answer, but there's something fundamentally broken about getting 60+ points for being the first person to write two words. ;) – Nick Johnson Oct 14 at 10:18
@Nick Johnson: Since it's a duplicate question, it's doubly wrong to get upvoted for answering it yet again. – S.Lott Oct 14 at 11:47
show 1 more comment
vote up 3 vote down

lxml -- 100x better than elementtree

link|flag
2  
lxml is a wrapper for a C library, so it cannot run on appengine. – Roberto Bonvallet Oct 13 at 22:44
It's also going to barf just as hard on badly formed HTML. – jcd Oct 13 at 23:38
2  
jcd - not true. lxml includes several options for parsing HTML, including using BeautifulSoup as a parser backend - codespeak.net/lxml/elementsoup.html – Matt Good Oct 14 at 4:16
vote up 2 vote down

There's also scrapy, might be more up your alley.

link|flag
+1 to scrapy. Works really well. – nosklo Oct 14 at 14:28
vote up 0 vote down

There are a number of examples of web page scrapers written using pyparsing, such as this one (extracts all URL links from yahoo.com) and this one (for extracting the NIST NTP server addresses). Be sure to use the pyparsing helper method makeHTMLTags, instead of just hand coding "<" + Literal(tagname) + ">" - makeHTMLTags creates a very robust parser, with accommodation for extra spaces, upper/lower case inconsistencies, unexpected attributes, attribute values with various quoting styles, and so on. Pyparsing will also give you more control over special syntax issues, such as custom entities. Also it is pure Python, liberally licensed, and small footprint (a single source module), so it is easy to drop into your GAE app right in with your other application code.

link|flag
vote up 0 vote down

BeautifulSoup is good, but its API is awkward. Try ElementSoup, which provides an ElementTree interface to BeautifulSoup.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.