Skip to main content

Confidence provider for the OpenFeature SDK

Project description

Confidence SDK

This repo contains the Confidence SDK for python and the Confidence OpenFeature flag provider.

Adding the dependency

pip install

pip install spotify-confidence-sdk==0.2.3

#### requirements.txt
```python
spotify-confidence-sdk==0.2.3

pip install -r requirements.txt

Creating and using the flag provider

Below is an example for how to initialize the Confidence SDK, and then resolve a flag with a boolean attribute. The SDK is configured with an api key, which will authorize the resolving requests.

The flag will be applied immediately, meaning that Confidence will count the targeted user as having received the treatment.

You can retrieve attributes on the flag variant using property dot notation, meaning test-flag.boolean-key will retrieve the attribute boolean-key on the flag test-flag.

You can also use only the flag name test-flag and retrieve all values as a map with resolve_object_details().

The flag's schema is validated against the requested data type, and if it doesn't match it will fall back to the default value.

from confidence.confidence import Confidence
from confidence.confidence import Region

confidence = Confidence("API_KEY")
# to send an event
confidence.with_context({"app": "python"}).track("event_name", {})
#to resolve a flag
default_value = False
flag_value = confidence.resolve_boolean_details("test-flag.boolean-key", default_value)
print(flag_value)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spotify_confidence_sdk-0.2.3.tar.gz (19.1 kB view hashes)

Uploaded Source

Built Distribution

spotify_confidence_sdk-0.2.3-py3-none-any.whl (20.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page