diff options
author | Lei Yan | 2013-10-11 14:49:54 -0500 |
---|---|---|
committer | Lei Yan | 2013-10-11 14:49:54 -0500 |
commit | 79aed6879f138bb083af91f50cd4827789683062 (patch) | |
tree | 722be02d7f7ecbc7094a7519f59f6802e123fb97 /wqflask/utility | |
parent | 8a09358e98dbf88deb101d13107a40bac371de5c (diff) | |
parent | 38ae30a5fb46753a361e1c7454871430d7097c3b (diff) | |
download | genenetwork2-79aed6879f138bb083af91f50cd4827789683062.tar.gz |
Merge /home/sam/gene
Diffstat (limited to 'wqflask/utility')
-rwxr-xr-x | wqflask/utility/__init__.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/wqflask/utility/__init__.py b/wqflask/utility/__init__.py index d0e4a3fa..d9856eed 100755 --- a/wqflask/utility/__init__.py +++ b/wqflask/utility/__init__.py @@ -1,5 +1,6 @@ from pprint import pformat as pf +# Todo: Move these out of __init__ class Bunch(object): """Like a dictionary but using object notation""" @@ -10,3 +11,25 @@ class Bunch(object): return pf(self.__dict__) +class Struct(object): + '''The recursive class for building and representing objects with. + + From http://stackoverflow.com/a/6573827/1175849 + + ''' + + def __init__(self, obj): + for k, v in obj.iteritems(): + if isinstance(v, dict): + setattr(self, k, Struct(v)) + else: + setattr(self, k, v) + + def __getitem__(self, val): + return self.__dict__[val] + + def __repr__(self): + return '{%s}' % str(', '.join('%s : %s' % (k, repr(v)) for + (k, v) in self.__dict__.iteritems())) + + |