Skip to main content

Python client for devices interacting with configgery.com

Project description

Configgery Python client

Install

$ pip install configgery-client

Getting Started

This library allows you to fetch the latest set of configurations for your client.

First, add some configurations to a Client Group configgery.com Then, use this library to fetch those same configurations.

Once a client has identified itself, you will see it in the client list at configgery.com/<org_name>/clients/.

Fetching configurations

from configgery.client import Client

client = Client(API_KEY, "/path/to/store/configurations")
client.download_configurations()

Checking if up-to-date

from configgery.client import Client

client = Client(SDK_KEY, "/path/to/store/configurations")
client.identify("my_client_name")
client.check_latest()
print(client.is_download_needed())

Using a configuration

from configgery.client import Client

client = Client(SDK_KEY, "/path/to/store/configurations")
client.identify("my_client_name")
success, data = client.get_configuration('myconfiguration.json')

if success:
    print(data)
else:
    print('Could not find configuration')

Updating state

from configgery.client import Client, ClientState

client = Client(SDK_KEY, "/path/to/store/configurations")
client.identify("my_client_name")
client.download_configurations()
client.update_state(ClientState.Configurations_Applied)

if device_happy():  # your own check
    client.update_state(ClientState.Upvote)
else:
    client.update_state(ClientState.Downvote)

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

configgery_client-2.2.0.tar.gz (6.3 kB view hashes)

Uploaded Source

Built Distribution

configgery_client-2.2.0-py3-none-any.whl (7.6 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