Mercurial > repos > jpayne > bioproject_to_srr_2
comparison certifi-2024.2.2.dist-info/METADATA @ 7:5eb2d5e3bf22
planemo upload for repository https://toolrepo.galaxytrakr.org/view/jpayne/bioproject_to_srr_2/556cac4fb538
author | jpayne |
---|---|
date | Sun, 05 May 2024 23:32:17 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
6:b2745907b1eb | 7:5eb2d5e3bf22 |
---|---|
1 Metadata-Version: 2.1 | |
2 Name: certifi | |
3 Version: 2024.2.2 | |
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 | |
26 Certifi: Python SSL Certificates | |
27 ================================ | |
28 | |
29 Certifi provides Mozilla's carefully curated collection of Root Certificates for | |
30 validating the trustworthiness of SSL certificates while verifying the identity | |
31 of TLS hosts. It has been extracted from the `Requests`_ project. | |
32 | |
33 Installation | |
34 ------------ | |
35 | |
36 ``certifi`` is available on PyPI. Simply install it with ``pip``:: | |
37 | |
38 $ pip install certifi | |
39 | |
40 Usage | |
41 ----- | |
42 | |
43 To reference the installed certificate authority (CA) bundle, you can use the | |
44 built-in function:: | |
45 | |
46 >>> import certifi | |
47 | |
48 >>> certifi.where() | |
49 '/usr/local/lib/python3.7/site-packages/certifi/cacert.pem' | |
50 | |
51 Or from the command line:: | |
52 | |
53 $ python -m certifi | |
54 /usr/local/lib/python3.7/site-packages/certifi/cacert.pem | |
55 | |
56 Enjoy! | |
57 | |
58 .. _`Requests`: https://requests.readthedocs.io/en/master/ | |
59 | |
60 Addition/Removal of Certificates | |
61 -------------------------------- | |
62 | |
63 Certifi does not support any addition/removal or other modification of the | |
64 CA trust store content. This project is intended to provide a reliable and | |
65 highly portable root of trust to python deployments. Look to upstream projects | |
66 for methods to use alternate trust. |