使用requests时报错:requests.exceptions.SSLError: HTTPSConnectionPool

示例代码:

import requests
r = requests.get(‘https://www.12306.cn‘)
print(r.status_code)

报错:

requests.exceptions.SSLError: HTTPSConnectionPool(host=‘某某某网站‘, port=443): Max retries exceeded with url: /login/ (Caused by SSLError(SSLError("bad handshake: Error([(‘SSL routines‘, ‘tls_process_server_certificate‘, ‘certificate verify failed

这里是由于这个网页的证书没有被官方CA机构信任,所以这里会出现证书验证的错误。

解决方案:

增加verify参数

import requests
r = requests.get(‘https://www.12306.cn‘, verify=False)
print(r.status_code)

以上参考:https://blog.csdn.net/weixin_44385104/article/details/94750593

如果依然无法解决,可能是网络问题,如重启网络,关闭代理等

使用requests时报错:requests.exceptions.SSLError: HTTPSConnectionPool

上一篇:PHP面向对象编程(三)


下一篇:关于在html中不能正确的打出字符