Metadata-Version: 2.1
Name: certifi-debian
Version: 2021.1.10
Summary: Python package for providing Debian like CA Bundle path.
Home-page: https://certifiio.readthedocs.io/en/latest/
Author: Nicolas Ledez
Author-email: pypi.python.org@ledez.net
License: MPL-2.0
Project-URL: Documentation, https://certifiio.readthedocs.io/en/latest/
Project-URL: Source, https://github.com/certifi/python-certifi
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9

Certifi: Python SSL Certificates for Debian like
================================================

`Certifi-debian` provides a fork of https://github.com/certifi/python-certifi but use
distro bundle for validating the trustworthiness of SSL certificates while
verifying the identity of TLS hosts. It has been extracted from the `Requests`
project.

Installation
------------

``certifi-debian`` is available on PyPI. Simply install it with ``pip``::

    $ pip install certifi-debian

Usage
-----

To reference the installed certificate authority (CA) bundle, you can use the
built-in function::

    >>> import certifi

    >>> certifi.where()
    '/etc/ssl/certs/ca-certificates.crt'

Or from the command line::

    $ python -m certifi
    /etc/ssl/certs/ca-certificates.crt

Enjoy!


