Metadata-Version: 2.1
Name: feature-flags-client
Version: 1.0.77
Summary: 
Author: Stitch
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: crc32c (>=2.3.post0,<3.0)
Requires-Dist: requests (==2.23.0)
Description-Content-Type: text/markdown

# Feature Flags Backend Client

pip install feature_flags_client

```
from flags_be_client import FeatureFlagClient

ff = FeatureFlagClient()

def is_flag_enabled(optional_identifier):
    return ff.is_enabled("exact_flag_name", optional_identifier)
```

## Creating a new release

Update the version in pyproject.toml and create a new tag with that version number and push it,
this will trigger the release.yml GitHub Action.
