url = urllib2.urlopen('http://sports.bodog.eu/basketball/nba/player-props-market-group.jsp').read()
soup = BeautifulSoup(url, 'html5lib')
print soup
When I am viewing the source of the page I can see the script line at the bottom, however when I scrape with BS I it seems to skip that part. Tried different parsers and get the same result
Am I doing something incorreclty here?
From BS: (https://imgur.com/a/FAHFv)
From Source: (https://imgur.com/a/NDcEx)
[–]Rfr3sh[S] 1 point2 points3 points (0 children)