configmanager 1.3.0
pip install configmanager==1.3.0
Released:
Self-conscious items of configuration in Python
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Jazeps Basko
Classifiers
- Development Status
- Intended Audience
- License
- Programming Language
Project description
Self-conscious items of configuration in Python.
Interface Status
This is being actively tested before the public interface gets finalised. Any code reviewers welcome!
Public methods of Config and Item classes that don’t start with cm__ aren’t expected to change.
Features
Manager of configuration items when they have to be more than just key-value pairs.
Configuration is organised into sections which contain items and other sections.
Every configuration item is an object which knows its type, default value, custom value, the section it has been added to, whether it is required.
Configuration item and section classes are designed for extension: easy to implement things like value override via environment variables, command-line prompt message to ask for a missing value, custom type conversions, etc.
INI format file support through ConfigParser integration
JSON format file support
Easy to add YAML and any other dictionary-like format support
Quick Tour
More documentation at http://pythonhosted.org/configmanager
from configmanager import Config, Item
# Declare defaults (or load from a file)
config = Config({
'uploads': {
'threads': 1, # type will be set to int
'tmp_dir': Item(required=True),
},
})
# Load customisation
config.configparser.read('user-config.ini')
>>> config.uploads.threads.value = '5' # attribute-based access to any section or item, type conversion
>>> config.uploads.threads.value
5
>>> config['uploads']['threads'].value # key-based access is fine too
5
>>> config.uploads.tmp_dir.has_value
False
>>> config.uploads.tmp_dir.get('/tmp') # when an item has no default and you want to supply a fallback
'/tmp'
>>> config.uploads.tmp_dir.set('/tmp/uploads') # if there is a get, there must be set!
>>> config.uploads.tmp_dir.default
'/tmp'
>>> config.uploads.tmp_dir.is_default
False
>>> config.to_dict()
{
'uploads': {
'threads': 5,
'tmp_dir': '/tmp/uploads',
}
}
>>> config.reset()
>>> config.to_dict()
{}
>>> config.uploads.read_dict({'threads': '2'})
>>> config.uploads.to_dict(with_defaults=False)
{'threads': 2}
>>> config.to_dict(with_defaults=False)
{
'uploads': {
'threads': 2
}
}
>>> config.uploads.db = Config({'user': 'root'})
>>> config.uploads.db.user.value
'root'
>>> new_config = Config({'legacy': config})
>>> new_config.legacy.uploads.db.user.value
'root'
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Jazeps Basko
Classifiers
- Development Status
- Intended Audience
- License
- Programming Language
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
File details
Details for the file configmanager-1.3.0.tar.gz
.
File metadata
- Download URL: configmanager-1.3.0.tar.gz
- Upload date:
- Size: 22.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c78d5043377f31b7242408a1d26e137dff6a9a39282ca7c77dc7480d016ace93 |
|
MD5 | 6814ad98cf1ed8e533b574a65b4a5214 |
|
BLAKE2b-256 | 9c63e45dcf4b765c931aca8f49e38518b014f8d9581e25b45dfeac9ead1efa6e |