ClearConf is a library created to support easy and manageble python configuration. It consists in a CLI tool to manage the configuration directory, and in a python class (BaseConfig) which adds additional functionalities to a configuration class.
Project description
clearconf
ClearConf is a library created to support easy and manageble python configuration.
It consists in a python API (based on the BaseConfig
class) which adds additional functionalities to
a configuration class, and in an optional CLI tool to simplify managing configurations.
Installation
To install ClearConf just run
pip install clearconf
API
Example 1
A configuration file for a machine learning project could be structure as follow.
from models import MLP
from datasets import ImageNet
class Config(BaseConfig):
seed = 1234
class Model:
architecture = MLP
class Params:
num_layers = 16
layers_dim = [96] * num_layers
class Data:
dataset = ImageNet
class Params:
root = './data/PCN'
split = 'PCN.json'
subset = 'train'
The training/test script can access the configuration simply by importing it:
from configs import Config
Model = Config.Model
Data = Config.Data
model = Model.architecture(**Model.Params.to_dict())
dataset = Data.dataset(**Data.Params.to_dict())
Example 2
It is also possible to simplify the configuration further using inheritance. For example the Model configuration seen before would look like this:
from models import MLP
class Config(BaseConfig):
seed = 1234
class Model(MLP):
num_layers = 16
layers_dim = [96] * num_layers
The corresponding script is:
from configs import Config
model = Config.Model()
[!NOTE] The MLP class will be able to access the attributes set in the configuration as plain object attributes (e.g. self.num_layer)
CLI
The first step to use clearconf would be to use the CLI tool in the root of your project to initialize it:
cconf init
This will generate a config
directory where you will store your configurations and a .clearconf
file used by ClearConf to keep track of configurations.
After this you can start populating your config directory. You can find examples of configuration files in the Example section.
[!IMPORTANT] clearconf cli recursively recognize as configuration all python files ending with
_conf
Finally you can import a generic configuration in your script as
from configs import Config
and use it as you please.
When the script is run, if a default configuration has been set via the CLI
cconf defaults add main.py test_conf.py
such configuration will be dynamically imported.
Otherwise, clearconf will list all the available configuration and ask you to pick one.
0: example3_conf
1: example1_conf
2: example2_conf
3: example4_conf
Choose a configuration file:
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 clearconf-0.3.20.tar.gz
.
File metadata
- Download URL: clearconf-0.3.20.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.13 Linux/5.15.133.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bfa0fdf1f0312de5bbb8533160e33fe70f7c811c812a166ae60526e221414c11 |
|
MD5 | 8afbacb1159229a431458ed696f48142 |
|
BLAKE2b-256 | 228e03be2ec96a88914ad2a3b9cd84cfb4410ec4c1d0bbd3364cc6c0af302aee |
File details
Details for the file clearconf-0.3.20-py3-none-any.whl
.
File metadata
- Download URL: clearconf-0.3.20-py3-none-any.whl
- Upload date:
- Size: 13.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.13 Linux/5.15.133.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89a4a40c6f6ec20d22c098c5768408d14a99b51ae35454cc09f1aa9ecb1d54f3 |
|
MD5 | 0f41447eb7fb3dfbb683fd5d2800c3cb |
|
BLAKE2b-256 | 0c96927b443e7225696d6b5c3bdeeae9ac2bac0231305b9a2e6e89f0c679ec9d |