Skip to main content

A wrapper of python-configuration

Project description

Python Configuration Wrapper

This lib is basically a wrapper of the python-configuration.

It aims at making configuration easy !

Features

Read multi-level configuration values from multiple sources (precedency ordered):

  1. Command line arguments given by --additional-config or -C parameter.

    Example:

    python app.py -C "database.dialect=postgresql" --additional-config "database.host=postgres.mydomain.org" -C "database.user=admin"
    
  2. Environment variables starting with prefix set in the CONFIG_PREFIX environment variable. Level separator is __ (double underscore).

    Example:

    CONFIG_PREFIX=TEST TEST__database__user=root python app.py
    
  3. Config directories given by --config-path or -P parameter. The value of this parameter must be a directory path in which the sub-directories are multi-level keys, and plain-text files content are values. It's very practical when using secrets in containers.

    Example:

    mkdir /var/run/secrets/database -p
    echo -n 123456 > /var/run/secrets/database/password
    python app.py --config-path /var/run/secrets
    
  4. Config files given by --config-file or -F parameter. File formats must be among those handled by python-configuration:

    • json
    • ini
    • yaml
    • toml
    • python

    Example:

    python app.py -F config.json --config-file config.yaml
    

Installation

pip install python-configuration-wrapper

Usage

# import the config object from the module
# you can do this in every python file you want
from python_configuration_wrapper import config

# get some value from a multi-level key
myvalue = config.myfirstlevel.mysecondlevel.mykey

Example

See test

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

python-configuration-wrapper-1.0.7.tar.gz (3.0 kB view details)

Uploaded Source

Built Distribution

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

python_configuration_wrapper-1.0.7-py3-none-any.whl (3.2 kB view details)

Uploaded Python 3

File details

Details for the file python-configuration-wrapper-1.0.7.tar.gz.

File metadata

  • Download URL: python-configuration-wrapper-1.0.7.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.6.1

File hashes

Hashes for python-configuration-wrapper-1.0.7.tar.gz
Algorithm Hash digest
SHA256 723a142c4694300fd4fb742bb245086a77c5b1de79a9f1bfed0877b89ad3f050
MD5 c4267c1dbb98095f332c26c0c601d233
BLAKE2b-256 783baed5fcb27acbf6a15716e07ed2c193aa48fb7959f5fbc372ffaf57d2dd99

See more details on using hashes here.

File details

Details for the file python_configuration_wrapper-1.0.7-py3-none-any.whl.

File metadata

  • Download URL: python_configuration_wrapper-1.0.7-py3-none-any.whl
  • Upload date:
  • Size: 3.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.6.1

File hashes

Hashes for python_configuration_wrapper-1.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 d68458803d7a83ad61bea3b00cc3c784ec261374e45498242a69293cb020417e
MD5 6d72d6fd748444aee6cf89855947a9e1
BLAKE2b-256 4cd2108c10af3dbaa067a0b32d2da31034785dc57a6b12efd2eb767bd630bae3

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