Access Python dict using dot notation
Recently, an addition to Python 3.12 might be reverted in cpython#105948, where a new json.AttrDict
class could enable accessing a dict using dot notation using a json.load
hook.
But as pointed out in a related issue thread, this is already possible using the standard library's SimpleNamespace
.