Skip to main content

Wrapper for the dict class that extends the functionality for nested dicts including navigating using keypaths and nested key searching. This includes mixed dicts and lists.

Project description

Nested Dictionary

Version: 1.2.2

A wrapper for python dicts that allows you to search and navigate through nested dicts using key paths. Also works with mixed dictionaries (mixuture of nested lists and dicts). Derived from a need to search for keys in a nested dictionary; too much time was spent on building yet another full class for nested dictionaries, but it suited our needs.

Quick Start Example:

>>> from nesteddictionary import NestedDict     #import the NestedDict class
>>> d = {'path':{'to':{'key':'val'}}}           #normal way of doing nested dictionary
>>> nested_dict = NestedDict( d )               #created a nested dictionary from a normal dictionary

Features:

  • Uses keypaths in subscripting to navigate nested dictionaries ( ex: nested_dict[ ['path','to','key'] ] which is the same as nested_dict['path']['to']['key'] )
  • Adds functionality without violating any existing dict operations (that I know of); keypaths are in the form of a list which cannot be used as a key for a normal dict anyway. All other dict rules still apply.
  • findall method: Finds all nested keys within a nested dictionary.
  • get and set methods: Navigate using a keypath string with seperator ( ex: nested_dict.get('path.to.key') )
  • insert method: create a full path to a nested key and set a value, even if the parent keys leading to the destination key don't already exist ( i.e., nested_dict.insert( ['newpath','to','key'], 'newval' ) will add to the existing dictionay, resulting in: NestedDict({ 'path':{'to':{'key':'val'}}, 'newpath':{'to':{'key':'newval'}} }) ).

Limitations:

  • While fast, it adds some overhead and therefore cannot ever be as fast as accessing dicts the regular way.

Changes (PEP 440: major.minor.patch):

  • v0.1.0: Developed methods for searching keys in nested dictionaries.
  • v1.0.1: Initial working version of the nesteddictionary class.
  • v1.2.0: Changed dictionary traversing from recursive to functools.reduce; This is less pythonic yet faster (however, still not nearly as fast as directly accessing dicts and list).
  • v1.2.2: Minor patch - removes a debugging print statement in the get method.

For comparison, when doing (these are not included in tests, but are easy enough to write and test on your own):

>>> d = [{1:{2:'value'}}]   
>>> %timeit using_reduce(d,[0,1,2])     #reduce from functools
>>> %timeit using_recursion(d,[0,1,2])  #what was used in v1, more pythonic
>>> %timeit d[0][1][2]                  #direct access; fastest

Yields:

>>> 648 ns ± 3.17 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)    #reduce
>>> 1.77 µs ± 4.05 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)   #recursion
>>> 89.3 ns ± 0.448 ns per loop (mean ± std. dev. of 7 runs, 10000000 loops each) #direct

References:

  • Scalpl: A similar implementation to nested dictionaries. Some good methodology here.
  • Functools Reduce for dicts: Speed up dictionary acces, but non-pythonic.
  • Others I'm sure I forgot to mention. Thank you.

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

nesteddictionary-1.2.2.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

nesteddictionary-1.2.2-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file nesteddictionary-1.2.2.tar.gz.

File metadata

  • Download URL: nesteddictionary-1.2.2.tar.gz
  • Upload date:
  • Size: 7.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for nesteddictionary-1.2.2.tar.gz
Algorithm Hash digest
SHA256 ae067b75971eb95be49595dc4b651c2c8c389b61e58cdf38d2e1cb27089401ad
MD5 57d2cabe4c4c52bc29aa223e6deff731
BLAKE2b-256 4b017c3f6b3c61ed18872d68739c94dce451cb6bcbc5d88f6121e0f812bf677d

See more details on using hashes here.

File details

Details for the file nesteddictionary-1.2.2-py3-none-any.whl.

File metadata

File hashes

Hashes for nesteddictionary-1.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1a5bf8629e4f9f21a33a09ef08baf5cf8c8ea488d4d4e52584f5860a9cc6ce73
MD5 8e2a46acd195bba6f1b642f16cae5021
BLAKE2b-256 487d3591b93ca99d0ca6bb671857a1996e4545833a3fb6831340d44fb96afa99

See more details on using hashes here.

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