Traversing through a nested/multi-layer data structure is commonplace when writing code that handles data, and is also a fun coding problem!
I find that its nice to start with a very simple solution that works, before thinking of other more difficult solutions
def fetch(data: dict, path: tuple):
current = data
for k in path:
current = current[k]
return current
Let’s create a dictionary, and then try to get a nested value
In [2]: d = {'a': {'b': {'c': 'd', 'x': 'y'}}}
In [3]: fetch(d, ('a', 'b', 'x'))
Out[3]: 'y'
from functools import reduce
def fetch(data: dict, path: tuple):
return reduce(lambda d, key: d.get(key), path, data)
However, this method doesn’t perform so nicely when the provided path isn’t 100% correct
def fetch(data: dict, path: tuple):
return reduce(lambda d, key: d.get(key) if isinstance(d, dict) else None, path, data)
Now our line is too long! We could extract out the value grabbing to improve this
def fetch(data: dict, path: tuple):
def safe_fetch(obj, key):
if isinstance(obj, dict):
return obj.get(key)
return reduce(lambda d, key: safe_fetch(d, key), path, data)
This method returns None
if the path is incorrect, or if any element along the path was not a dictionary
In [6]: fetch(d, ('z', 'b'))
In [7]: fetch(d, ('a', 'z'))
# Let's add some array brackets around the innermost dict
In [8]: d = {'a': {'b': [{'c': 'd', 'x': 'y'}]}}
In [9]: fetch(d, ('a', 'b', 'c'))
JQ is a great tool for manipulating or extracting JSON data on the command line, and it works in python too!
This allows us to make a path for any value, including support for lists/arrays, e.g.
`.a.b[0].x
In [1]: import jq
In [2]: d = {'a': {'b': [{'c': 'd', 'x': 'y'}]}}
In [3]: jq.compile('.a.b[0].x').input(d).first()
Out[3]: 'y'
No article on nested dictionary traveral would be complete without a recursive implementation!
def fetch(data, i, path):
print(f'{path=}, {i=}, {data=}')
if i == len(path):
return data
elif isinstance(data, list)
if not isinstance(path[i], int):
raise KeyError(
f'Key for nested list must be an int! '
f'key: "{path[i]}, nested element: "{data}"'
)
elif isinstance(data, (dict, list)):
return fetch(data[path[i]], i+1, path)
else:
raise ValueError(f'unable to recurse past "{path[i]}"')
Let’s add some more robust error handling
def fetch(data, path, i=0, debug=False):
if i == len(path):
return data
key = path[i]
if debug:
print(f'{path=}, {i=}, {key=}, {data=}')
elif isinstance(data, list):
if not isinstance(key, int):
raise KeyError(
f'list index must be an int: {key=}, {path=}'
)
elif key >= len(data):
raise IndexError(f'list index out of range: {key=}, {path=}, {data=}')
return fetch(data[key], path, i+1, debug)
elif isinstance(data, dict):
if key not in data:
raise KeyError(f'nested key not found: {key=}, {path=}')
return fetch(data[key], path, i+1, debug)
else:
raise ValueError(f'unable to fetch next key in path: {key=}, {path=}')
In [17]: path_tests = {
...: 'valid1': ('a', 'b', 0, 'c'),
...: 'valid2': ('a', 'b', 0, 'x'),
...: 'dict_key_error1': ('z', 'b'),
...: 'dict_key_error2': ('a', 'b', 0, '!'),
...: 'list_index_error1': ('a', 'b', 1),
...: 'list_index_error2': ('a', 'b', 's'),
...: 'path_too_long_error': ('a', 'b', 0, 'c', 'another'),
...: }
In [18]: for k, path in path_tests.items():
...: try:
...: print(f'\ntesting "{k}"')
...: result = fetch(d, path)
...: print(f'- success! {result=}')
...: except Exception as e:
...: print(f'- failed! {e=}')
...:
testing "valid1"
- success! result='d'
testing "valid2"
- success! result='y'
testing "dict_key_error"
- failed! e=KeyError("nested key not found: key='z', path=('z', 'b')")
testing "nested_dict_key_error"
- failed! e=KeyError("nested key not found: key='!', path=('a', 'b', 0, '!')")
testing "nested_list_index_error1"
- failed! e=IndexError("list index out of range: key=1, path=('a', 'b', 1), data=[{'c': 'd', 'x': 'y'}]")
testing "nested_list_index_error2"
- failed! e=KeyError("list index must be an int: key='s', path=('a', 'b', 's')")
testing "path_too_long_error"
- failed! e=ValueError("unable to fetch next key in path: key='another', path=('a', 'b', 0, 'c', 'another')")
In conclusion, use jq! It’s a powerful tool and langauage that you can use with most other languages and environments
https://stedolan.github.io/jq/