yaml config for python
Project description
python-lib-template
config = Config('./ciao.yaml')
# writes a new field in config
config.write(f'cose.cosa', 'ciao')
print(config['cose']['cosa']) # ciao
# pushes a new obj in config
config.push(f'arrays.array_id', 1)
config.push(f'arrays.array_id', 2)
print(config['arrays']['array_id']) # [1, 2]
cose:
cosa: ciao
arrays:
array_id:
- 1
- 2
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
xconfig-0.0.5.tar.gz
(2.1 kB
view hashes)