Skip to content

Instantly share code, notes, and snippets.

@tjmehta
Created May 3, 2012 21:07
Show Gist options
  • Select an option

  • Save tjmehta/2589517 to your computer and use it in GitHub Desktop.

Select an option

Save tjmehta/2589517 to your computer and use it in GitHub Desktop.
bunch
class Bunch(dict):
def __init__(self, *args, **kwds):
super(Bunch, self).__init__(*args, **kwds)
self.__dict__ = self
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment