Metadata-Version: 2.4
Name: feature-flag-python
Version: 0.1.0
Summary: A Python client for feature flags and A/B testing
Project-URL: Homepage, https://github.com/jitokim/feature-flag-python
Project-URL: Bug Tracker, https://github.com/jitokim/feature-flag-python/issues
Project-URL: Repository, https://github.com/jitokim/feature-flag-python
Project-URL: Documentation, https://jitokim.github.io/feature-flag-python
Project-URL: Changelog, https://github.com/jitokim/feature-flag-python/blob/main/CHANGELOG.md
Author-email: Jihoon Kim <pigberger70@gmail.com>
Maintainer-email: Jihoon Kim <pigberger70@gmail.com>
License: MIT
License-File: LICENSE
Keywords: ab-testing,experiments,feature-flags,feature-toggles,toggles
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Typing :: Typed
Requires-Python: >=3.9
Requires-Dist: requests>=2.32.4
Provides-Extra: all
Requires-Dist: httpx>=0.24.0; extra == 'all'
Requires-Dist: python-dotenv>=0.19.0; extra == 'all'
Provides-Extra: async
Requires-Dist: httpx>=0.24.0; extra == 'async'
Provides-Extra: dev
Requires-Dist: bandit>=1.7.0; extra == 'dev'
Requires-Dist: build>=0.10.0; extra == 'dev'
Requires-Dist: httpx>=0.24.0; extra == 'dev'
Requires-Dist: pip-audit>=2.7.0; extra == 'dev'
Requires-Dist: pre-commit>=3.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest-mock>=3.10.0; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: python-dotenv>=0.19.0; extra == 'dev'
Requires-Dist: responses>=0.20.0; extra == 'dev'
Requires-Dist: ruff>=0.1.0; extra == 'dev'
Requires-Dist: setuptools>=78.1.1; extra == 'dev'
Requires-Dist: twine>=4.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# Feature Flag for Python

> A modern, composable, and minimal feature flag system for Python applications.

[![CI](https://github.com/jitokim/feature-flag-python/actions/workflows/ci.yml/badge.svg)](https://github.com/jitokim/feature-flag-python/actions/workflows/ci.yml)
[![PyPI](https://img.shields.io/pypi/v/feature-flag-python.svg)](https://pypi.org/project/feature-flag-python/)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)

---

## ✨ Features

- ✅ Simple, intuitive API
- 🧩 Extensible flag sources and evaluators
- 🔄 Sync & Async compatible
- 🔒 Safe for production usage
- ⚡ Fast and lightweight
- 🧪 Full test suite and type-checked
- 📦 Designed for frameworks like FastAPI or Flask

---

## 📦 Installation

```bash
pip install feature-flag-python
