Last active
November 19, 2025 13:25
-
-
Save kwinkunks/50f11dac6ab7ff8c3e6c7b34536501a2 to your computer and use it in GitHub Desktop.
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A note about proxies
If you are in a corporate environment, you probably connect to the Internet through another computer called a 'proxy'. You will need the URL of this proxy; it might look like
https://proxy.my-company.net:8080. Then use it in your Python environment like this:Each time you use
requests.get()you will need to pass theproxiesdictionary in this way.Getting
SSLCertVerificationErroror similarIf you get some variant of
SSLError,SSLCertVerificationError,CERTIFICATE_VERIFY_FAILEDorcertificate verify failed: unable to get local issuer certificate, then you need to tellrequestswhere to find your certificates. On Linux, they are usually in/etc/ssl/certs. For example, this sort of thing might work:On Windows you need to export your CA certs from your registry to a file and point
requeststo that.