Metadata-Version: 2.4
Name: trustifi
Version: 29
Summary: Python package for providing Google's CA Bundle.
Home-page: https://github.com/AYMENJD/trustifi
Author: AYMENJD
Author-email: let.me.code.safe@gmail.com
License: MIT
Project-URL: Source, https://github.com/AYMENJD/trustifi
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.7
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# trustifi: Google-trusted Root CA Certificates for Python

trustifi provides **Google-trusted Root CA certificates** for TLS verification.
It is intended as a **drop-in replacement for [certifi](https://pypi.org/project/certifi)**, using Google’s trust
program and policies instead of Mozilla’s.

## Installation

`trustifi` can be installed using `pip`:
```bash
pip install trustifi
```

## Usage

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

```python
>>> import trustifi
>>> trustifi.where()
'/usr/local/lib/python3.7/site-packages/trustifi/cacert.pem'
```

Or from the command line:

```bash
python -m trustifi
/usr/local/lib/python3.7/site-packages/trustifi/cacert.pem
```
