Is there a library method to copy all the properties between two (already present) instances of the same class, in Python?
I mean, something like Apache Commons\'
Try destination.__dict__.update(source.__dict__).
destination.__dict__.update(source.__dict__)