[Feature] Add repr to mopy
the classes in model exports to python are missing _repr_ for class functions such as State. A simple definition such as:
def __repr__(self): return self.__str__()
should already work wonders. _repr_() is used by python's debugger