为什么“requests.get()”在Python 3.6.4中打开“url.py”?

时间:2018-02-20 02:30:36

标签: python python-requests

初学者在python 3.6.4中遇到“requests.get()”问题

当前设置:Visual Studio Code,Anaconda(Conda),conda env,Bash和Git。

在调试模式下在文件'crawl.py'中运行以下命令:

import requests

r = requests.get('https://api.github.com/events')
text = r.text
print(text)

'url.py'会自动打开,告诉我有错误:

enter image description here

首次尝试失败(我必须使用--trusted-host,因为SSL_certificates被搞砸了):

$ pip install --trusted-host pypi.python.org -U requests

$ pip install --trusted-host pypi.python.org -U urllib3

我可以使用帮助来阻止此错误发生,并简单地

继续打印调试控制台。

我认为错误的来源与pylint

之类的东西有关

或者也许是我的Python版本。因为使用“urlparse”时它也会失败并显示“parse.py”。

随意推荐任何可能对我有帮助的免费课程。

0 个答案:

没有答案