Certifi is a carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts. It has been extracted from the Requests project.
certifi is available on PyPI. Simply install it with pip:
$ pip install certifi
To reference the installed CA Bundle, you can use the built-in function:
>>> import certifi >>> certifi.where() '/usr/local/lib/python2.7/site-packages/certifi/cacert.pem'
Enjoy!