Feature flag server SDK for python
Project description
Python SDK For Harness Feature Flags
Table of Contents
Intro
Requirements
Quickstart
Further Reading
Build Instructions
Intro
Use this README to get started with our Feature Flags (FF) SDK for Python. This guide outlines the basics of getting started with the SDK and provides a full code sample for you to try out. This sample doesn’t include configuration options, for in depth steps and configuring the SDK, for example, disabling streaming or using our Relay Proxy, see the Python SDK Reference.
For a sample FF Python SDK project, see our test test python project.
Requirements
Python 3.7 or newer (python --version)
pip
For Mac users if you don't already have pyenv or something similar installed for managing python version
Quickstart
To follow along with our test code sample, make sure you’ve:
- Created a Feature Flag on the Harness Platform called harnessappdemodarkmode
- Created a server SDK key and made a copy of it
Install the SDK
Install the python SDK using pip
python -m pip install harness-featureflags
Code Sample
The following is a complete code example that you can use to test the harnessappdemodarkmode
Flag you created on the Harness Platform. When you run the code it will:
- Connect to the FF service.
- Report the value of the Flag every 10 seconds until the connection is closed. Every time the harnessappdemodarkmode Flag is toggled on or off on the Harness Platform, the updated value is reported.
- Close the SDK.
from featureflags.client import CfClient
from featureflags.config import *
from featureflags.evaluations.auth_target import Target
from featureflags.util import log
import os
import time
# API Key
apiKey = os.getenv('FF_API_KEY', "changeme")
# Flag Name
flagName = os.getenv('FF_FLAG_NAME', "harnessappdemodarkmode")
def main():
# Create a Feature Flag Client
client = CfClient(apiKey)
# Create a target (different targets can get different results based on rules. This include a custom attribute 'location')
target = Target(identifier='HT_1', name="Harness_Target_1", attributes={"location": "emea"})
# Loop forever reporting the state of the flag
while True:
result = client.bool_variation(flagName, target, False)
log.info("Flag variation %s", result)
time.sleep(10)
if __name__ == "__main__":
main()
Running the example
$ export FF_API_KEY=<your key here>
$ python3 examples/getting_started/getting_started.py
Running the example with Docker
If you dont have the right version of python installed locally, or dont want to install the dependancies you can use docker to quickly get started
# Install the package
docker run -v $(pwd):/app -w /app python:3.7-slim python -m pip install -t ./local harness-featureflags
# Run the script
docker run -e PYTHONPATH=/app/local -e FF_API_KEY=$FF_API_KEY -v $(pwd):/app -w /app python:3.7-slim python examples/getting_started/getting_started.py
Additional Reading
For further examples and config options, see the Python SDK Reference.
For more information about Feature Flags, see our Feature Flags documentation.
Harness is a feature management platform that helps teams to build better software and to test features quicker.
======= History
1.0.1 (2021-07-07)
- First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for harness_featureflags-1.7.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7907f9fda3493dc5a2fef1162a091829b2cb5ab74a49cc3f63bf434a66c521ee |
|
MD5 | 0fcddd5c9f2924b95c2f804e3e4f59b5 |
|
BLAKE2b-256 | 62875b6ea2347752e1e5dd65706694a031e5032c3c526417d9bbdeadb1469233 |
Hashes for harness_featureflags-1.7.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10e5eb9444b87c57f7730be47af91931f80e7e383642e1eb33f78f1ac050fea9 |
|
MD5 | d889f4fdf2bd075819f3510ae96f8031 |
|
BLAKE2b-256 | eaf3f2a4c11722526adb58fa813a3f04dc3a6e9bff50b66b87980ce02489118f |