Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Harness FME Python Configs SDK

Overview

Harness FME Python Configs SDK is designed to serve standalone, versioned configuration objects in Python applications.

Compatibility

This SDK is compatible with Python 3.7 and higher.

Getting started

Below is a simple example that describes the instantiation and most basic usage of our SDK:

Run pip install splitio_configs_client

from splitio_configs import ConfigsClient, TimeoutException, Target

client = ConfigsClient('YOUR_SDK_KEY')
try:
    client.block_until_ready()
except TimeoutException:
    # SDK_READY_TIMED_OUT: evaluations will return the fallback config or a Config with variant "control".
    pass

# Without target: returns the default variant of the config
default_config = client.get_config('CONFIG_NAME')
print(default_config.variant)  # example: 'v1'
print(default_config.value)    # example: {'prompt': 'Hello world', 'temperature': 0.5}

# With target: evaluates targeting rules for the given key
target = Target('user-123')
config = client.get_config('CONFIG_NAME', target)
print(config.variant, config.value)

The SDK also support asyncio, see below example:

from splitio_configs import ConfigsClientAsync, TimeoutException, Target

async def main():
    client = ConfigsClientAsync('YOUR_SDK_KEY')
    try:
        await client.block_until_ready()
    except TimeoutException:
        # SDK_READY_TIMED_OUT: evaluations will return the fallback config or a Config with variant "control".
        pass

    # Without target: returns the default variant of the config
    default_config = await client.get_config('CONFIG_NAME')
    print(default_config.variant)  # example: 'v1'
    print(default_config.value)    # example: {'prompt': 'Hello world', 'temperature': 0.5}

    # With target: evaluates targeting rules for the given key
    target = Target('user-123')
    config = await client.get_config('CONFIG_NAME', target)
    print(config.variant, config.value)

asyncio.run(main())

Please refer to our official docs to learn about all the functionality provided by our SDK and the configuration options available for tailoring it to your current application setup.

Submitting issues

The Split team monitors all issues submitted to this issue tracker. We encourage you to use this issue tracker to submit any bug reports, feedback, and feature enhancements. We'll do our best to respond in a timely manner.

License

Licensed under the Apache License, Version 2.0. See: Apache License.

Download files

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

Source Distribution

splitio_configs-1.0.0b3.tar.gz (25.8 kB view details)

Uploaded Source

File details

Details for the file splitio_configs-1.0.0b3.tar.gz.

File metadata

  • Download URL: splitio_configs-1.0.0b3.tar.gz
  • Upload date:
  • Size: 25.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.16

File hashes

Hashes for splitio_configs-1.0.0b3.tar.gz
Algorithm Hash digest
SHA256 aff8bca45e43a6702ca5279a615052a8140389a150eaa5c44c998e72e381136d
MD5 80160f8bb5908317bc51e2c11c4769d2
BLAKE2b-256 edb1acfaa9564902ae061dd34d2bb4f9c2b59d21b3268db00e03eb8fda0685d5

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.0.0b3 This release

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page