Metadata-Version: 2.0
Name: certstore
Version: 0.0.2
Summary: Platform independent access to system certificate store
Home-page: https://certstore.readthedocs.io/
Author: Jon Everett
Author-email: jon.everett@protonmail.com
License: Apache-2
Keywords: cert
Requires-Dist: wincertstore; (os_name == 'nt')

certstore
=========

Platform independent access to system certificate store.


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

``certstore`` is available on PyPI.::

    $ pip install certstore

Usage
-----

Access and use system certificate bundle::

    >>> import certstore
    >>> certstore.ca_bundle
    '/path/to/system/store/ca.pem'

    >>> import requests
    >>> requests.get('https://some.domain.com', verify=certstore.ca_bundle)



