您好,我正在尝试从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'})
谢谢