我正在做网络抓取,所以出现了这个错误,请检查一下?
i am doing webscraping so this error is occuring kindly check this out?
TypeError Traceback (most recent call
last) in
----> 1 desc = soup.findall("td",{"class":"views-field views-field-search-api-excerpt views-field-field-api-description
hidden-xs visible-md visible-sm col-md-8"})
TypeError: 'NoneType' object is not callable
您正在使用 beautifulsoup 版本 3,它已在 2012 年停止接收更新;现在已经严重过时了。强烈建议升级:
pip install beautifulsoup4
和
from bs4 import BeautifulSoup
Element.find_all()
方法在最新的主要版本中可用。使用它代替 Element.findall()
并重试。
TypeError Traceback (most recent call last) in ----> 1 desc = soup.findall("td",{"class":"views-field views-field-search-api-excerpt views-field-field-api-description hidden-xs visible-md visible-sm col-md-8"})
TypeError: 'NoneType' object is not callable
您正在使用 beautifulsoup 版本 3,它已在 2012 年停止接收更新;现在已经严重过时了。强烈建议升级:
pip install beautifulsoup4
和
from bs4 import BeautifulSoup
Element.find_all()
方法在最新的主要版本中可用。使用它代替 Element.findall()
并重试。