https://github.com/certifi/python-certifi
(Python Distribution) A carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts.
https://github.com/certifi/python-certifi
Last synced: 5 days ago
JSON representation
(Python Distribution) A carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts.
- Host: GitHub
- URL: https://github.com/certifi/python-certifi
- Owner: certifi
- License: other
- Created: 2011-12-28T05:15:19.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2025-04-01T02:44:48.000Z (14 days ago)
- Last Synced: 2025-04-09T22:03:24.501Z (5 days ago)
- Language: Python
- Homepage:
- Size: 1.32 MB
- Stars: 881
- Watchers: 37
- Forks: 264
- Open Issues: 3
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- starred-awesome - python-certifi - (Python Distribution) A carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts. (Python)
- stars - certifi/python-certifi - (Python Distribution) A carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts. (Python)
- stars - certifi/python-certifi - (Python Distribution) A carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts. (Python)
- best-of-web-python - GitHub - 2% open · ⏱️ 02.06.2024): (Others)
README
Certifi: Python SSL Certificates
================================Certifi provides Mozilla's 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.Installation
------------``certifi`` is available on PyPI. Simply install it with ``pip``::
$ pip install certifi
Usage
-----To reference the installed certificate authority (CA) bundle, you can use the
built-in function::>>> import certifi
>>> certifi.where()
'/usr/local/lib/python3.7/site-packages/certifi/cacert.pem'Or from the command line::
$ python -m certifi
/usr/local/lib/python3.7/site-packages/certifi/cacert.pemEnjoy!
.. _`Requests`: https://requests.readthedocs.io/en/master/
Addition/Removal of Certificates
--------------------------------Certifi does not support any addition/removal or other modification of the
CA trust store content. This project is intended to provide a reliable and
highly portable root of trust to python deployments. Look to upstream projects
for methods to use alternate trust.