Skip to content

Instantly share code, notes, and snippets.

@maxp
Created January 11, 2011 07:45
Show Gist options
  • Select an option

  • Save maxp/774172 to your computer and use it in GitHub Desktop.

Select an option

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