Skip to content

Instantly share code, notes, and snippets.

@exallium
Created August 30, 2012 01:41
Show Gist options
  • Save exallium/3521528 to your computer and use it in GitHub Desktop.
Save exallium/3521528 to your computer and use it in GitHub Desktop.
Wrapper Class
class Wrapper(object):
def __init__(self, **kwargs):
for key, value in kwargs.items():
setattr(self, key, value)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment