Skip to main content

An extendable configuration that enables you to configure your application via python modules, config files, environment variables and more!

Project description

ultra-config

https://img.shields.io/pypi/v/ultra_config.svg https://travis-ci.org/timmartin19/ultra-config.svg?branch=master Documentation Status Updates

An extendable configuration that enables you to configure your application via python modules, config files, environment variables and more!

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ultra_config-0.6.0.tar.gz (17.3 kB view hashes)

Uploaded Source

Built Distribution

ultra_config-0.6.0-py2.py3-none-any.whl (11.4 kB view hashes)

Uploaded Python 2 Python 3

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