An extendable configuration that enables you to configure your application via python modules, config files, environment variables and more!
Project description
ultra-config
An extendable configuration that enables you to configure your application via python modules, config files, environment variables and more!
Free software: MIT license
Documentation: https://ultra-config.readthedocs.io.
Installation
pip install ultra-config
Features
Load configuration from a variety of sources including environment variables, json files, ini files, and python objects
Easily extend with your own configuration mechanisms
Offers a global configuration object for you application
Easily inject configuration into functions with the ability to override them for testing
Ability to fail fast if missing configuration
Examples
global configuration
from ultra_config import GlobalConfig
# Loads all env variables that begin with MY_APP, configuration
# from a json file and a custom override
GlobalConfig.load(env_var_prefix='MY_APP',
json_file='/opt/my_app/config.json',
overrides={'MY_VAR': 'some_val'})
@GlobalConfig.inject('MY_VAR', value='OTHER_VAR')
def my_func(arg1, value=None):
print(arg1)
print(value)
my_func()
# Prints the value of MY_VAR and OTHER_VAR
my_func(value='custom')
# prints the value of MY_VAR and then prints the "custom" since we explicitly passed that in
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.1.0 (2016-07-22)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for ultra_config-0.6.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3bf9539bbfc969848c4e6ab084bf2d7cfe4e336b63f4650997ebd03be6bfc085 |
|
MD5 | e6deeae055c4798e8c5bd5be14e7da81 |
|
BLAKE2b-256 | fa625e7549ae32e2d4d47892593a39edff463979d9803603e64998046fab03c6 |