[google-appengine] Re: dynamic properties

2009-04-07 Thread Barry Hunter
have you looked at http://code.google.com/appengine/docs/python/datastore/expandoclass.html On 07/04/2009, GTako wrote: > > i want to create entities by name(kind) and with APE properties type. > > the code bellow solved only 1 part of the problem: > e = datastore.Entity(kind='test') > e['

[google-appengine] Re: dynamic properties

2009-04-08 Thread GTako
i know about the expando but when i use e = datastore.Entity(kind='test') the entity is not Expando, so i can't use it. i want to define both the entity and its properties at run time and i want the properties to be of GAE types. can it be done? On Apr 7, 6:43 pm, Barry Hunter wrote: > have you