How to copy all properties of an object to another object, in Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T10:48:42Z http://stackoverflow.com/feeds/question/243836 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/243836/how-to-copy-all-properties-of-an-object-to-another-object-in-python 2 How to copy all properties of an object to another object, in Python? Joril 2008-10-28T15:58:11Z 2008-10-31T01:48:56Z <p>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' PropertyUtilsBean.copyProperties()</p> <p>Thanks!</p> http://stackoverflow.com/questions/243836/how-to-copy-all-properties-of-an-object-to-another-object-in-python/244116#244116 2 Answer by Peter Hoffmann for How to copy all properties of an object to another object, in Python? Peter Hoffmann 2008-10-28T17:16:27Z 2008-10-28T17:16:27Z <p>If your class does not modify _ _ getitem _ _ or _ _ setitem _ _ for special attribute access all your attributes are stored in _ _ dict _ _ so you can do:</p> <pre><code> nobj.__dict__ = oobj.__dict__.copy() # just a shallow copy </code></pre> <p>If you use python properties you should look at <code>inspect.getmembers()</code> and filter out the ones you want to copy.</p> http://stackoverflow.com/questions/243836/how-to-copy-all-properties-of-an-object-to-another-object-in-python/244654#244654 3 Answer by Peter Hosey for How to copy all properties of an object to another object, in Python? Peter Hosey 2008-10-28T20:06:09Z 2008-10-28T20:06:09Z <p>Try <code>destination.__dict__.update(source.__dict__)</code>.</p> http://stackoverflow.com/questions/243836/how-to-copy-all-properties-of-an-object-to-another-object-in-python/244789#244789 1 Answer by J S for How to copy all properties of an object to another object, in Python? J S 2008-10-28T20:41:35Z 2008-10-28T20:41:35Z <p>I know you down-modded copy, but I disagree. It's more clear to make another copy than to modify the existing in-place with <strong>dict</strong> manipulation, as others suggested (if you lose existing copy by reassigning the variable, it will get garbage-collected immediately). Python is not meant to be fast, it's meant to be readable (though I actually believe that copy() will be faster than the other methods).</p> http://stackoverflow.com/questions/243836/how-to-copy-all-properties-of-an-object-to-another-object-in-python/248608#248608 0 Answer by Ali A for How to copy all properties of an object to another object, in Python? Ali A 2008-10-29T22:07:04Z 2008-10-29T22:07:04Z <p>At the risk of being modded down, is there <strike>a decent</strike> any use-case for this? </p> <p>Unless we know exactly what it's for, we can't sensibly call it as "broken" as it seems.</p> <p>Perhaps try this:</p> <pre><code>firstobject.an_attribute = secondobject.an_attribute firstobject.another_attribute = secondobject.another_attribute </code></pre> <p>That's the sane way of copying things between instances.</p> http://stackoverflow.com/questions/243836/how-to-copy-all-properties-of-an-object-to-another-object-in-python/252393#252393 1 Answer by Ali A for How to copy all properties of an object to another object, in Python? Ali A 2008-10-31T01:48:56Z 2008-10-31T01:48:56Z <p>If you have to do this, I guess the nicest way is to have a class attribute something like :</p> <pre><code>Class Copyable(object): copyable_attributes = ('an_attribute', 'another_attribute') </code></pre> <p>Then iterate them explicitly and use <code>setattr(new, attr, getattr(old, attr))</code>. I still believe it can be solved with a better design though, and don't recommend it.</p>