为什么我可以刮一张桌子,而不是一个嵌套桌子?

时间:2018-11-23 20:29:41

标签: python-3.x web-scraping beautifulsoup findall

您好,我正在尝试从Wikipedia中的子表(红色箭头图像)中抓取一些数据,但似乎不起作用,没有返回任何数据。

url = requests.get('https://en.wikipedia.org/wiki/List_of_current_NBA_team_rosters').content
soup = BeautifulSoup(url, 'lxml')
teams_table = soup.findAll('table',{'class':'sortable jquery-tablesorter'})

但是,当我从实际表格中抓取数据(绿色箭头图像)时,它工作正常。

teams_table = soup.findAll('table',{'class':'toccolours'})

谢谢

enter image description here

0 个答案:

没有答案