我正在编写一个脚本,以便在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())
有人可以帮我弄清楚如何解决此问题吗?