Forked from typerandom/python-convert-dictionary-to-object
Created
June 20, 2017 21:59
-
-
Save kkirsche/b835882134af0257c57b433d9a104ec0 to your computer and use it in GitHub Desktop.
Convert a dictionary to an object (recursive).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class DictionaryUtility: | |
""" | |
Utility methods for dealing with dictionaries. | |
""" | |
@staticmethod | |
def to_object(item): | |
""" | |
Convert a dictionary to an object (recursive). | |
""" | |
def convert(item): | |
if isinstance(item, dict): | |
return type('jo', (), {k: convert(v) for k, v in item.iteritems()}) | |
if isinstance(item, list): | |
def yield_convert(item): | |
for index, value in enumerate(item): | |
yield convert(value) | |
return list(yield_convert(item)) | |
else: | |
return item | |
return convert(item) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Another alternative:
pip install munch
Then: