Skip to main content

Easy app configuration.

Project description

praline-config

Python app configuration library to instantiate Python objects from various configuration inputs.

Purpose

praline-config endeavours to make gathering configuration inputs from various sources as low-friction and straightforward as possible.

Getting Started

Installation

pip install praline-config

Example Usage

Using praline.config has a few steps...

  1. Write configuration data in a supported format(yaml, toml, dotenv, etc..)
  2. Define a dataclass to hold your configuration data
  3. Instantiate the configuration object

Example YAML Configuration

server_address: "www.example.com"
threads: 4

Example Program

#!/usr/bin/env python3

from dataclasses import dataclass
from praline.config import AppConfigBase


@dataclass
class AppConfig(AppConfigBase):
    server_address: str = None
    threads: int = None


def main():
    app_config: AppConfig = AppConfig.load(config="example.yaml")
    print(f"Server: {app_config.server_address}")
    print(f"Threads: {app_config.threads}")


if __name__ == "__main__":
    exit(main())

Output

Server: www.example.com
Threads: 4

Supported Configuration Sources

praline-config leverages the python-configuration package to handle the raw configuration data, so any format it supports is supported. Additionally, praline-config can handle importing dotenv formatted files and binding environment variable values to fields in your configuration class. Finally, it can also incorporate values gathered from the CLI or similar through an dictionary.

See the documentation for python-configuration for the complete list of supported formats.

Dependencies

python-configuration

A library to load configuration parameters hierarchically from multiple sources and formats

python-configuration is an excellent library designed to interface with many different sources commonly used to store configuration data. We use it here as an adaptor for the various configuration sources being used as inputs.

python-dotenv

Python-dotenv reads key-value pairs from a .env file and can set them as environment variables. It helps in the development of applications following the 12-factor principles.

Used to load .env formatted files.

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

praline_config-0.1.1.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

praline_config-0.1.1-py3-none-any.whl (10.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: praline_config-0.1.1.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for praline_config-0.1.1.tar.gz
Algorithm Hash digest
SHA256 3332233f5e10ccc330fa8c014f53af8b1f6cd17130e04f93e45ee7761e64abdb
MD5 dfd61ce290299a47208a69cc6078f028
BLAKE2b-256 c5cc26a76f862fc62eca53013527a22ea7d051b8d13a763ac4c7fc4f0dbf5aa3

See more details on using hashes here.

File details

Details for the file praline_config-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for praline_config-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d41af6591ddb03a68612835b7f09a279b97218f82460140be890a1499308ad59
MD5 34249c282907679e0e779d61234c6fd8
BLAKE2b-256 152968f6da0c9a552b4c7b6d6266e7d34011ee139e31479a3a62910f6abfeb0b

See more details on using hashes here.

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