{"library":"ndicts","title":"ndicts","description":"ndicts provides a nested dictionary class (ndict) that supports dot-notation access and manipulation of nested structures. Version 0.3.0 is the latest, targeting Python 3.8+. Release cadence is sporadic.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install ndicts"],"cli":null},"imports":["from ndicts import NestedDict"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from ndicts import NestedDict\nnd = NestedDict({'a': {'b': 1}})\nprint(nd['a.b'])  # access via dot notation\nnd['a.c'] = 2\nprint(nd.to_dict())","lang":"python","description":"Create a NestedDict, access and set values with dot-notation keys, and convert back to a plain dict.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}