libioc.Config.Data module

Internal data storage for BaseConfig objects.

class libioc.Config.Data.Data(data=None)[source]

Bases: dict

Internal data storage for BaseConfig objects.

delimiter = '.'
items()[source]

Iterate over the flattened keys and values.

Return type

Itemsview[str, Any]

keys()[source]

Return the available configuration keys.

Return type

Keysview[str]

property nested

Return the data as nested dict structure.

Return type

dict

values()[source]

Return all config values.

Return type

Valuesview[Any]