Skip to content

Instantly share code, notes, and snippets.

@mdornseif
Created August 17, 2010 14:10
Show Gist options
  • Save mdornseif/530082 to your computer and use it in GitHub Desktop.
Save mdornseif/530082 to your computer and use it in GitHub Desktop.
# Irgendwo hatten wir dieses snippet in eleganter = aber wo?
class DictObj(object):
def __init__(self, d):
self.d = d
def __getattr__(self, m):
return self.d.get(m, None)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment