AttributeError: module 'requests' has no attribute 'get'的错误疑惑
Posted hum0ro
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AttributeError: module 'requests' has no attribute 'get'的错误疑惑相关的知识,希望对你有一定的参考价值。
我发现文件直接用requests.get(url)会提示我AttributeError: module ‘requests‘ has no attribute ‘get‘
我把问题百度了一下,解决方法是:
python源文件与关键字重名了。
1. 命名py脚本时,不要与python预留字,模块名等相同
2. 删除该库的.pyc文件(因为py脚本每次运行时均会生成.pyc文件;在已经生成.pyc文件的情况下,若代码不更新,运行时依旧会走pyc,所以要删除.pyc文件),重新运行代码;或者找一个可以运行代码的环境,拷贝替换当前机器的.pyc文件即可
后来我发现我的该路径下有一个requests.py文件的程序,我把它删除掉,就不会报这种错了。
以上是关于AttributeError: module 'requests' has no attribute 'get'的错误疑惑的主要内容,如果未能解决你的问题,请参考以下文章
类 InstagramSpider(scrapy.Spider): AttributeError: 'module' 对象没有属性 'Spider'
api = twitter.Api() AttributeError: 'module' 对象没有属性 'Api
AttributeError:'module'对象在python中没有属性'windll'
如何修复python2.7中的“AttributeError:'module'对象没有属性'storage'”错误
成功解决AttributeError: module ‘numpy‘ has no attribute ‘polyld‘
hydra安装——AttributeError: module ‘hydra‘ has no attribute ‘main‘