HTTPSConnectionPool(host='www.quandl.com', port=443): Max retries exceeded
with url: /api/v3/datasets/EOD/MSFT/data?order=asc (Caused by
SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED]
certificate verify failed: unable to get local issuer certificate
(_ssl.c:1056)')))
在我的编码经验中,这是一个经常发生的问题。我正在尝试获取quandl的数据。但它会出现此ssl错误。安装pip软件包时也会发生这种情况。所以我必须使用 pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org 每次安装软件包时。这令人沮丧,我需要修复。
my_data = quandl.get("EOD/MSFT", authtoken="gyX6Yqxx3xT3hsdSmPva")