I am on windows, and I am seeing a difference between urllib.requests.urlopen and requests package when making calls to the same site.
When I perform the following:
import urllib.request
f = urllib.request.urlopen('https://<domain certificated server> ')
I can reach my server no problems.
When I do:
import requests
f = requests.get('https://<domain certificated server> ').text
I am getting an SSL Certificate error. I know this is caused by certifi
. So my question is this, how can I leverage whatever Python code is doing and use that over certifi
in requests?
The simple way is to tell
requests
to use the system bundle, if you know where it is. On Linux it's usually in/etc/ssl/certs/ca-certificates.crt
.You can also define your own adapter if you are on Windows, don't know where the system bundle is located, or just want to support all cases. The default adapter tells
urllib3
to load certificates fromDEFAULT_CA_BUNDLE_PATH
which comes from callingcertifi.where()
. If you don't tellurllib3
where to get certificates, it will use the system default.