In a Python Google App Engine app I\'m writing, I have an entity stored in the datastore that I need to retrieve, make an exact copy of it (with the exception of the key), a
If you're using the NDB you can simply copy with: new_entity.populate(**old_entity.to_dict())
new_entity.populate(**old_entity.to_dict())