getconf, a versatile configuration lib for Python projects
Project description
The getconf project provides simple configuration helpers for Python programs.
It provides a simple API to read from various configuration files and environment variables:
import getconf
config = getconf.ConfigGetter('myproj', ['/etc/myproj.conf'])
db_host = config.get('db.host', 'localhost')
db_port = config.getint('db.port', 5432)
Beyond this API, getconf aims at unifying configuration setup across development and production systems, respecting the standard procedures in each system:
Allow userspace configuration on development systems
Allow multiple different configurations for continuous integration systems
Use standard configuration space in /etc on traditional production servers
Handle environment-based configuration for cloud-based platforms
getconf v1.6 onwards supports 2.7, 3.3, 3.4, 3.5 and is distributed under the two-clause BSD license. The latest version of getconf to support Python 2.6 is v1.5.1.
Links
Package on PyPI: http://pypi.python.org/pypi/getconf/
Source on GitHub: http://github.com/Polyconseil/getconf/
Installation
Intall the package from PyPI, using pip:
pip install getconf
Or from GitHub:
git clone git://github.com/Polyconseil/getconf
getconf has no external dependancy beyond Python.
Introduction
All configuration values are accessed through the getconf.ConfigGetter object:
import getconf
config = getconf.ConfigGetter('myproj', ['/etc/myproj/settings.ini', './local_settings.ini'])
The above line declares:
Use the myproj namespace (explained later; this is mostly used for environment-based configuration, as a prefix for environment variables)
Look, in turn, at /etc/myproj/settings.ini (for production) and ./local_settings.ini (for development); the latter overriding the former.
Once the getconf.ConfigGetter has been configured, it can be used to retrieve settings:
debug = config.getbool('debug', False)
db_host = config.get('db.host', 'localhost')
db_port = config.getint('db.port', 5432)
allowed_hosts = config.getlist('django.allowed_hosts', ['*'])
All settings have a type (default is text), and accept a default value. They use namespaces (think ‘sections’) for easier reading.
With the above setup, getconf will try to provide db.host by inspecting the following options in order (it stops at the first defined value):
From the environment variable MYPROJ_DB_HOST, if defined
From the host key in the [db] section of ./local_settings.ini
From the host key in the [db] section of /etc/myproj/settings.ini
From the default provided value, 'localhost'
Features
- Env-based configuration files
An extra configuration file/directory/glob can be provided through MYPROJ_CONFIG; it takes precedence over other files
- Default options
An extra dictionary can be provided as ConfigGetter(defaults=some_dict); it is used after configuration files and environment variables.
It should be a dict mapping a section name to a dict of key => value:
>>> config = ConfigGetter('myproj', defaults={'db': {'host': 'localhost'}}) >>> config.get('db.host') 'localhost'
- Typed getters
getconf can convert options into a few standard types:
config.getbool('db.enabled', False) config.getint('db.port', 5432) config.getlist('db.tables') # Expects a comma-separated list config.getfloat('db.auto_vacuum_scale_factor', 0.2)
Concepts
getconf relies on a few key concepts:
- namespace
Each ConfigGetter works within a specific namespace (its first argument).
Its goal is to avoid mistakes while reading the environment: with ConfigGetter(namespace='myproj'), only environment variables beginning with MYPROJ_ will be read
- Sections
The configuration options for a project often grow quite a lot; to restrict complexity, getconf splits values into sections, similar to Python’s configparser module.
Section are handled differently depending on the actual configuration source:
section.key is mapped to MYPROJ_SECTION_KEY for environment variables
section.key is mapped to [section] key = in configuration files
section.key is mapped to defaults['section']['key'] in the defaults dict.
- Default section
Some settings are actually “globals” for a projet. This is handled by unset section names:
key is mapped to MYPROJ_KEY for environment variables
key is mapped to [DEFAULT] key = in configuration files
key is mapped to defaults['DEFAULT']['key'] in the defaults dict.
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
File details
Details for the file getconf-1.6.0.tar.gz
.
File metadata
- Download URL: getconf-1.6.0.tar.gz
- Upload date:
- Size: 19.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3e125029d805d2014bb99ce3522a0b24f2ba715e6e8853be07a6863b5dc3eb0 |
|
MD5 | 5191c44fa95c6fc77fecde2348af2e3c |
|
BLAKE2b-256 | f78864109ad8484b39af83ae6defdd2a4d7887d18d99175cc16c5a8d9967f421 |
File details
Details for the file getconf-1.6.0-py2.py3-none-any.whl
.
File metadata
- Download URL: getconf-1.6.0-py2.py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1bd0e2d0b26e508b7ea1cdc4b7529b620a1af4d05e69b7c8e8f59f0625057c5 |
|
MD5 | f90b0fc1eaac9a33485d726b98268d1b |
|
BLAKE2b-256 | 169600a71c121cd7211f26e87276a78243c1fdfe69b8f65a1976d9d646410865 |