Skip to content

Instantly share code, notes, and snippets.

@agarciadelrio
Created June 14, 2012 18:55
Show Gist options
  • Save agarciadelrio/2932196 to your computer and use it in GitHub Desktop.
Save agarciadelrio/2932196 to your computer and use it in GitHub Desktop.
Python
class Item:
def __init__(self, **args):
self.__dict__.update(args)
i = Item(foo=1, bar=2)
print i.bar
# 2
print i.foo
# 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment