解决python爬虫requests.exceptions.SSLError: HTTPSConnectionPool(host='XXX', port=443)问题

今天试着爬一个漫画网站的漫画来看看,没想到遇到下面的这个问题了。

解决python爬虫requests.exceptions.SSLError: HTTPSConnectionPool(host='XXX', port=443)问题

requests.exceptions.SSLError: HTTPSConnectionPool(host='img001.arc-theday.com', port=443): Max retries exceeded with url: /images/comic/193/384543/1557910165o_6UxaVFXV-tqq2f.jpg (Caused by SSLError(SSLError(1, '[SSL: INVALID_SESSION_ID] invalid session id (_ssl.c:1129)')))

解决方法一:
1.先检查pip有没安装cryptography,pyOpenSSL,certifi要是没有先安装
pip install cryptography
pip install pyOpenSSL
pip install certifi

2.要是以上这些已安装还是继续报错,则在网页请求代码中加上这个 verify=False 就可以解决报错,代码可运行。
requests.get(url,headers,verify=False)

解决方法二:
在前面添加以下代码

import requests
from requests.packages.urllib3.exceptions import InsecureRequestWarning
 
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)

如果两种方法都不行的话,再去问问度娘吧,我是没法子了。

上一篇:demo-locust性能脚本


下一篇:requests.post中data和json主体参数处理