Replies: 1 comment
-
I had an SSL error and this solution worked: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi team,
I am using company laptop to extract price data. my code is as below:
msft = yf.Ticker("MSFT")
print(msft)
msft.history(period="max", proxy="https://company_proxy_ip:8080")
but I got error: [('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')]
so, I tried below code:
msft = yf.Ticker("MSFT")
print(msft)
msft.history(period="max", proxy="https://company_proxy_ip:8080", verify=False)
but still the same error, how to not to verify certificate?
Thank you,
Ling
Beta Was this translation helpful? Give feedback.
All reactions