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?
|
just use urllib2 in combination with the brilliant BeautifulSoup library:
|
|||||||||||||||
|
|
I'd really recommend Scrapy, for reasons being elaborated in this question - "Is it worth learning Scrapy?". Quote from the answer:
|
|||||||
|
|
I collected together scripts from my web scraping work into this library. Example script for your case:
Output:
|
|||
|
|
|
You can use urllib2 to make the HTTP requests, and then you'll have web content. You can get it like this:
Beautiful Soup is a python HTML parser that is supposed to be good for screen scraping. In particular, here is their tutorial on parsing an HTML document. Good luck! |
|||
|
|
|
Python has several options for web scraping. I enumerated some of the options here in response to a similar question. |
|||
|
|
|
I use a combination of Scrapemark (finding urls - py2) and httlib2 (downloading images - py2+3). The scrapemark.py has 500 lines of code, but uses regular expressions, so it may be not so fast, did not test. Example for scraping your website:
Usage:
Result:
|
||||
|
|
|
Why don't you just use Grab. Which is simple and fast? Grab Official Site |
|||