Skip to main content

Utils for managing configurations

Project description

Info:

Python package to manage configuration dictionaries.

Author:

Servicio de Informática y Banco de Datos <sibd@cantabria.es>

Features

  • Simple wrapper around python dictionaries

  • Access to nested keys with dot notation: config.deeply.nested.key or as dictionary keys: config['deeply']['nested']['key']

  • Allows add dictionaries, remove keys or modify values by overriding dictionary methods

Installation

pip install beautifuldict

Quick Example

A Baseconfig object stores the configuration parameters as a parameter tree. It gives access to parameters in two ways: as dictionary keys or as attributes of the object.

>>> from beautifuldict.baseconfig import Baseconfig

>>> CONFIG_DICT = {
>>>      'example1': 'hello world',
>>>      'example2': {
>>>          'key1': 1,
>>>          'key2': 2}
>>>      }
>>> config = Baseconfig(CONFIG_DICT)
>>> config.example1     # returns 'hello world'
>>> config['example1']  # returns 'hello world'
>>> config.example2.key1  # returns 1
>>> config['example2']['key1']  # returns 1

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

beautifuldict-0.1.1.tar.gz (16.5 kB view hashes)

Uploaded Source

Built Distribution

beautifuldict-0.1.1-py3-none-any.whl (8.4 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