diff --git a/scraper.py b/scraper.py index c6e87a1..3536500 100644 --- a/scraper.py +++ b/scraper.py @@ -5,7 +5,7 @@ # create a new function, which gets passed a variable we're going to call 'url' def scrape_dof(url): html = scraperwiki.scrape(url) - #print html + print html root = lxml.html.fromstring(html) #line below selects all
rows = root.cssselect("div.notice-search-item")