requests.exceptions.ProxyError: HTTPSConnectionPool(host=‘quake.360.net’, port=443): Max retries exceeded with url: /api/v3/search/quake_service (Caused by ProxyError(‘Cannot connect to proxy.’, OSError
一般情况下,如果系统没有配置网络代理的话,python的request包请求url地址时,是不会走代理的:
举例:如果在linux系统中配置了代理,则request请求会通过代理进行访问:
如果用python的request包请求,不想通过代理进行访问的话, 可以在代码中设置:
s = requests.Session()
s.trust_env = False