Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 276 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 276 Bytes

MiniConfig

MiniConfig is an easy way to manage recursive dictionaries:

>>> import miniconfig
>>> d = miniconfig.MiniConfig()
>>> d["a/b/c"] = 1
>>> d
{'a': {'b': {'c': 1}}}
>>> d["a/b/c"]
1

MiniConfig is based on collections.MutableMapping.