Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

7 Answers

up vote 91 down vote accepted

just use urllib2 in combination with the brilliant BeautifulSoup library:


import urllib2
from BeautifulSoup import BeautifulSoup
# or if your're using BeautifulSoup4:
# from bs4 import BeautifulSoup

soup = BeautifulSoup(urllib2.urlopen('http://www.timeanddate.com/worldclock/astronomy.html?n=78').read())

for row in soup('table', {'class' : 'spad'})[0].tbody('tr'):
  tds = row('td')
  print tds[0].string, tds[1].string
  # will print date and sunrise
share|improve this answer
11  
Since BeautifulSoup4, it is 'from bs4'! – Dani bISHOP Mar 6 '12 at 21:26
1  
thx, added a comment. – flurin May 12 '12 at 12:03
Small comment: this can be slightly simplified using the requests package by replacing line 6 with: soup = BeautifulSoup(requests.get('timeanddate.com/worldclock/astronomy.html?n=78').text) – Derrick Coetzee Jul 31 '12 at 7:45
thanks for the tip. the request package did not yet exist, when I wrote the snippet above ;-) – flurin Jul 31 '12 at 10:04
@DerrickCoetzee - your simplification raises a MissingSchema error (at least on my installation). This works: soup = BeautifulSoup(requests.get('http://www.timeanddate.com/worldclock/astronomy.html‌​?n=78').text) – kmote Nov 30 '12 at 5:44
show 1 more comment

I'd really recommend Scrapy, for reasons being elaborated in this question - "Is it worth learning Scrapy?".

Quote from the answer:

  • Scrapy crawling is fastest than mechanize because uses asynchronous operations (on top of Twisted).
  • Scrapy has better and fastest support for parsing (x)html on top of libxml2.
  • Scrapy is a mature framework with full unicode, handles redirections, gzipped responses, odd encodings, integrated http cache, etc.
  • Once you are into Scrapy, you can write a spider in less than 5 minutes that download images, creates thumbnails and export the extracted data directly to csv or json.
share|improve this answer
7  
I didn't notice this question was already 2 years old, still feel that Scrapy should be named here in case someone else is having the same question. – Sjaak Trekhaak Dec 22 '11 at 11:14
Scrapy is a framework, and therefore is horrible and thinks it's more important than your project. It's a framework because of the horrible (unnecessary) limitations of Twisted. – user1244215 Aug 17 '12 at 3:08

I collected together scripts from my web scraping work into this library.

Example script for your case:

from webscraping import download, xpath
D = download.Download()

html = D.get('http://www.timeanddate.com/worldclock/astronomy.html?n=78')
for row in xpath.search(html, '//table[@class="spad"]/tbody/tr'):
    cols = xpath.search(row, '/td')
    print 'Sunrise: %s, Sunset: %s' % (cols[1], cols[2])

Output:

Sunrise: 08:39, Sunset: 16:08
Sunrise: 08:39, Sunset: 16:09
Sunrise: 08:39, Sunset: 16:10
Sunrise: 08:40, Sunset: 16:10
Sunrise: 08:40, Sunset: 16:11
Sunrise: 08:40, Sunset: 16:12
Sunrise: 08:40, Sunset: 16:13
share|improve this answer

You can use urllib2 to make the HTTP requests, and then you'll have web content.

You can get it like this:

import urllib2
response = urllib2.urlopen('http://www.timeanddate.com/worldclock/astronomy.html?n=78')
html = response.read()

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!

share|improve this answer

Python has several options for web scraping. I enumerated some of the options here in response to a similar question.

share|improve this answer

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:

import sys
from pprint import pprint
from scrapemark import scrape

pprint(scrape("""
    <table class="spad">
        <tbody>
            {*
                <tr>
                    <td>{{[].day}}</td>
                    <td>{{[].sunrise}}</td>
                    <td>{{[].sunset}}</td>
                    {# ... #}
                </tr>
            *}
        </tbody>
    </table>
""", url=sys.argv[1] ))

Usage:

python2 sunscraper.py http://www.timeanddate.com/worldclock/astronomy.html?n=78

Result:

[{'day': u'1. Dez 2012', 'sunrise': u'08:18', 'sunset': u'16:10'},
 {'day': u'2. Dez 2012', 'sunrise': u'08:19', 'sunset': u'16:10'},
 {'day': u'3. Dez 2012', 'sunrise': u'08:21', 'sunset': u'16:09'},
 {'day': u'4. Dez 2012', 'sunrise': u'08:22', 'sunset': u'16:09'},
 {'day': u'5. Dez 2012', 'sunrise': u'08:23', 'sunset': u'16:08'},
 {'day': u'6. Dez 2012', 'sunrise': u'08:25', 'sunset': u'16:08'},
 {'day': u'7. Dez 2012', 'sunrise': u'08:26', 'sunset': u'16:07'}]
share|improve this answer

Why don't you just use Grab. Which is simple and fast? Grab Official Site

share|improve this answer
Because it's in Russian – Vladtn Mar 17 at 21:13
that is not an issue when google chrome translates it automatically. – geeth Apr 13 at 14:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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