# 绕过系统设置的代理
# 方法一: session = requests.Session() session.trust_env = False response = session.get('http://ff2.pw') # 方法二:(多人亲测可以直接结局这个问题) proxies = { "http": None, "https": None} requests.get("http://ff2.pw", proxies=proxies)
标签:HTTPSConnectionPool,http,ProxyError,xxx,session,requests,proxies From: https://www.cnblogs.com/SyrLy/p/17524460.html