自己代理访问Google没问题,但使用python模拟url请求 访问Google出错,在其他人电脑上可以运行。

自己代理访问Google没问题,但使用python模拟url请求 访问Google出错,在其他人电脑上可以运行。自己的代理可以访问谷歌,但是python的请求谷歌会报错。

代码部分:

import requests
s = requests.session()
s.keep_alive = False
url='https://www.google.com'
requests.adapters.DEFAULT_RETRIES=5
s=requests.session()
s.keep_alive=False;
proxies = None
response = requests.get(url=url, verify=False,proxies=proxies)
print(response)  #请求状态
print(response.content)  #返回结果

出错信息:

ssl.SSLError: [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1056)
urllib3.exceptions.
MaxRetryError: HTTPSConnectionPool(host='www.google.com', port=443): Max retries exceeded with url: / (Caused by ProxyError('Your proxy appears to only use HTTP and not HTTPS, try changing your proxy URL to be HTTP. See: https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html#https-proxy-error-http-proxy', SSLError(SSLError(1, '[SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1056)'))))
阅读 4.9k
2 个回答

proxies = None

这行代码是不设定代理,你确定你要这么做的么?
平时访问谷歌都是需要代理的,python code也需要设定代理才能访问谷歌的。
祝好运。

已参与了 SegmentFault 思否社区 10 周年「问答」打卡 ,欢迎正在阅读的你也加入。

这个可能python 使用中没能使用预设的代理而已。

这个其实和python本身关系不大,最好是系统全局代理设置,这样python会自动使用。

已参与了 SegmentFault 思否社区 10 周年「问答」打卡 ,欢迎正在阅读的你也加入。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题