pip install miru-config-client
import miruconfigclient as miru
Option 1: SDK Key
client = miru.Client( sdk_key="<your-sdk-key>", client_id="<your-client-id>", )
Option 2: Certificate
client = miru.Client( ca_file="./path/to/ca.pem", cert_file="./path/to/cert.pem", key_file="./path/to/key.pem", )
Option 1: Write the config to the filesystem
client.write_config( slug="motion-control-config", schema_file="./path/to/config/schema.yaml", dest_file="./path/to/place/config.yaml", )
Option 2: Get the config as a dictionary
motion_control_config = client.get_config( slug="motion-control-config", schema_file="./path/to/config/schema.yaml", )