WordPress网站建设宣传图片

Python requests 异常Max retries exceeded with url: 请求地址… (Caused by SSLError(SSLCertVerificationError(1, ‘[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)’)))”))}解决

释放双眼,带上耳机,听听看~!

今天在写爬虫的时候遇见了如下错误:

Max retries exceeded with url: https://******... (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)')))"))}Python requests 异常
Max retries exceeded with url: https://******... (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)')))"))}Python requests 异常
Python requests 异常Max retries exceeded with url: 请求地址… (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)')))"))}翻译

错误大概意思应该是:URL超过了最大重试次数,证书验证失败。

这个错误很好解决,我们在requests请求的地方的加上verify=False参数既可以解决。

如下

import requests
import logging
logging.captureWarnings(True)
r = requests.get(url, timeout=15, verify=False)

你可以看到上面示例代码中还有两句:

import logging
logging.captureWarnings(True)

这是因为如果不加上的话 会出现如下警告信息:

python requests关闭ssl验证警告信息

C:\Python\Python39\lib\site-packages\urllib3\connectionpool.py:1043: InsecureRequestWarning: Unverified HTTPS request is being made to host ‘doamin.com’. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html#ssl-warnings
warnings.warn(

所以加上logging.captureWarnings(True)就不会弹出警告信息了。

关于Python requests verify参数详细介绍和相关文章,可以看我之前的文章:

Python模块requests参数verify – SSL证书认证

Python requests 异常InsecureRequestWarning: Unverified HTTPS request is being made to host ‘***domain’. Adding certificate verification is strongly advised. See…解决

给TA打赏
共{{data.count}}人
人已打赏
Python爬虫SEO基础SEO技巧

网站被黑,被搜索引擎收录垃圾信息删除处理教程

2023-12-28 14:42:14

Python RequestsPython与SEOPython爬虫Python笔记SEO技巧

如何查询百度搜索资源平台API推送配额

2024-1-12 16:46:49

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索