在编译类似“ NoneType”对象的代码时遇到错误,没有属性“ find_all”

时间:2019-12-31 00:16:52

标签: python beautifulsoup

我正在尝试使用BeautifulSoup构建Web Scrapper,但是当我编译代码时,它提供了find_all method has no attributes。这是代码:

page = requests.get("https://www.bing.com/images/search")
soup = BeautifulSoup(page.content,'html.parser')

print(soup.find_all('a'))

week = soup.find(id='b_results')
print(week.find_all('li'))

1 个答案:

答案 0 :(得分:0)

出现此错误的原因是,id为b_results的内容不存在,因此周没有分配任何内容,因此当您一无所获时,就会出错。