我想编写如下代码:
from urllib.request import urlopen
from bs4 import BeautifulSoup
html = urlopen("http://www.pythonscraping.com/pages/page3.html")
bsObj = BeautifulSoup(html)
for sibling in bsObj.find("table",{"id":"giftList"}).tr.next_siblings: print(sibling)
但每当我键入bsObj = BeautifulSoup(html)
的行时,它会抛出错误,如下图所示:
希望任何人都能帮助我摆脱困境。
由于
答案 0 :(得分:0)
html = urlopen("http://www.your.url/here")
而不是
html = urlopen(("http://www.your.url/here")
请注意((
右侧的urlopen
。