Skip to main content

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.3.tar.gz (1.9 kB view hashes)

Uploaded Source

Built Distribution

xconfig-0.0.3-py3-none-any.whl (3.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page