reddit-image-wall-getter/reddit_imgs/system/objectify.py

7 lines
180 B
Python
Raw Normal View History

2017-12-29 22:54:22 +00:00
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
class objectify(object):
@property
def json(self): return self.__dict__
def __init__(self, data): self.__dict__ = data