``` >>>config = figgy.make(data=template) >>>config {'./config.json': {'key': 'value'}} >>>config.update('key', 'newvalue') >>>config {'./config.json': {'key': 'newvalue'}} >>>config.clear() {'./config.json': {}} ```