Python SSL certificate verify error

Python SSL certificate verify error

I have found this over here

I found this solution, insert this code at the beginning of your source file:

import ssl

try:
    _create_unverified_https_context = ssl._create_unverified_context
except AttributeError:
    # Legacy Python that doesnt verify HTTPS certificates by default
    pass
else:
    # Handle target environment that doesnt support HTTPS verification
    ssl._create_default_https_context = _create_unverified_https_context

If you are using Windows and you have already imported the CA in the trusted DB store, you can install the package python-certifi-win32 that automagically will use the same certificates from the Trusted DB store.

pip install python-certifi-win32

Then your code should start to work

See:
Python Requests with wincertstore

https://gitlab.com/alelec/python-certifi-win32

Python SSL certificate verify error

So the issue might have three resolutions as I see it:

  1. A certificate is OK and there is something wrong with the code. The issue may occur, for example, while using prepared requests as described in this solution

    But I dont really think it is your case because in the snippet youve provided no such methods are used. For the two next variants, youll need to get the URL that causes an error and explore its certificate (can be done via browser).

  2. A certificate is OK but a certificate authority that signed it is not included in CA list that is utilized by requests library. After youll open a troubling URL, check CA in it and see if its dates are valid and it is included in this list. If not, add CA in the trusted list for the requests library — as explained in the answers to this StackOverflow question.

  3. A certificate is not valid or self-singed. Same solution as in 2.

The general solution is to wrap your script in the try except clause and to print out all the URLs that will result in mistakes. Then try to request them one by one via requests library and see if the issue occurs. If it does, its (2) or (3) case. If not — try to run script on another machine with fresh installed python and requests. If the run will be successful — then theres some issue in your configuration.

Leave a Reply

Your email address will not be published. Required fields are marked *