METADATA 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. Metadata-Version: 2.1
  2. Name: certifi
  3. Version: 2023.11.17
  4. Summary: Python package for providing Mozilla's CA Bundle.
  5. Home-page: https://github.com/certifi/python-certifi
  6. Author: Kenneth Reitz
  7. Author-email: me@kennethreitz.com
  8. License: MPL-2.0
  9. Project-URL: Source, https://github.com/certifi/python-certifi
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
  13. Classifier: Natural Language :: English
  14. Classifier: Programming Language :: Python
  15. Classifier: Programming Language :: Python :: 3
  16. Classifier: Programming Language :: Python :: 3 :: Only
  17. Classifier: Programming Language :: Python :: 3.6
  18. Classifier: Programming Language :: Python :: 3.7
  19. Classifier: Programming Language :: Python :: 3.8
  20. Classifier: Programming Language :: Python :: 3.9
  21. Classifier: Programming Language :: Python :: 3.10
  22. Classifier: Programming Language :: Python :: 3.11
  23. Requires-Python: >=3.6
  24. License-File: LICENSE
  25. Certifi: Python SSL Certificates
  26. ================================
  27. Certifi provides Mozilla's carefully curated collection of Root Certificates for
  28. validating the trustworthiness of SSL certificates while verifying the identity
  29. of TLS hosts. It has been extracted from the `Requests`_ project.
  30. Installation
  31. ------------
  32. ``certifi`` is available on PyPI. Simply install it with ``pip``::
  33. $ pip install certifi
  34. Usage
  35. -----
  36. To reference the installed certificate authority (CA) bundle, you can use the
  37. built-in function::
  38. >>> import certifi
  39. >>> certifi.where()
  40. '/usr/local/lib/python3.7/site-packages/certifi/cacert.pem'
  41. Or from the command line::
  42. $ python -m certifi
  43. /usr/local/lib/python3.7/site-packages/certifi/cacert.pem
  44. Enjoy!
  45. .. _`Requests`: https://requests.readthedocs.io/en/master/
  46. Addition/Removal of Certificates
  47. --------------------------------
  48. Certifi does not support any addition/removal or other modification of the
  49. CA trust store content. This project is intended to provide a reliable and
  50. highly portable root of trust to python deployments. Look to upstream projects
  51. for methods to use alternate trust.