Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
philippdavidpries committed Aug 30, 2019
1 parent 8ae63ff commit 8b366f7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion scraper.py
@@ -1,4 +1,15 @@
import scraperwiki
html=scraperwiki.scrape("http://inmo.ie/6022")
print("Clickonthe...morelinktoseethewholepage")
print html



importlxml.html
root=lxml.html.fromstring(html) #turnourHTMLintoanlxmlobject

tds=root.cssselect('td') #getallthe<tdtags
fortdintds:
print lxml.html.tostring(td) # the full HTML tag
print td.text # just the text inside the HTML tag


0 comments on commit 8b366f7

Please sign in to comment.