Misc

Reserved for small objects that are used throughout this framework.

AttrDict

This class wraps dict functionality and extends it so all values can also be retrieved as attributes.


source

AttrDict

 AttrDict (*args, **kwargs)

Access dictionary elements as attributes.

test_dict = AttrDict({"test1": "hello", "test2": "world"})
test_dict.test1, test_dict['test2']