Importing an installed package from a script raises AttributeError module has...
我有一个名为的脚本requests.py导入request包。该脚本无法访问包中的属性,也无法导入它们。为什么这不起作用,我该如何解决?以下代码抛出一个AttributeError。
import requests
res = requests.get('http://www.google.ca')
print(res)
Traceback (most recent call last):
File "/Users/me/dev/rough/requests.py", line 1, in <module>
import requests
File "/Users/me/dev/rough/requests.py", line 3, in <module>
requests.get('http://www.google.ca')
AttributeError: module 'requests' has no attribute 'get'
以下代码抛出一个ImportError。
from requests import get
res = get('http://www.google.ca')
print(res)
Traceback (most recent call last):
File "requests.py", line 1, in <module>
from requests import get
File "/Users/me/dev/rough/requests.py", line 1, in <module>
from requests import get
ImportError: cannot import name 'get'
以下代码抛出一个ImportError。
from requests.auth import AuthBase
class PizzaAuth(AuthBase):
"""Attaches HTTP Pizza Authentication to the given Request object."""
def __init__(self, username):
# setup any auth-related data here
self.username = username
def __call__(self, r):
# modify and return the request
r.headers['X-Pizza'] = self.username
return r
Traceback (most recent call last):
File "requests.py", line 1, in <module>
from requests.auth import AuthBase
File "/Users/me/dev/rough/requests.py", line 1, in <module>
from requests.auth import AuthBase
ImportError: No module named 'requests.auth'; 'requests' is not a package
发生这种情况是因为你指定的本地模块会影响你使用的已安装requests模块。当前目录是前置的sys.path,因此本地名称优先于已安装的名称。
出现这个问题时,额外的调试技巧是仔细查看Traceback,并意识到你所讨论的脚本名称与你尝试导入的模块匹配:
请注意你在脚本中使用的名称:
File "/Users/me/dev/rough/requests.py", line 1, in <module>
你要导入的模块: requests
将该模块重命名为其他名称以避免名称冲突。
Python可能会requests.pyc在你的文件旁边生成一个文件requests.py(__pycache__在Python 3 的目录中)。在重命名后删除它,否则解释器仍将引用该文件,重新产生错误。但是,如果文件已被删除,则pyc文件__pycache__ 不应影响你的代码py。
在该示例中,将文件重命名为my_requests.py,删除requests.pyc并再次成功运行输出<Response >。
用户创建的脚本与库有名称冲突,问题可能不在于生成错误的脚本的名称(如2楼所示),也不在该脚本显式导入的库模块的任何名称中。可能需要一些检测工作来确定导致问题的文件。
作为说明问题的示例,假设你正在创建一个脚本,该脚本使用“decimal””库进行精确的十进制数浮点计算,并将脚本命名为“ mydecimal.py”,其中包含“ import decimal” 行。这没有任何问题,但你发现它引发了这个错误:
AttributeError: 'module' object has no attribute 'Number'
如果你之前编写了一个名为“ numbers.py” 的脚本,则会发生这种情况,因为“decimal”库调用标准库“numbers”,但会找到旧脚本。即使你删除了它,也可能不会结束问题,因为python可能已将其转换为字节码并将其作为“ bytecode.pyc” 存储在缓存中,因此你也必须将其删除。
页:
[1]