jpayne@7: Metadata-Version: 2.1 jpayne@7: Name: certifi jpayne@7: Version: 2024.2.2 jpayne@7: Summary: Python package for providing Mozilla's CA Bundle. jpayne@7: Home-page: https://github.com/certifi/python-certifi jpayne@7: Author: Kenneth Reitz jpayne@7: Author-email: me@kennethreitz.com jpayne@7: License: MPL-2.0 jpayne@7: Project-URL: Source, https://github.com/certifi/python-certifi jpayne@7: Classifier: Development Status :: 5 - Production/Stable jpayne@7: Classifier: Intended Audience :: Developers jpayne@7: Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0) jpayne@7: Classifier: Natural Language :: English jpayne@7: Classifier: Programming Language :: Python jpayne@7: Classifier: Programming Language :: Python :: 3 jpayne@7: Classifier: Programming Language :: Python :: 3 :: Only jpayne@7: Classifier: Programming Language :: Python :: 3.6 jpayne@7: Classifier: Programming Language :: Python :: 3.7 jpayne@7: Classifier: Programming Language :: Python :: 3.8 jpayne@7: Classifier: Programming Language :: Python :: 3.9 jpayne@7: Classifier: Programming Language :: Python :: 3.10 jpayne@7: Classifier: Programming Language :: Python :: 3.11 jpayne@7: Requires-Python: >=3.6 jpayne@7: License-File: LICENSE jpayne@7: jpayne@7: Certifi: Python SSL Certificates jpayne@7: ================================ jpayne@7: jpayne@7: Certifi provides Mozilla's carefully curated collection of Root Certificates for jpayne@7: validating the trustworthiness of SSL certificates while verifying the identity jpayne@7: of TLS hosts. It has been extracted from the `Requests`_ project. jpayne@7: jpayne@7: Installation jpayne@7: ------------ jpayne@7: jpayne@7: ``certifi`` is available on PyPI. Simply install it with ``pip``:: jpayne@7: jpayne@7: $ pip install certifi jpayne@7: jpayne@7: Usage jpayne@7: ----- jpayne@7: jpayne@7: To reference the installed certificate authority (CA) bundle, you can use the jpayne@7: built-in function:: jpayne@7: jpayne@7: >>> import certifi jpayne@7: jpayne@7: >>> certifi.where() jpayne@7: '/usr/local/lib/python3.7/site-packages/certifi/cacert.pem' jpayne@7: jpayne@7: Or from the command line:: jpayne@7: jpayne@7: $ python -m certifi jpayne@7: /usr/local/lib/python3.7/site-packages/certifi/cacert.pem jpayne@7: jpayne@7: Enjoy! jpayne@7: jpayne@7: .. _`Requests`: https://requests.readthedocs.io/en/master/ jpayne@7: jpayne@7: Addition/Removal of Certificates jpayne@7: -------------------------------- jpayne@7: jpayne@7: Certifi does not support any addition/removal or other modification of the jpayne@7: CA trust store content. This project is intended to provide a reliable and jpayne@7: highly portable root of trust to python deployments. Look to upstream projects jpayne@7: for methods to use alternate trust.