python爬虫遇到 ‘NoneType‘ object has no attribute ‘find_all‘ 问题

这篇具有很好参考价值的文章主要介绍了python爬虫遇到 ‘NoneType‘ object has no attribute ‘find_all‘ 问题。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

练习爬虫项目时,遇到问题

在跟着别人练习爬虫项目时,遇到了’NoneType’ object has no attribute ‘find_all’ 问题,具体报错如下

import requests
from bs4 import BeautifulSoup

url = 'https://movie.douban.com/top250?start=0&filter='

res= requests.get(url)
html = res.text

soup = BeautifulSoup(html,'html.parser')
bs = soup.find('ol',class_='grid_view')
#序号1的电影名和序号
numbers = bs.find_all('li')
print(type(numbers))

结果如下

Traceback (most recent call last):
  File "C:/Users/My/PycharmProjects/uitest/douban_movie.py", line 14, in <module>
    numbers = bs.find_all('li')
AttributeError: 'NoneType' object has no attribute 'find_all'

直接报错了,NoneType的问题,那我们往上找一下原因,打印一下bs看看结果是什么
python爬虫遇到 ‘NoneType‘ object has no attribute ‘find_all‘ 问题
这次结果直接是None,说明在定位‘ol’的时候就已经找不到内容了。但是在网页中查看代码了,定位的没有问题
python爬虫遇到 ‘NoneType‘ object has no attribute ‘find_all‘ 问题

解决办法

提示:这里描述项目中遇到的问题:

后来查询了一番,找到了解决办法。原因是因为我们爬取的网站爬取的次数太多,网站有了反爬机制。这时候想要获取信息成功,需要添加header信息,把header信息添加到requests中,请求就可以执行成功了。
python爬虫遇到 ‘NoneType‘ object has no attribute ‘find_all‘ 问题

header = {"User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"}
res= requests.get(url,headers = header)
<class 'bs4.element.Tag'>
<class 'bs4.element.ResultSet'>

到此结束,请求处理成功。文章来源地址https://www.toymoban.com/news/detail-504637.html

到了这里,关于python爬虫遇到 ‘NoneType‘ object has no attribute ‘find_all‘ 问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • AttributeError: ‘NoneType‘ object has no attribute ‘shape‘

    1.图片不存在或已损坏无法打开(路径不存在, 路径包含中文无法识别 ) 2.读取的图片内容和默认读取时参数匹配不匹配。(默认读取的是3通道的彩色图)例如读取到的图片是灰度图,就会返回None。 3.也可能是路径中有中文 在采集完新数据重新训练模型时抛异常,Attribut

    2024年02月12日
    浏览(45)
  • 报错AttributeError: ‘NoneType‘ object has no attribute ‘shape‘

    环境: python3.6.4 opencv3.4.1.15 运行目标跟踪object_tracking文件夹中的mean函数时报错且不显示视频结果 查找原因基本上看见三个 1.图片不存在(路径不存在, 路径包含中文无法识别) 2.读取的图片内容和默认读取时参数匹配不匹配。(默认读取的是3通道的彩色图)例如读取到的

    2023年04月27日
    浏览(43)
  • 关于appium-python-client报错问题:AttributeError: ‘NoneType‘ object has no attribute ‘to_capabilities‘

    由于python的appium包使用是基于selenium的, 而当我们安装了最新版的selenium和最新版的appium3.0.0, 就会导致版本冲突问题, 导致:AttributeError: \\\'NoneType\\\' object has no attribute \\\'to_capabilities\\\'异常发生。解决方法如下: 卸载selenium和appium, pip uninstall selenium, appium-python-client, 降低指定ap

    2024年02月08日
    浏览(38)
  • AttributeError: ‘NoneType‘ object has no attribute ‘split‘的解决办法

    在用KMeans算法训练数据的时候,报错如下: 经过各种途径的查询,有些回答建议尝试对sklearn、numpy修改版本。经过验证,sklearn与numpy版本与建议者所要修改的版本一致,故没有采纳。 经过自己的仔细观察,因为在使用KMeans算法训练数据代码之前,只有一行代码,那就是 故尝

    2024年02月13日
    浏览(40)
  • 关于Spyder报错‘NoneType‘ object has no attribute ‘shape‘解决

    运行疲劳检测代码,Spyder关于 AttributeError: \\\'NoneType\\\' object has no attribute \\\'shape\\\' 问题,上网找了很多很多解法,结果都没成功解决。绞尽脑汁都没想出来 后面看到有个博主说其实是那个语句说是,没读到图像导致返回值是空,导致无法运行。然后我就想到是那必定是图像没被读进

    2024年02月08日
    浏览(56)
  • 完美解决AttributeError: ‘NoneType‘ object has no attribute ‘split‘ 报错处理

    已解决AttributeError: ‘NoneType’ object has no attribute ‘split’ 报错处理 AttributeError: ‘NoneType‘ object has no attribute ‘split‘ 这个错误通常出现在使用 NoneType 对象调用 split() 方法时。NoneType 是 Python 中表示空值的类型。 下滑查看解决方法 产生该错误的原因可能是你没有正确地初始

    2024年02月12日
    浏览(54)
  • Stable Diffusion出现错误: AttributeError: ‘NoneType‘ object has no attribute ‘keys‘

    Stable Diffusion的ControlNet插件的 style风格迁移模型 在第一次使用时需要在启动器后台下载1.6G的文件,但可能是因为网络原因导致下载的文件不完整,然后我们再次加载是就会出现 AttributeError: ‘NoneType’ object has no attribute ‘keys’ 错误。 去Stable Diffusion的ControlNet的预处理器文件

    2024年02月11日
    浏览(45)
  • AttributeError: ‘NoneType‘ object has no attribute ‘_free_weak_ref‘

    yolov5训练时报错: AttributeError: ‘NoneType‘ object has no attribute ‘_free_weak_ref‘ 问题解决: 降低pytorch版本。 之前使用的是1.11.3,降低成1.10.2 卸载之前的pytorch 安装低版本的pytorch

    2024年02月10日
    浏览(45)
  • 【报错】AttributeError: ‘NoneType‘ object has no attribute ‘pyplot_show‘(已解决)

    问题描述:python可视化出现下面报错 我的原始代码: 查资料,看到让更新matplotlib,更新完问题没有解决 解决方法:加入下面两行代码后问题解决 matplotlib.use(‘TkAgg’) import matplotlib.pyplot as plt

    2024年04月16日
    浏览(50)
  • selenium ‘NoneType‘ object has no attribute ‘find_element_by_xpath‘

    今天重装系统后,原来的selenium运行不了了,报错’NoneType’ object has no attribute ‘find_element_by_xpath’ 查了相关文献,发现是因为selenium 4.0以后弃用了find_element_by_xpath方法,可用find_element代替: eg.我们要定位一个属性id,值为\\\"pan\\\"的元素: eg.定位id为username,class_name为password,t

    2024年02月16日
    浏览(36)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包