Skip to main content

A library for building a configuration store from one or more layered configuration sources

Project description

CircleCI Docs

This is a Python library for building a configuration store from one or more layered configuration sources. These are most commonly files, with yaml, toml and json support included and other formats easily supported with plugins.

It provides an easy interface for accessing configuration information sourced from overlaid config files or mapped in from environment variables or command line options.

Configuration information is also available as nested, simple python data types so that you can validate the schema of your configuration using the tool of your choice.

Quickstart

To install the library, go for:

pip install configurator[yaml,toml]

Here’s how you would handle a layered set of defaults, system-wide config and then optional per-user config:

from configurator import Config

defaults = Config({
    'cache': {
        'location': '/tmp/my_app',
        'max_files': 100,
    },
    'banner': 'default banner',
    'threads': 1,
})
system = Config.from_path('/etc/my_app/config.yaml')
user = Config.from_path('~/.my_app.yaml', optional=True)
config = defaults + system + user

Now, if we wanted configuration from the environment and command line arguments to override those provided in configuration files, we could do so as follows:

import os
from argparse import ArgumentParser
from configurator import convert, target, required

config.merge(os.environ, {
    convert('MYAPP_THREADS', int): 'threads',
    required('MYAPP_CACHE_DIRECTORY'): 'cache.location',
})

parser = ArgumentParser()
parser.add_argument('--threads', type=int)
parser.add_argument('--max-files', type=int)
args = parser.parse_args()

config.merge(args, {
    'threads': 'threads',
    'max-files': 'cache.max_files',
})

To check the configuration we’ve accumulated is sensible we can use a data validation library such as Voluptuous:

from os.path import exists
from voluptuous import Schema, All, Required, PathExists

schema = Schema({
    'cache': {'location': All(str, PathExists()), 'max_files': int},
    'banner': Required(str),
    'threads': Required(int),
    })

schema(config.data)

So, with all of the above, we could use the following sources of configuration:

>>> import os, sys
>>> print(open('/etc/my_app/config.yaml').read())
cache:
  location: /var/my_app/
<BLANKLINE>
>>> os.environ['MYAPP_THREADS']
'2'
>>> os.environ['MYAPP_CACHE_DIRECTORY']
'/var/logs/myapp/'
>>> sys.argv
['myapp.py', '--threads', '3']

With the above sources of configuration, we’d end up with a configuration store that we can use as follows:

>>> config.cache.location
'/var/logs/myapp/'
>>> config.cache.max_files
100
>>> config.banner
'default banner'
>>> config.threads
3

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

configurator-2.4.0.tar.gz (30.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

configurator-2.4.0-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file configurator-2.4.0.tar.gz.

File metadata

  • Download URL: configurator-2.4.0.tar.gz
  • Upload date:
  • Size: 30.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.8.0 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for configurator-2.4.0.tar.gz
Algorithm Hash digest
SHA256 7a5228b4697d2b548ee8dd792c54585efed7e4f5e31bd537481363379b3e7444
MD5 62b98390d5badf62062a9bcb2fa1dad8
BLAKE2b-256 d04b8a3c81aa23a1d9fb565cddc64352f18d342fe55a109e5cc29eebcae6c0fc

See more details on using hashes here.

File details

Details for the file configurator-2.4.0-py3-none-any.whl.

File metadata

  • Download URL: configurator-2.4.0-py3-none-any.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.8.0 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for configurator-2.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1773c58599774b909f841d3a0924a06d0d350222a4d4b557307e39ba87e67aee
MD5 b753daad13a3ee03b2e7069368d1df0a
BLAKE2b-256 9b939a8893da292fb7f726a10ffcaecf3bbe5f3c1d5950f865737c3bf3eb6a99

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page