Python configuration manager.
Project description
Project in early beta. Work in progress!
Conflow organizes layered configurations for Python applications. Conflow allows you to use default settings and extend or override it via merging settings from different sources: - Python dictionaries - Files: yaml, json, ini - Environment variables
Quickstart
pip install conflow
Usage
import os from conflow import Config, from_env DEFAULT_SETTINGS = { 'db': { 'master': { 'host': 'localhost', 'port': 5432, }, 'slave': { 'host': 'localhost', 'port': 5433, } } } config = Config().merge(DEFAULT_SETTINGS) assert config.db.master.host() == 'localhost' os.environ['APP_DB__MASTER__HOST'] = 'remote_host' env_settings = from_env('APP') config = Config().merge(DEFAULT_SETTINGS).merge(env_settings) assert config.db.master.host() == 'remote_host'
Motivation
If you are tired of making local, test, stage and production profiles in each project, then Conflow is for you. Conflow allows you to fetch and merge configs from different places - yaml files, environment variables etc.
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.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size conflow-0.0.2-py3-none-any.whl (8.9 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size conflow-0.0.2.tar.gz (7.7 kB) | File type Source | Python version None | Upload date | Hashes View |