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 order to get hold of this information I'm thinking of going to each source and scraping the relevant information. While I've obtained similar information from HTML pages before it was an extremely cumbersome process. Do any Python features/libraries exist that would make this process easier?

link|improve this question
feedback

7 Answers

Beautiful Soup will save you a great deal of pain.

link|improve this answer
This is wonderful! Thanks Ali! – Brian Leahy Nov 25 '08 at 9:15
Seconded. BS is the first thing that naturally comes to mind. – ayaz Nov 25 '08 at 9:19
I've also just recently discovered BeautifulSoup. Up until then I didn't know it was possible to fall in love with a piece of code... :b – efotinis Nov 25 '08 at 12:27
feedback

Another option is to use lxml.html. I've occasionally found this to handle some pages better than BeautifulSoup (odd HTML comment corner cases), and the API may be more familiar if you've worked with XML. If BeautifulSoup does handle certain pages better, you can still use it while retaining the same interface by using soupparser module.

link|improve this answer
For all the good press BeautifulSoup gets in the python community, I've found that 4 of the 6 sites I've scraped today make the latest version of BS choke, while lxml.html works perfectly. I could be doing something wrong tho I reckon... – Prairiedogg Jan 6 '09 at 3:37
I'm finding the biggest problem is CSS/JavaScript insanity (www.ebay.com for example makes BeautifulSoup choke horribly, weird quoting, etc. Slashdot is another site, all their links start with // instead of http://). – Kurt Mar 3 '09 at 11:12
feedback

Use mechanize to automate browsing, and BeautifulSoup to parse the HTML. (I do lots of stuff like what you described.)

link|improve this answer
feedback

Another option, if you don't mind learning "yet another framework", is Scrapy, which is a full-featured screen scraping environment for writing scrapers, in Python.

The difference between Scrapy and lxml/BS or Mechanize is that Scrapy is a complete integrated solution, while lxml/BS only do the parsing side, and Mecanize the crawling side. There is no silver bullet, so you'll have to try for yourself and decide which technology fits better for your needs.

link|improve this answer
I found this framework to be filled with a lot of overhead (i.e. more complicated structure than django), and to be difficult to integrate into any solution as the preferred method of operation is via custom shell command (so you can't easily run from within existing code). – mrmagooey Nov 30 '11 at 7:08
@mrmagooey it depends on what you want to develop. if you want to crawl a site with scrapy you do it in less than 5min. but if you want to create a bot to do some comple "use case" probably with scrapy is a little more difficult and with mechanize a little more easy. hope you see my point. also scrapy is really fast to crawl sites – llazzaro Dec 13 '11 at 1:51
feedback

While BeautifulSoup is a good piece of code, depending on what you are trying to extract from the web page, you may not need that much intelligence. The data you're looking for may be easily picked out by a regular expression, for example.

link|improve this answer
3  
You're succumbing to the temptations of the dark god Cthulhu! codinghorror.com/blog/2009/11/parsing-html-the-cthulhu-way.html – Acorn Jun 27 '10 at 8:04
1  
Did you not read the blog post? Ned Batchelder's answer goes hand in hand with it. – GreenRails Nov 15 '10 at 12:54
feedback

This isn't answering you question directly, but you may want to think about getting your data from another service, such as Schedules Direct. They provide XML, and it's the recommended data provider for xmltv.

link|improve this answer
feedback
import urllib

Docs: urllib docs

link|improve this answer
feedback

Your Answer

 
or
required, but never shown