I want to have simple representation of any class, like { property = value }, is there auto __repr__?
{ property = value }
__repr__
Simplest way:
def __repr__(self): return str(self.__dict__)