Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
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.

METADATA 2.1KB

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