美文网首页
【爬虫】Python爬取https网站报错解决方案

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

作者: Pino_HD | 来源:发表于2018-08-24 14:46 被阅读0次

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

    urllib.error.URLError:<urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)>
    
    

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

    import ssl
    ssl._create_default_https_context = ssl._create_unverified_context
    

    相关文章

      网友评论

          本文标题:【爬虫】Python爬取https网站报错解决方案

          本文链接:https://www.haomeiwen.com/subject/epgbiftx.html