A consistency handling system that was initially designed in the configuration management
Project description
Rougail
Description
Rougail is a free full-featured configuration manager library written in python3.
The configuration is describe in YAML dictionary files.
Those dictionaries are converted into Tiramisu objects.
Rougail can be incorporated with other technologies and stacks regardless of whether they’re written in Python or not.
Simple example
Create a directory:
# mkdir dict
Dictionary
A dictionary is a variables description file.
Create the file dict/dictionary.yml
:
---
version: 1.1
# describe a variable my_first_variable
# and a family with a variable my_second_variable
my_first_variable: my_value
my_family:
my_second_variable: 1
Generate variable
With commandline:
# rougail -m dict
Variables:
┣━━ 📓 my_first_variable: my_value
┗━━ 📂 my_family
┗━━ 📓 my_second_variable: 1
With default value:
Here is a python3 example file:
from rougail import Rougail, RougailConfig
from pprint import pprint
RougailConfig['dictionaries_dir'] = ['dict']
rougail = Rougail()
config = rougail.run()
pprint(config.value.get(), sort_dicts=False)
The result is:
{<TiramisuOption path="rougail">: {<TiramisuOption path="rougail.my_first_variable">: 'my_value',
<TiramisuOption path="rougail.my_family">: {<TiramisuOption path="rougail.my_family.my_second_variable">: 1}}}
With modified value
Use Tiramisu API to change values:
from rougail import Rougail, RougailConfig
from pprint import pprint
RougailConfig['dictionaries_dir'] = ['dict']
rougail = Rougail()
config = rougail.get_config()
config.option('rougail.my_first_variable').value.set('modified_value')
config.option('rougail.my_family.my_second_variable').value.set(2)
pprint(config.value.get(), sort_dicts=False)
The destination file is generated with new values:
{<TiramisuOption path="rougail">: {<TiramisuOption path="rougail.my_first_variable">: 'modified_value',
<TiramisuOption path="rougail.my_family">: {<TiramisuOption path="rougail.my_family.my_second_variable">: 2}}}
Link
Related projects
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
Built Distribution
File details
Details for the file rougail-1.1.1.tar.gz
.
File metadata
- Download URL: rougail-1.1.1.tar.gz
- Upload date:
- Size: 755.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cebf5eb943c08c6ccc222b1256bf62c5938772feb5e532a957140388e8724e9 |
|
MD5 | 532272dd236c4561f6ba20755dd5c570 |
|
BLAKE2b-256 | 63a34a5177b27950b512cc8288dd0a1ecb0a7457537d83635ff58ca87492d2ac |
File details
Details for the file rougail-1.1.1-py3-none-any.whl
.
File metadata
- Download URL: rougail-1.1.1-py3-none-any.whl
- Upload date:
- Size: 64.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 984b89365b1f1494012df8dff7aed33c8e28ae3aac575b86673a47707401929e |
|
MD5 | 384bf73d6f8b9348bbf876a7401f46e1 |
|
BLAKE2b-256 | 5b66be687d680246f40e33c1ac3c8a4dc9d8d0492e1cec5364176410a10ab826 |