certifi
Advanced tools
| This package contains a modified version of ca-bundle.crt: | ||
| ca-bundle.crt -- Bundle of CA Root Certificates | ||
| This is a bundle of X.509 certificates of public Certificate Authorities | ||
| (CA). These were automatically extracted from Mozilla's root certificates | ||
| file (certdata.txt). This file can be found in the mozilla source tree: | ||
| https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt | ||
| It contains the certificates in PEM format and therefore | ||
| can be directly used with curl / libcurl / php_curl, or with | ||
| an Apache+mod_ssl webserver for SSL client authentication. | ||
| Just configure this file as the SSLCACertificateFile.# | ||
| ***** BEGIN LICENSE BLOCK ***** | ||
| This Source Code Form is subject to the terms of the Mozilla Public License, | ||
| v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain | ||
| one at http://mozilla.org/MPL/2.0/. | ||
| ***** END LICENSE BLOCK ***** | ||
| @(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $ |
| Metadata-Version: 2.4 | ||
| Name: certifi | ||
| Version: 2025.10.5 | ||
| Summary: Python package for providing Mozilla's CA Bundle. | ||
| Home-page: https://github.com/certifi/python-certifi | ||
| Author: Kenneth Reitz | ||
| Author-email: me@kennethreitz.com | ||
| License: MPL-2.0 | ||
| Project-URL: Source, https://github.com/certifi/python-certifi | ||
| Classifier: Development Status :: 5 - Production/Stable | ||
| Classifier: Intended Audience :: Developers | ||
| Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0) | ||
| Classifier: Natural Language :: English | ||
| Classifier: Programming Language :: Python | ||
| Classifier: Programming Language :: Python :: 3 | ||
| Classifier: Programming Language :: Python :: 3 :: Only | ||
| Classifier: Programming Language :: Python :: 3.7 | ||
| Classifier: Programming Language :: Python :: 3.8 | ||
| Classifier: Programming Language :: Python :: 3.9 | ||
| Classifier: Programming Language :: Python :: 3.10 | ||
| Classifier: Programming Language :: Python :: 3.11 | ||
| Classifier: Programming Language :: Python :: 3.12 | ||
| Classifier: Programming Language :: Python :: 3.13 | ||
| Classifier: Programming Language :: Python :: 3.14 | ||
| Requires-Python: >=3.7 | ||
| License-File: LICENSE | ||
| Dynamic: author | ||
| Dynamic: author-email | ||
| Dynamic: classifier | ||
| Dynamic: description | ||
| Dynamic: home-page | ||
| Dynamic: license | ||
| Dynamic: license-file | ||
| Dynamic: project-url | ||
| Dynamic: requires-python | ||
| Dynamic: summary | ||
| 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.pem | ||
| Enjoy! | ||
| .. _`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. |
| certifi/__init__.py,sha256=jWkaYHMk4oIPSSBEK5bLMbO_qrkyNm_cRFx-D16-3Ks,94 | ||
| certifi/__main__.py,sha256=xBBoj905TUWBLRGANOcf7oi6e-3dMP4cEoG9OyMs11g,243 | ||
| certifi/cacert.pem,sha256=IIn8WiWDZAH67pn3IkYLAbOTmZdGoPuBeUNmbW7MBFg,291366 | ||
| certifi/core.py,sha256=XFXycndG5pf37ayeF8N32HUuDafsyhkVMbO4BAPWHa0,3394 | ||
| certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 | ||
| certifi-2025.10.5.dist-info/licenses/LICENSE,sha256=6TcW2mucDVpKHfYP5pWzcPBpVgPSH2-D8FPkLPwQyvc,989 | ||
| certifi-2025.10.5.dist-info/METADATA,sha256=RzyR4sT6xRN1pNNy24IHVOlZuDJh1BNfaMa04zEadtk,2474 | ||
| certifi-2025.10.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91 | ||
| certifi-2025.10.5.dist-info/top_level.txt,sha256=KMu4vUCfsjLrkPbSNdgdekS-pVJzBAJFO__nI8NF6-U,8 | ||
| certifi-2025.10.5.dist-info/RECORD,, |
| Wheel-Version: 1.0 | ||
| Generator: setuptools (80.9.0) | ||
| Root-Is-Purelib: true | ||
| Tag: py3-none-any | ||
| from .core import contents, where | ||
| __all__ = ["contents", "where"] | ||
| __version__ = "2025.08.03" | ||
| __version__ = "2025.10.05" |
| This package contains a modified version of ca-bundle.crt: | ||
| ca-bundle.crt -- Bundle of CA Root Certificates | ||
| This is a bundle of X.509 certificates of public Certificate Authorities | ||
| (CA). These were automatically extracted from Mozilla's root certificates | ||
| file (certdata.txt). This file can be found in the mozilla source tree: | ||
| https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt | ||
| It contains the certificates in PEM format and therefore | ||
| can be directly used with curl / libcurl / php_curl, or with | ||
| an Apache+mod_ssl webserver for SSL client authentication. | ||
| Just configure this file as the SSLCACertificateFile.# | ||
| ***** BEGIN LICENSE BLOCK ***** | ||
| This Source Code Form is subject to the terms of the Mozilla Public License, | ||
| v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain | ||
| one at http://mozilla.org/MPL/2.0/. | ||
| ***** END LICENSE BLOCK ***** | ||
| @(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $ |
| Metadata-Version: 2.4 | ||
| Name: certifi | ||
| Version: 2025.8.3 | ||
| Summary: Python package for providing Mozilla's CA Bundle. | ||
| Home-page: https://github.com/certifi/python-certifi | ||
| Author: Kenneth Reitz | ||
| Author-email: me@kennethreitz.com | ||
| License: MPL-2.0 | ||
| Project-URL: Source, https://github.com/certifi/python-certifi | ||
| Classifier: Development Status :: 5 - Production/Stable | ||
| Classifier: Intended Audience :: Developers | ||
| Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0) | ||
| Classifier: Natural Language :: English | ||
| Classifier: Programming Language :: Python | ||
| Classifier: Programming Language :: Python :: 3 | ||
| Classifier: Programming Language :: Python :: 3 :: Only | ||
| Classifier: Programming Language :: Python :: 3.7 | ||
| Classifier: Programming Language :: Python :: 3.8 | ||
| Classifier: Programming Language :: Python :: 3.9 | ||
| Classifier: Programming Language :: Python :: 3.10 | ||
| Classifier: Programming Language :: Python :: 3.11 | ||
| Classifier: Programming Language :: Python :: 3.12 | ||
| Classifier: Programming Language :: Python :: 3.13 | ||
| Requires-Python: >=3.7 | ||
| License-File: LICENSE | ||
| Dynamic: author | ||
| Dynamic: author-email | ||
| Dynamic: classifier | ||
| Dynamic: description | ||
| Dynamic: home-page | ||
| Dynamic: license | ||
| Dynamic: license-file | ||
| Dynamic: project-url | ||
| Dynamic: requires-python | ||
| Dynamic: summary | ||
| 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.pem | ||
| Enjoy! | ||
| .. _`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. |
| certifi/__init__.py,sha256=0a5ro4KTYep37Oo0Z8TycCPXaDlOEtvuj2pNWZ_1t8Y,94 | ||
| certifi/__main__.py,sha256=xBBoj905TUWBLRGANOcf7oi6e-3dMP4cEoG9OyMs11g,243 | ||
| certifi/cacert.pem,sha256=kQLmo2RKBxumzb1KU2mPKRxKZLGEUKCLwEZUi221zIs,287634 | ||
| certifi/core.py,sha256=XFXycndG5pf37ayeF8N32HUuDafsyhkVMbO4BAPWHa0,3394 | ||
| certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 | ||
| certifi-2025.8.3.dist-info/licenses/LICENSE,sha256=6TcW2mucDVpKHfYP5pWzcPBpVgPSH2-D8FPkLPwQyvc,989 | ||
| certifi-2025.8.3.dist-info/METADATA,sha256=z4sG3fosbP3nviub_TUpSb71z0bPmsp3Xa6ZIatGUe4,2422 | ||
| certifi-2025.8.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91 | ||
| certifi-2025.8.3.dist-info/top_level.txt,sha256=KMu4vUCfsjLrkPbSNdgdekS-pVJzBAJFO__nI8NF6-U,8 | ||
| certifi-2025.8.3.dist-info/RECORD,, |
| Wheel-Version: 1.0 | ||
| Generator: setuptools (80.9.0) | ||
| Root-Is-Purelib: true | ||
| Tag: py3-none-any | ||
Sorry, the diff of this file is not supported yet
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
299440
1.28%