You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

78 line
2.4 KiB

  1. Metadata-Version: 2.4
  2. Name: certifi
  3. Version: 2025.7.14
  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.7
  18. Classifier: Programming Language :: Python :: 3.8
  19. Classifier: Programming Language :: Python :: 3.9
  20. Classifier: Programming Language :: Python :: 3.10
  21. Classifier: Programming Language :: Python :: 3.11
  22. Classifier: Programming Language :: Python :: 3.12
  23. Classifier: Programming Language :: Python :: 3.13
  24. Requires-Python: >=3.7
  25. License-File: LICENSE
  26. Dynamic: author
  27. Dynamic: author-email
  28. Dynamic: classifier
  29. Dynamic: description
  30. Dynamic: home-page
  31. Dynamic: license
  32. Dynamic: license-file
  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.