Skip to main content

Configuration and Secrets for Python applications

Project description

Configure-Tron

https://img.shields.io/pypi/v/configuretron.svg https://img.shields.io/travis/channelcat/configuretron.svg Documentation Status Updates

Configuretron enables type hinted configuration files and secrets for python. Easily add secrets to your configuration that are encryptable from clients and decryptable from trusted developers and running services.

Features

  • Type-hinted configuration

  • Simple, readable YAML configs

  • Config in source control

  • Secrets safely in source control

  • Easily swap environments

  • Control who can encrypt and decrypt

Installation

$ python -m pip install configuretron

Usage

config.yml

config:
    api_url: https://apitopia.com/api/v1
    api_timeout: 20

config.py

@dataclass
class Config:
    api_url: str
    api_timeout: int = 30

config = configuretron.from_yaml(Config, "config.yml")

Adding Secrets

Adding encryption just takes a few console commands

$ python -m configuretron --yaml=config.yml setup_encryption

Copy the generated base64 private key into an environment variable (in this example, PRIVATE_KEY)

Encrypt and variables in the config (in this example, api_token):

$ python -m configuretron --yaml=config.yml encrypt --var api_token

Then pass the key to the config

private_key = configuretron.env_base64_value('PRIVATE_KEY')
config = configuretron.from_yaml(Config, "config.yml", private_key=private_key)

Environmental overrides

To override values per-environment, add them into the config like so:

config:
    api_url: http://localhost:8080/api/v1
    api_timeout: 20
env:
    prod:
        api_url: https://apitopia.com/api/v1

Then just pass env when initializing the configuration:

config = configuretron.from_yaml(Config, "config.yml", env="prod")

TODO Features

  • Config heirarchy

  • Type validation

History

0.1.0 (2022-12-22)

  • First release on PyPI.

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

configuretron-0.1.1.tar.gz (15.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

configuretron-0.1.1-py2.py3-none-any.whl (7.8 kB view details)

Uploaded Python 2Python 3

File details

Details for the file configuretron-0.1.1.tar.gz.

File metadata

  • Download URL: configuretron-0.1.1.tar.gz
  • Upload date:
  • Size: 15.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for configuretron-0.1.1.tar.gz
Algorithm Hash digest
SHA256 0b2c05d76dfee675e4f179b7dd1b5d5a1323363d2959034e11559da717e92c2e
MD5 58451ef7b57ee9a87ad9b28ec8b7ecb4
BLAKE2b-256 b94b527bb81cafcd1e2571c86f0f3dd05642de03af81ee2d9706c6cfbb6c7d6f

See more details on using hashes here.

File details

Details for the file configuretron-0.1.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for configuretron-0.1.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 14961dc59b1a31b58730cdc7d4fcd829396ec00223d72fa43b5c3f20aef0a153
MD5 cdd909d48216df08f18fd51ba5c7f5c1
BLAKE2b-256 28816754a587b6dbd4f715a25eb36f6c2f230f752e2029240b03e77ae4f0f525

See more details on using hashes here.

Supported by

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