【爬虫】Python爬取https网站报错解决方案

如果使用urllib.request.urlopen()爬取https链接会报如下错误

urllib.error.URLError:

解决方案:
添加以下代码即可

import ssl
ssl._create_default_https_context = ssl._create_unverified_context

你可能感兴趣的:(【爬虫】Python爬取https网站报错解决方案)