无法从python请求访问任何http url

时间:2019-10-29 17:21:36

标签: python python-requests

python请求库存在问题。 我无法获得以HTTP开头的任何URL。 https正常。 那是我的代码:(python3.7)

import requests
r = requests.get("http://habitat.habhub.org/habitat/")
print(r.content)

我收到一个proxy(?)错误? 我没有任何代理设置。

requests.exceptions.ProxyError: HTTPSConnectionPool(host='192.168.31.66', port=8888): Max retries exceeded with url: http://habitat.habhub.org/habitat/ (Caused by ProxyError('Cannot connect to proxy.', NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x04098230>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond')))

该问题仅在我的计算机上发生。 此代码可以在另一台计算机上正常工作。 我尝试重置计算机网络设置,但没有运气。 谢谢。

1 个答案:

答案 0 :(得分:0)

这可能是由于计算机上的安全首选项引起的,如果您使用的是公共网络,这很明显,但是我建议您将所有链接都转换为HTTPS链接。

它也更安全。