Skip to main content

A Python to class to hold configuration values.

Project description

configclass - A Python to class to hold configuration values

https://travis-ci.org/schettino72/configclass.png?branch=master https://coveralls.io/repos/schettino72/configclass/badge.png

A Config is a dict with a where:

  • existing items can be modified but no items can not be added

  • has make() method so you can easily created derived configs

  • make() has the same API as dict.update()

  • make() will merge values according to mergedict.ConfigDict.merge()

  • for convenience, make can take a None to perform a simple copy

>>> from configclass import Config

>>> c1 = Config({'a': 1, 'b': ['foo']})

# can't add new items to config
>>> c1.make({'a':2, 'c': [2]})
Traceback (most recent call last):
KeyError: 'New items can not be added to Config, invalid key:c'

# new config object created
>>> c2 = c1.make({'a':2})
>>> c2
Config({'a': 2, 'b': ['foo']})

# original object is not modified
>>> c1
Config({'a': 1, 'b': ['foo']})

# make() can take keyword arguments, note how lists are merged
>>> c2.make(b=['bar'])
Config({'a': 2, 'b': ['foo', 'bar']})

configclass.ConfigMixin can be used to create a Config class that is not based on mergedict.ConfigDict. Check unittests for usage.

Project Details

license

The MIT License Copyright (c) 2014 Eduardo Naufel Schettino

see LICENSE file

developers / contributors

  • Eduardo Naufel Schettino

install

$ pip install configclass

or download and:

$ python setup.py install

tests

Install dependencies in dev_requirements.txt.

To run the tests:

$ py.test

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

configclass-0.2.0.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

configclass-0.2.0-py3-none-any.whl (4.2 kB view details)

Uploaded Python 3

File details

Details for the file configclass-0.2.0.tar.gz.

File metadata

  • Download URL: configclass-0.2.0.tar.gz
  • Upload date:
  • Size: 5.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/44.1.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.10

File hashes

Hashes for configclass-0.2.0.tar.gz
Algorithm Hash digest
SHA256 6a80ca06e0f12427976d5c025e1b1ee8509b0c3337d3f5daf29f6a46f0e45819
MD5 81f416dd0cb200cbf75a127b42bb49ca
BLAKE2b-256 1fb57972458f6dabe24fa0b957aa80348c1e1236db856d653810c4b2092f9d8c

See more details on using hashes here.

File details

Details for the file configclass-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: configclass-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 4.2 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/44.1.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.10

File hashes

Hashes for configclass-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c94dfebfe3dbb89e494eebc8b7c5de3d448790ba6436c49308efa2a30d3bae78
MD5 f7cd90fd7828472c6db38851aed8de5d
BLAKE2b-256 5caddd5a109f1fb55b5f4188a9b8fa90bc20617e363ee87e0968fe13dc8ae3dd

See more details on using hashes here.

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