Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 4 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 (about 13 years ago)
- Default Branch: master
- Last Pushed: 2025-01-13T23:09:29.000Z (12 days ago)
- Last Synced: 2025-01-14T23:08:15.190Z (11 days ago)
- Language: Python
- Homepage:
- Size: 1.28 MB
- Stars: 850
- Watchers: 38
- Forks: 254
- 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.