A Python 3 configuration library that's music to your ears.
Project description
What is it?
configaro is a Python 3 configuration library that’s music to your ears.
Why should I care?
configaro has been created with the following design goals in mind:
provide a single file library with minimal dependencies
provide one with a simple, expressive API that is easy to use and gets out of your way
provide one that allows for hierarchical config data supporting dot-addressable access
provide one that allows for defaults and locals config modules
provide one with complete test coverage
provide one with complete documentation
If this sounds appealing to you, take a look:
import configaro as cfg
# Initialize the library with the name of the package containing your defaults.py config module cfg.init(‘mypkg.config’)
# Get the entire config object config = cfg.get() print(config) # prints “{‘greeting’: ‘Hello’, ‘subject’: ‘World’}”
# Config object provide attribute access style in addition to dict access style. print(‘f{config.greeting}, {config.subject}!’) # prints “Hello, World!”
# Config objects may be updated quite flexibly as well. cfg.put(greeting=’Goodbye’, subject=’Folks’} cfg.put({‘greeting’: ‘Goodbye’, ‘subject’: ‘Folks’}) cfg.put(‘greeting=Goodbye subject=Folks’)
What about Python 2?
I have zero interest in supporting Python 2 at this point. If you are still using Python 2 then move along – there’s nothing to see here.
Installation
configaro may be installed from the Python package index:
$ pip3 install configaro
It may also be installed from source:
$ git clone https://github.com/mojochao/configaro.git $ pip3 install .
If you install from source with .[dev] you should be able to run tests:
$ tox
Documentation
configaro documentation is hosted on [Read The Docs](https://configaro.readthedocs.io/en/latest/) and should be consulted for information on integrating it into your project.
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 configaro-0.9.9.tar.gz
.
File metadata
- Download URL: configaro-0.9.9.tar.gz
- Upload date:
- Size: 2.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a62f5791112adb41b37da45b54f94d59e3d2e9a8c0009e8dd41a89d6b4f0797b |
|
MD5 | b466f1a6814a37039c2e692ed5e2215a |
|
BLAKE2b-256 | e1908f298f0840426b66904634f550c9699fd57e5a487329a99ad3b347de5fe4 |
File details
Details for the file configaro-0.9.9-py3-none-any.whl
.
File metadata
- Download URL: configaro-0.9.9-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d3ed5b1a69573ae63e702e171b19c4da1ffab099f59ecc0b758272e2a069ebc |
|
MD5 | 5589ac9d128c0a75d2335d1655251504 |
|
BLAKE2b-256 | 3803b55f5ae7fb8bba2ba73314e859ff5152360d44b6f9bce614a278ddff9f6a |