| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This provider allows for using LaunchDarkly with the OpenFeature SDK for Python.
This provider is designed primarily for use in multi-user systems such as web servers and applications. It follows the server-side LaunchDarkly model for multi-user contexts. It is not intended for use in desktop and embedded systems applications.
Warning
This is a beta version. The API is not stabilized and may introduce breaking changes.
Note
This OpenFeature provider uses production versions of the LaunchDarkly SDK, which adhere to our standard versioning policy.
LaunchDarkly is a feature management platform that serves trillions of feature flags daily to help teams build better software, faster. Get started using LaunchDarkly today!
This version of the LaunchDarkly provider works with Python 3.9 and above.
Install the library via pip
$ pip install launchdarkly-openfeature-serverfrom ld_openfeature import LaunchDarklyProvider, Config
from openfeature import api
openfeature_provider = LaunchDarklyProvider(Config("sdk-key"))
api.set_provider(openfeature_provider)
# Refer to OpenFeature documentation for getting a client and performing evaluations.The optional start_wait parameter is the number of seconds to wait for a successful connection to LaunchDarkly, matching the same parameter of the LaunchDarkly SDK's LDClient, and defaulting to the same five seconds. A positive value bounds the whole of initialization: the provider constructor blocks for up to that long, and OpenFeature initialization then completes immediately, reporting a failed initialization if the client did not become ready in time. Zero does not block the constructor at all, and initialization then waits without a deadline for the data source to become valid or to fail permanently.
Refer to the SDK reference guide for instructions on getting started with using the SDK.
For information on using the OpenFeature client please refer to the OpenFeature Documentation.
LaunchDarkly evaluates contexts, and it can either evaluate a single-context, or a multi-context. When using OpenFeature both single and multi-contexts must be encoded into a single EvaluationContext. This is accomplished by looking for an attribute named kind in the EvaluationContext.
There are 4 different scenarios related to the kind:
The kind attribute should be a string containing only contain ASCII letters, numbers, ., _ or -.
The OpenFeature specification allows for an optional targeting key, but LaunchDarkly requires a key for evaluation. A targeting key must be specified for each context being evaluated. It may be specified using either targetingKey, as it is in the OpenFeature specification, or key, which is the typical LaunchDarkly identifier for the targeting key. If a targetingKey and a key are specified, then the targetingKey will take precedence.
There are several other attributes which have special functionality within a single or multi-context.
context = EvaluationContext("the-key")context = EvaluationContext("org-key", {"kind": "organization"});attributes = {
"kind": "multi",
"organization": {
"name": "the-org-name",
"targetingKey", "my-org-key",
"myCustomAttribute", "myAttributeValue"
},
"user": {
"key": "my-user-key",
"anonymous", true
}
}
context = EvaluationContext(null, attributes)attributes = {
"kind": "organization",
"myCustomAttribute": "myAttributeValue",
"privateAttributes": ["myCustomAttribute"]
}
context = EvaluationContext("org-key", attributes)attributes = {
"kind": "organization",
"organization": {
"name": "the-org-name",
"targetingKey": "my-org-key",
# This will ONLY apply to the "organization" attributes.
"privateAttributes": ["myCustomAttribute"],
# This attribute will be private.
"myCustomAttribute": "myAttributeValue",
},
"user": [
"key": "my-user-key",
"anonymous" = > true,
# This attribute will not be private.
"myCustomAttribute": "myAttributeValue",
]
}
context = EvaluationContext(null, attributes)Evaluations include flag metadata for the LaunchDarkly specific parts of the evaluation result which have no OpenFeature equivalent. Each entry is absent when it does not apply to the evaluation.
| Key | Type | Description |
|---|---|---|
| variationIndex | integer | The index of the returned variation. Absent for default values. |
| inExperiment | boolean | Present, and True, when the evaluation was part of an experiment. |
| ruleIndex | integer | The index of the rule that matched. |
| ruleId | string | The identifier of the rule that matched. |
| prerequisiteKey | string | The key of the prerequisite flag that failed. |
| bigSegmentsStatus | string | The status of the Big Segments query made during the evaluation. |
details = client.get_boolean_details("my-flag", False, context)
in_experiment = details.flag_metadata.get("inExperiment", False)Check out our documentation for in-depth instructions on configuring and using LaunchDarkly. You can also head straight to the complete reference guide for this SDK.
The authoritative description of all properties and methods is in the python documentation.
We encourage pull requests and other contributions from the community. Check out our contributing guidelines for instructions on how to contribute to this SDK.
| Back | FazBrowse Home | New Git URL |