赞
踩
今天在部署的时候,发现我本地是OK的,但是部署到服务器上,requests出现如下报错:
requests.exceptions.ProxyError: HTTPConnectionPool(host=‘xx.xx.xx.xx’, port=808): Max retries exceeded with url: http://xxxxx (Caused by ProxyError(‘Cannot connect to proxy.’, NewConnectionError(’<urllib3.connection.HTTPConnection object at 0x7f6af4708f60>: Failed to establish a new connection: [Errno 111] Connection refused’,)))
后来百度搜了下解决方案,找到了这两篇《让requests不走系统 全局 代理》、《requests中的代理设置》。
于是,在请求中添加了以下代码
proxies = {'http': None, 'https': None}
res = requests.post(xxxxx, proxies=proxies)
这样的话,就可以确保requests不使用系统代理,直连服务器了。
再次部署,问题就解决了!
如果需要手动设置代理,可以这样做:
proxies = {
'http': 'http://10.10.1.10:3128',
'https': 'http://10.10.1.10:1080',
}
requests.get('http://example.org', proxies=proxies)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。