Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
watty62 committed Oct 12, 2016
1 parent 1f8a2fc commit 59a2703
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scraper.py
Expand Up @@ -26,7 +26,8 @@ def scrape_URL (url_no):
# get services
el = root.cssselect ("div#FirstTab p")[1]
el2 = root.cssselect ("div#FirstTab p")[2]
services = el.text + el2.text
el3 = root.cssselect ("div#FirstTab p")[3]
services = el.text + "\n" & el2.text + "\n" + el3.text

print services

Expand Down

0 comments on commit 59a2703

Please sign in to comment.