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
Release history Release notifications | RSS feed
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 details)
File details
Details for the file easy_dict-0.1.1.tar.gz
.
File metadata
- Download URL: easy_dict-0.1.1.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a3317321be1ffd47e075d2cc37bcc756fca7b69243f07b317b778224495c4148
|
|
MD5 |
ab203c7b572513a60fbf8de161002787
|
|
BLAKE2b-256 |
320bc3060c435a6f8cf1ba930980de426563abcebe1564a7fd1d712e6786cb01
|