Python SDK for the featureflow feature management platform
Get your Featureflow account at featureflow.io
The easiest way to get started is to follow the Featureflow quick start guides
The SDK is available on ![pypi][pypi-url].
You can either add it as a dependency or install it globally.
python -m pip install featureflow-sdk
Here is a simple example of running your feature that prints "I'm enabled" on the screen.
api_key = "<your-javascript-environment-sdk-key>"
def evaluate_my_feature(user):
featureflow = Featureflow.init(api_key)
if featureflow.evaluate(:'some-cool-feature', user).isOn():
maybe_evaluate_my_feature()
print("I'm enabled")