You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Victor's research showed that tooling this is very popular in Python world and the implementation dates back quite far. At first I suggested I suggested extending SimpleNamespace(); instead, Guido recommended putting this is the JSON module which is where it would primarily be used:
with open('kepler.json') as f:
kepler = json.load(f, object_hook=AttrDict)
print(kepler.orbital_period.neptune)
AttrDictis used improve the readability of nested data access from JSON files. Compare:Victor's research showed that tooling this is very popular in Python world and the implementation dates back quite far. At first I suggested I suggested extending
SimpleNamespace(); instead, Guido recommended putting this is the JSON module which is where it would primarily be used:Linked PRs