My own poor little attempt at a config lib


License
MIT
Install
pip install elib-config==2018.11.26.1

Documentation

elib_config

<3 Open Source

Cheese shop License Appveyor build Codacy grade Codacy coverage Requires.io CodeClimate maintainability BetterCodeHub OSI Best Practices CodeFactor

Throughput Graph

My own poor little attempt at a config lib.

I want configuration to live in a TOML file (maybe PEP518 will take off, and I'd like to give TOML a try anyway).

I also want config values set in the OS environment to take precedence.

I want config values to exist in a hierarchic tree.

I want config values to be type-checked, and casted to the correct type at runtime. Obviously, those types must be checked.

I want config values with default values, and config values without. Those without should be considered "mandatory" config values.

All of those checks must raise corresponding exceptions.

Finally, since configuration evolves with the package, it's hard to keep track of. Therefore, I want the config package to create an example config file based on the config values that have been declared, and nothing else.

This package does about all that, hopefully in a consistent way.