Metadata-Version: 2.4
Name: vexil-sdk
Version: 0.1.0
Summary: Official Python SDK for Vexil feature flags
Author: Vexil
License: MIT
Project-URL: Homepage, https://vexil.fr
Project-URL: Documentation, https://vexil.fr/en/sdk
Project-URL: Repository, https://gitlab.com/vexil/vexil
Keywords: feature-flags,vexil
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: pytest-cov>=5.0; extra == "dev"

# SDK Python — Vexil

Client officiel pour [Vexil](https://vexil.fr) feature flags.

## Installation

```bash
pip install vexil-sdk
```

## Usage

```python
from vexil import VexilClient

client = VexilClient("https://api.vexil.fr", "sdk-your-key")
client.refresh()

if client.is_on("checkout-v2", {"id": "user-42"}):
    ...
```

Clé SDK : https://app.vexil.fr/app/settings/sdk

## Docs

- Produit : https://vexil.fr/en/feature-flags  
- Guide : https://vexil.fr/en/sdk  

## Développement

```bash
cd packages/sdk-python
pip install -e ".[dev]"
pytest
python -m build
```
