Dictionary wrapper for quick access to deeply nested keys.
Project description
- Info:
Dictionary wrapper for quick access to deeply nested keys.
Features
Simple wrapper around python dictionary and dict like objects
Two wrappers with the same dict are considered equal
Access to deeply nested keys with dot notation: dot['deeply.nested.key']
Create, read, update and delete nested keys of any length
Expose all dictionary methods like .get, .pop, .keys and other
Access dicts in lists by index dot['parents.0.first_name']
key=value caching to speed up lookups and low down memory consumption
support for setting value in multidimensional lists
support for accessing lists with slices
Installation
pip install dotty-dict
Documentation
Full documentation: http://dotty-dict.readthedocs.io
Public API: http://dotty-dict.readthedocs.io/en/latest/api.html
Examples and usage ideas: http://dotty-dict.readthedocs.io/en/latest/examples.html
TODO
Waiting for your feature requests ;)
Quick Example
Create new dotty using factory function.
>>> from dotty_dict import dotty
>>> dot = dotty({'plain': {'old': {'python': 'dictionary'}}})
>>> dot['plain.old']
{'python': 'dictionary'}
You can start with empty dotty
>>> from dotty_dict import dotty
>>> dot = dotty()
>>> dot['very.deeply.nested.thing'] = 'spam'
>>> dot
Dotty(dictionary={'very': {'deeply': {'nested': {'thing': 'spam'}}}}, separator='.', esc_char='\\')
>>> dot['very.deeply.spam'] = 'indeed'
>>> dot
Dotty(dictionary={'very': {'deeply': {'nested': {'thing': 'spam'}, 'spam': 'indeed'}}}, separator='.', esc_char='\\')
>>> del dot['very.deeply.nested']
>>> dot
Dotty(dictionary={'very': {'deeply': {'spam': 'indeed'}}}, separator='.', esc_char='\\')
>>> dot.get('very.not_existing.key')
None
NOTE: Using integer in dictionary keys will be treated as embedded list index.
Install for development
Install dev dependencies
$ make install
Testing
$ make test
Or full tests with TOX:
$ make test-all
Limitations
In some very rare cases dotty may not work properly.
When nested dictionary has two keys of different type, but with the same value. In that case dotty will return dict or list under random key with passed value.
Keys in dictionary may not contain dots. If you need to use dots, please specify dotty with custom separator.
Nested keys may not be bool type. Bool type keys are only supported when calling keys with type defined value (e.g. dot[True], dot[False]).
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
Built Distribution
File details
Details for the file dotty_dict-1.3.1.tar.gz
.
File metadata
- Download URL: dotty_dict-1.3.1.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.14 CPython/3.8.10 Linux/5.10.60.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b016e03b8ae265539757a53eba24b9bfda506fb94fbce0bee843c6f05541a15 |
|
MD5 | 062b7927dc2fbbb3b8feff260f939d7d |
|
BLAKE2b-256 | 6aab88d67f02024700b48cd8232579ad1316aa9df2272c63049c27cc094229d6 |
File details
Details for the file dotty_dict-1.3.1-py3-none-any.whl
.
File metadata
- Download URL: dotty_dict-1.3.1-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.14 CPython/3.8.10 Linux/5.10.60.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5022d234d9922f13aa711b4950372a06a6d64cb6d6db9ba43d0ba133ebfce31f |
|
MD5 | 0a8b6c90e6f991d4389de72774c5b181 |
|
BLAKE2b-256 | 1a91e0d457ee03ec33d79ee2cd8d212debb1bc21dfb99728ae35efdb5832dc22 |