Skip to content

Instantly share code, notes, and snippets.

@redraw
Created December 1, 2018 16:57
Show Gist options
  • Select an option

  • Save redraw/f5ac371a407a84b8667edff1c28bd9bf to your computer and use it in GitHub Desktop.

Select an option

Save redraw/f5ac371a407a84b8667edff1c28bd9bf to your computer and use it in GitHub Desktop.
class AttrDict(dict):
def __getattr__(self, value):
if not value in dir(self) and value in self:
return self[value]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment