METADATA 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. Metadata-Version: 2.2
  2. Name: certifi
  3. Version: 2025.1.31
  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. Classifier: Programming Language :: Python :: 3.12
  24. Classifier: Programming Language :: Python :: 3.13
  25. Requires-Python: >=3.6
  26. License-File: LICENSE
  27. Dynamic: author
  28. Dynamic: author-email
  29. Dynamic: classifier
  30. Dynamic: description
  31. Dynamic: home-page
  32. Dynamic: license
  33. Dynamic: project-url
  34. Dynamic: requires-python
  35. Dynamic: summary
  36. Certifi: Python SSL Certificates
  37. ================================
  38. Certifi provides Mozilla's carefully curated collection of Root Certificates for
  39. validating the trustworthiness of SSL certificates while verifying the identity
  40. of TLS hosts. It has been extracted from the `Requests`_ project.
  41. Installation
  42. ------------
  43. ``certifi`` is available on PyPI. Simply install it with ``pip``::
  44. $ pip install certifi
  45. Usage
  46. -----
  47. To reference the installed certificate authority (CA) bundle, you can use the
  48. built-in function::
  49. >>> import certifi
  50. >>> certifi.where()
  51. '/usr/local/lib/python3.7/site-packages/certifi/cacert.pem'
  52. Or from the command line::
  53. $ python -m certifi
  54. /usr/local/lib/python3.7/site-packages/certifi/cacert.pem
  55. Enjoy!
  56. .. _`Requests`: https://requests.readthedocs.io/en/master/
  57. Addition/Removal of Certificates
  58. --------------------------------
  59. Certifi does not support any addition/removal or other modification of the
  60. CA trust store content. This project is intended to provide a reliable and
  61. highly portable root of trust to python deployments. Look to upstream projects
  62. for methods to use alternate trust.