Skip to content

Instantly share code, notes, and snippets.

@nimnes
Last active August 29, 2015 14:02
Show Gist options
  • Save nimnes/6a171ea8a8529086f8db to your computer and use it in GitHub Desktop.
Save nimnes/6a171ea8a8529086f8db to your computer and use it in GitHub Desktop.
class StructureModel
def __init__(self, file_name)
self.structure = json.read(file_name)
def get_structure()
return self.structure
def set_structure(structure_dict)
self.structure = structure_dict
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment