Windows上的urllib和“ SSL:CERTIFICATE_VERIFY_FAILED”错误

时间:2019-04-05 07:20:45

标签: python-3.x windows ssl urllib

我正在编写一个脚本,以便在Windows上使用urllib从url下载文件,但是在执行脚本时,我收到了以下错误:“ ssl.SSLError:[SSL:CERTIFICATE_VERIFY_FAILED]证书验证失败”。

我是这个新手,所以我不知道如何在urllib中使用ssl下载文件。

data[0] ===

这失败,并显示错误

opener = urllib.request.urlopen(url)
print(response.read())
with open("content.zip", 'wb') as output:
      output.write(response.read())

有人可以帮我弄清楚如何解决此问题吗?

0 个答案:

没有答案