Skip to content

Instantly share code, notes, and snippets.

@goddoe
Created September 20, 2018 07:21
Show Gist options
  • Select an option

  • Save goddoe/51bf11d51d12524f8514c9750587b063 to your computer and use it in GitHub Desktop.

Select an option

Save goddoe/51bf11d51d12524f8514c9750587b063 to your computer and use it in GitHub Desktop.
DataContainer
class DataContainer(object):
def __init__(self, **kwargs):
for key, val in kwargs.items():
setattr(self, key, val)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment