我需要從鏈接(和)標記中獲取「href」屬性。BeautifulSoup:TypeError:'NoneType'object is not subcriptable
我跑
label_tag = row.find(class_='Label')
print(label_tag)
和我(對不起,我不能顯示隱私的原因鏈接和文本)型
<a class="Label" href="_link_">_text_</a>
<class 'bs4.element.Tag'>
但當我跑(如BeautifulSoup getting href所示)
tag_link = label_tag['href']
print(tag_link)
我想下面的錯誤(在第一個命令)
TypeError: 'NoneType' object is not subscriptable
任何線索? 在此先感謝
[解決]編輯:我犯了一個錯誤(遍歷異構結構元素)
你能表現出此刻的你有完整的代碼嗎?謝謝。 – alecxe 2014-11-25 15:31:17