Skip to main content

Python library for loading app configurations from files and/or namespaced environment variables

Project description

Build Status Coverage Status

CLIMATECONTROL

CLIMATECONTROL controls your apps configuration environment. It is a Python library for loading app configurations from files and/or namespaced environment variables.

Install

pip install climatecontrol

Usage

Set some environment variables in your shell

MY_APP_SECTION1_SUBSECTION1=test1
MY_APP_SECTION2_SUBSECTION2=test2
MY_APP_SECTION2_SUBSECTION3=test3

Then use them in your python modules:

>>> from climatecontrol.settings_parser import Settings
>>> settings_map = Settings(env_prefix='MY_APP')
>>> dict(settings_map)
{'section1': {'subsection1': 'test1'}, 'section2': {'subsection2': 'test2', 'subsection3': 'test3'}}
>>>

In case you want to update your settings or your environment variables have changed and you want to reload them, the update method will reload your settings:

>>> import os
>>> os.environ['MY_APP_SECTION2_NEW_ENV_VAR'] = 'new_env_data'
>>> settings_map.update()
{'section2': {'subsection3': 'test3', 'subsection2': 'test2', 'new_env_var': 'new_env_data'}, 'section1': {'subsection1': 'test1'}}
>>>

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

climatecontrol-0.1.4.tar.gz (6.3 kB view hashes)

Uploaded Source

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