我正在尝试使用Python从Ligue 1网站以PNG格式下载Amiens徽标。我的代码如下:
import pathlib
import request
logo_url = 'http://www.ligue1.com/images/photos/clubs/logo/grand/500240.png'
filepath = playerimagesfile + '\\Ligue 1'
imagepath = playerimagesfile + '\\Ligue 1\\Amiens.png'
pathlib.Path(filepath).mkdir(parents=True, exist_ok=True)
request.urlretrieve(logo_url, imagepath)
但是,出现此错误:
URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:777)>
urlretrieve仅采用以下参数(url[, filename[, reporthook[, data]]])
,并且似乎没有一个对解决此证书验证失败有用。最好的方式是什么?