请求:'模块'对象没有属性' get'

时间:2016-07-15 18:15:01

标签: python python-3.x python-requests

我上周安装了requests包,它运行正常..直到今天早上。我编码了这个,我得到了AttributeError: 'module' object has no attribute 'get'消息:

import requests

r = requests.get('http://www.yellowpages.com/search?search_terms=coffee&geo_location_terms=Montreal%2C+QC')

我在其他帖子中读到这可能是因为我安装了多个requests个包。 当我编码print(dir(requests))时,我得到两个列表..:

['__author__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__',
'requests']

['__author__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__',
'requests']

任何帮助将不胜感激。

西尔

1 个答案:

答案 0 :(得分:4)

您是否可能将脚本命名为requests.py,或者您在同一目录中具有类似命名的文件?