我正在尝试使用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'))
答案 0 :(得分:0)
出现此错误的原因是,id为b_results
的内容不存在,因此周没有分配任何内容,因此当您一无所获时,就会出错。