gpt4 book ai didi

Python:SSLError、握手错误、意外的 EOF

转载 作者:太空狗 更新时间:2023-10-29 21:54:10 26 4
gpt4 key购买 nike

我在使用 Python 请求连接到特定站点时遇到问题并收到此错误:

HTTPSConnectionPool(host='XXXXXXXXX', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError("bad handshake: SysCallError(-1, 'Unexpected EOF')",),))

我该如何解决这个问题? (设置 verify=False 没有什么区别)我怀疑这里的服务器有问题,因为当我运行他们的测试时,它的总体评级为 F @ ssllabs

我对 Python 和请求还很陌生

我的代码:

import requests
try:
site = requests.get('https://XXXXXXXXXX', verify=True)
print(site)
except requests.exceptions.RequestException as e:
print(e)
pass

最佳答案

面对同样的错误,在执行 pip install ndg-httpsclient 后,我的麻烦就消失了。 yum install python-ndg_httpsclientapt-get install python-ndg-httpsclient(或 apt-get install python3-ndg-httpsclient)可能有效也是。

关于Python:SSLError、握手错误、意外的 EOF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47142848/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com