p-config 1.4.0

Creator: railscoder56

Last updated:

Add to Cart

Description:

pconfig 1.4.0

Simple configure management tool for python project.
YAML file and environment variable both supported.

Free software: BSD license
Documentation: https://p-config.readthedocs.io.


Install
$: pip install p_config --upgrade


Usage

Initialize a Config instance. You can add some default value here.
Load local file or environment value. Value with same key will be overridden.
Access config through the instance

(default) p_config ) ENV=UAT ipython
Python 3.9.1 (default,)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.20.0 -- An enhanced Interactive Python. Type '?' for help.

In [1]: from p_config import Config

In [2]: config = Config(ENV='SIT')

In [3]: config.ENV # default config defined at [2]
Out[3]: 'SIT'

In [4]: !cat demo.yaml
ENV: PRD
BROKER_URI: redis://
DB:
NAME: test
HOST: localhost
PORT: 3306

In [5]: config.load_yaml_file('demo.yaml')

In [6]: config.ENV # overridden by config in demo.yaml
Out[6]: 'PRD'

In [7]: config.DB # only support upper case
Out[7]: {'NAME': 'test', 'HOST': 'localhost', 'PORT': 3306}

In [8]: config.DB.HOST
Out[8]: 'localhost'

In [9]: config.load_env()

In [10]: config.ENV # overridden by config in demo.yaml
Out[10]: 'UAT'


Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.