2017-06-27 92 views
-1

我想寫如下面的代碼:網頁抓取 - 錯誤發生

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) 

但每當我鍵入的​​3210線,它拋出一個錯誤,如下圖:

enter image description here

希望任何人都可以幫我解決這個問題。

感謝

+4

你有一個額外的左花苞芽 – Mrl0330

+0

問題中的代碼是不一樣的圖像 –

回答

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

相反

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

通知的((urlopen權。

+0

感謝您的回答 – user1081544

+0

不要忘了標記爲已解決和up-vote,如果你發現我的答案有幫助。 – ChickenFeet