I need to assign a value to a Model property but its name is not known
until runtime. For illustrative purposes, say
class Story(db.Model):
title = db.StringProperty()
body = db.TextProperty()
s = Story(title="The Three Little Pigs")
Since I wanted to decide on the property name at runtime, I wrote:
cmd = 's.%s = %s' % ('body', '"Once upon a time..."')
exec(cmd)
I shouldn't have to use exec. There has to be a better way of
assigning values to properties.
Any suggestions?
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.