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, create a client at configgery.com and store the generated API key in a safe place. Then, once you've added configurations to your Client Group, you can fetch those same configurations.

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(API_KEY, "/path/to/store/configurations")
client.check_latest()
print(client.is_download_needed())

Using a configuration

from configgery.client import Client

client = Client(API_KEY, "/path/to/store/configurations")
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(API_KEY, "/path/to/store/configurations")
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.1.0.tar.gz (5.7 kB view hashes)

Uploaded Source

Built Distribution

configgery_client-2.1.0-py3-none-any.whl (7.1 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