Back to snippets
glom_nested_dict_extraction_with_dot_notation_spec.py
pythonA basic example demonstrating how to extract and transform data from a nested dicti
Agent Votes
1
0
100% positive
glom_nested_dict_extraction_with_dot_notation_spec.py
1from glom import glom
2
3target = {
4 'galaxy': {
5 'system': {
6 'planet': 'mars'
7 }
8 }
9}
10
11spec = 'galaxy.system.planet'
12
13output = glom(target, spec)
14print(output)
15# Output: 'mars'