Metadata-Version: 2.1
Name: feature-flags-client
Version: 1.0.25.dev1
Summary: A middleware and a set of handlers to handle Code Grant authentication with Cognito
Home-page: UNKNOWN
Author: STITCH
Author-email: kellie@stitchdesignlab.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.5
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)
```

