0
我正在嘗試使用BeautifulSoup在網站上獲取帶有特殊編號的數字。這是我的代碼Web Scraping屬性錯誤
from urllib2 import urlopen
from bs4 import BeautifulSoup
import requests, logging
logging.basicConfig()
html = urlopen("http://example.com")
bsObj = BeautifulSoup(str(html), "html.parser")
select = bsObj.findAll(id="myid")
print(select.get_text())
但我得到'AttributeError:'ResultSet'對象沒有'get_text'屬性。 問題在哪裏?
它只是導致IndexError:列表索引超出範圍。我現在怎麼調試它? – amin
http://stackoverflow.com/questions/37335219/empty-result-set-beautiful-soup – user357269