Python使用urllib或者urllib2模块打开网页遇到ssl报错

简介: Python使用urllib或者urllib2模块打开网页遇到ssl报错

Python使用urllib或者urllib2模块打开网页遇到ssl报错

利用Python爬虫或者打开网页的时候,有时候会遇到这样的报错:urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)>

这个报错提示意思是SSL证书验证失败,可以导入ssl模块绕过验证
亲测有效!!!

解 决 办 法

# 导入ssl模块
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
相关文章
|
15天前
|
Linux Python
【Azure Function】Python Function部署到Azure后报错No module named '_cffi_backend'
ERROR: Error: No module named '_cffi_backend', Cannot find module. Please check the requirements.txt file for the missing module.
|
30天前
|
Python
Python的报错让我学到新知识
Python的报错让我学到新知识
14 0
|
6月前
|
Python 人工智能 数据可视化
Python模块与包(八)
Python模块与包(八)
49 0
Python模块与包(八)
|
6月前
|
Python
python中导入模块/包的几种方式
python中导入模块/包的几种方式
69 0
|
6月前
|
Python
请描述 Python 中的模块和包的概念,以及如何导入和使用它们。
请描述 Python 中的模块和包的概念,以及如何导入和使用它们。
46 3
|
2月前
|
人工智能 数据可视化 搜索推荐
Python异常模块与包
Python异常模块与包
|
2月前
|
开发者 Python
30天拿下Python之模块和包
30天拿下Python之模块和包
16 2
|
3月前
|
Python
手撕Python!模块、包、库,傻傻分不清?一分钟带你弄明白!
手撕Python!模块、包、库,傻傻分不清?一分钟带你弄明白!
46 1
|
3月前
|
PyTorch TensorFlow 算法框架/工具
手撕Python! 模块、包和库一分钟搞定!
手撕Python! 模块、包和库一分钟搞定!
30 1
|
5月前
|
开发者 Python
Python基础第八篇(Python异常处理,模块与包)
Python基础第八篇(Python异常处理,模块与包)