reddit-image-wall-getter/reddit_imgs/system/objectify.py
2017-12-29 20:54:22 -02:00

7 lines
180 B
Python

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