1

How can I copy an entity created from my Geo model:

class Geo(db.Model):
    title = db.StringProperty()
    link = db.StringProperty()
    updated = db.DateTimeProperty(auto_now =True)
    author = db.ReferenceProperty(MyUser)
    id = db.StringProperty()
    entry = db.ListProperty(db.Key)
JM Gelilio
  • 3,482
  • 1
  • 11
  • 23
zjm1126
  • 63,397
  • 81
  • 173
  • 221
  • 4
    This question is already answered by this one: http://stackoverflow.com/questions/2687724/copy-an-entity-in-google-app-engine-datastore-in-python-without-knowing-property – David Underhill Jul 17 '10 at 01:32
  • Does this answer your question? [Copy an entity in Google App Engine datastore in Python without knowing property names at 'compile' time](https://stackoverflow.com/questions/2687724/copy-an-entity-in-google-app-engine-datastore-in-python-without-knowing-property) – max Jan 07 '22 at 19:10

0 Answers0