到目前为止,这是我的代码:
from bs4 import BeautifulSoup
from urllib.request import urlopen
url = urlopen("http://sports.yahoo.com/nhl/scoreboard?d=2013-04-01")
content = url.read()
soup = BeautifulSoup(content)
print (soup.prettify)
table = soup.find('table')
rows = table.findAll('tr')
for tr in rows:
cols = tr.findAll('td')
for td in cols:
text = td.findAll('yspscores')
for yspscores in td:
print (yspscores)
我遇到的问题是该雅虎页面的 HTML 在此上下文中具有表数据:<td class="yspscores">
我不太明白如何在我的代码中引用它。我的目标是打印出分数对应的球队的分数和名称。