Skip to main content

Easier way of accessing & assigning information in a nested dictionary.

Project description

Access nested content easily.

k = NestedDict({‘a’: {‘b’: {‘c’: 123}}, ‘d’: {‘e’: 456}})

assert k[‘a’][‘b’][‘c’] == 123 assert k[‘b’][‘c’] == 123 assert k[‘c’] == 123

assert k[[‘a’, ‘b’, ‘c’]] == 123 assert k[[‘b’, ‘c’]] == 123 assert k[[‘c’]] == 123

assert k[‘a/b/c’] == 123 assert k[‘b/c’] == 123

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

easy_dict-0.1.1.tar.gz (6.0 kB view hashes)

Uploaded Source

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