当前位置: 代码迷 >> 综合 >> 爬虫证书问题,urllib.request.urlopen(),无法正常响应
  详细解决方案

爬虫证书问题,urllib.request.urlopen(),无法正常响应

热度:80   发布时间:2023-12-16 18:45:47.0

urllib.request.urlopen(), 无法正常响应
运行以下代码即可

# 证书问题
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
  相关解决方案