[google-appengine] Storing properties dict as db.Model field

2010-12-16 Thread Justin
What's the approved way of doing this ? I don't want the overhead of creating a separate db model. I don't see a db.DictProperty [equivalent of db.ListProperty]. Right now I use a db.TextProperty, and serialise/deserialise the dict with yaml. I'm guessing this isn't the 'approved' way of doing

Re: [google-appengine] Storing properties dict as db.Model field

2010-12-16 Thread Sahid Orentino Ferdjaoui
Hello Justin, You can you refer to jaikuengine: http://code.google.com/p/jaikuengine/source/browse/trunk/common/properties.py?r=153#62 --Sahid On Thu, Dec 16, 2010 at 3:57 PM, Justin wrote: > What's the approved way of doing this ? > > I don't want the overhead of creating a separate db mod