使用python进行Web Scraping - 错误发生

时间:2017-06-27 12:13:28

标签: python web-crawler

我想编写如下代码:

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)的行时,它会抛出错误,如下图所示:

enter image description here

希望任何人都能帮助我摆脱困境。

由于

1 个答案:

答案 0 :(得分:0)

html = urlopen("http://www.your.url/here") 

而不是

html = urlopen(("http://www.your.url/here") 

请注意((右侧的urlopen