EasyDict EasyDict It allows to access dict values as attributes. Very useful when exploiting parsed JSON content . from easydict import EasyDict as edict d = edict({'foo':3, 'bar':{'x':1, 'y':2}}) d.foo >>> 3 d.bar.x >>> 1 d = edict(foo=3) d.foo >>> 3 Analyze Data/Python Libraries 2023.10.18