Metadata-Version: 2.4
Name: trustifi
Version: 33
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
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# trustifi: Google-trusted Root CA Certificates
[![Version](https://img.shields.io/pypi/v/trustifi?style=flat&logo=pypi&label=Trustifi)](https://pypi.org/project/trustifi) [![Downloads](https://static.pepy.tech/personalized-badge/trustifi?period=month&units=none&left_color=grey&right_color=brightgreen&left_text=Downloads)](https://pepy.tech/project/trustifi)

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 **TLS-only** trust model instead of Mozilla’s **general-purpose** root store.

It is currently used by [**RedC**](https://github.com/AYMENJD/redc).

## 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
```
