Created
August 2, 2023 16:15
-
-
Save colllin/fbe63d343def17eb2354f952cc3b1dfb to your computer and use it in GitHub Desktop.
dotdict.py — Simple dot-notation access for python dicts.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copied from: https://stackoverflow.com/a/23689767 | |
class dotdict(dict): | |
"""dot.notation access to dictionary attributes""" | |
__getattr__ = dict.get | |
__setattr__ = dict.__setitem__ | |
__delattr__ = dict.__delitem__ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment