Metadata-Version: 2.4
Name: bandeira
Version: 0.2.0
Summary: Official Python client SDK for Bandeira feature flag service
Project-URL: Repository, https://github.com/felipekafuri/bandeira-sdks
Author: Felipe Kafuri
License-Expression: MIT
Keywords: bandeira,feature-flags,feature-toggles,sdk
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27
Description-Content-Type: text/markdown

# Bandeira Python SDK

Official Python client SDK for [Bandeira](https://github.com/felipekafuri/bandeira), a self-hosted feature flag service.

## Install

```bash
pip install bandeira
```

## Usage

```python
from bandeira import BandeiraClient, Config, Context

client = BandeiraClient(Config(
    url="http://localhost:8080",
    token="your-client-token",
))
client.start()

if client.is_enabled("my-flag", Context(user_id="user-123")):
    # feature is on
    pass

client.close()
```
