LaunchDarkly sample Python application
We've built a console application that demonstrates how LaunchDarkly's SDK works.
Below, you'll find the basic build procedure. For more comprehensive instructions, you can visit your Quickstart page or the Python SDK reference guide.
This demo requires Python version 3.7 or higher.
Build instructions
-
Install the LaunchDarkly Python SDK by running
pip install -r requirements.txt
-
Edit
test.py
and set the value ofsdk_key
to your LaunchDarkly SDK key. If there is an existing boolean feature flag in your LaunchDarkly project that you want to evaluate, setfeature_flag_key
to the flag key.
sdk_key = "1234567890abcdef"
feature_flag_key = "my-flag"
- Run
python test.py
.
You should receive the message "Feature flag '<flag key>' is <true/false> for this user"
.