vote up 2 vote down star
3

I've been search for quite a while with no success. My project isn't using Django, is there a simple way to serialize App Engine models (google.appengine.ext.db.Model) into JSON or do I need to write my own serializer? My model class is fairly simple. For instance:

class Photo(db.Model):
filename = db.StringProperty()
title = db.StringProperty()
description = db.StringProperty(multiline=True)
date_taken = db.DateTimeProperty()
date_uploaded = db.DateTimeProperty(auto_now_add=True)
album = db.ReferenceProperty(Album, collection_name='photo')

Thanks in advance.

flag
good question. I've had the same issue – George Oct 8 at 15:58

5 Answers

vote up 4 vote down check

A simple recursive function can be used to convert an entity (and any referents) to a nested dictionary that can be passed to simplejson:

import datetime
import time

SIMPLE_TYPES = (int, long, float, bool, dict, basestring, list)

def to_dict(model):
    output = {}

    for key, prop in model.properties().iteritems():
        value = getattr(model, key)

        if value is None or isinstance(value, SIMPLE_TYPES):
            output[key] = value
        elif isinstance(value, datetime.date):
            # Convert date/datetime to ms-since-epoch ("new Date()").
            ms = time.mktime(value.utctimetuple()) * 1000
            ms += getattr(value, 'microseconds', 0) / 1000
            output[key] = int(ms)
        elif isinstance(value, db.Model):
            output[key] = to_dict(value)
        else:
            raise ValueError('cannot encode ' + repr(prop))

    return output
link|flag
1  
There is a small mistake in the code: Where you have "output[key] = to_dict(model)" it should be: "output[key] = to_dict(value)". Besides that it's perfect. Thanks! – arikfr Nov 7 at 22:02
Thanks @arikfr! – David Wilson Nov 17 at 20:14
vote up 3 vote down

For simple cases, I like the approach advocated here at the end of the article:

  # after obtaining a list of entities in some way, e.g.:
  user = users.get_current_user().email().lower();
  col = models.Entity.gql('WHERE user=:1',user).fetch(300, 0)

  # ...you can make a json serialization of name/key pairs as follows:
  json = simplejson.dumps(col, default=lambda o: {o.name :str(o.key())})

The article also contains, at the other end of the spectrum, a complex serializer class that enriches django's (and does require _meta -- not sure why you're getting errors about _meta missing, perhaps the bug described here) with the ability to serialize computed properties / methods. Most of the time you serialization needs lay somewhere in between, and for those an introspective approach such as @David Wilson's may be preferable.

link|flag
vote up 2 vote down

You don't need to write your own "parser" (a parser would presumably turn JSON into a Python object), but you can still serialize your Python object yourself.

Using simplejson:

import simplejson as json
serialized = json.dumps({
    'filename': self.filename,
    'title': self.title,
    'date_taken': date_taken.isoformat(),
    # etc.
})
link|flag
Yes, but I don't want to have to do this for every model. I'm trying to find a scalable approach. – unknown (google) Oct 7 at 14:07
oh and i'm really surprised that I can't find any best practices on this. I thought app engine model + rpc + json was a given... – unknown (google) Oct 7 at 14:13
vote up 1 vote down

Even if you are not using django as a framework, those libraries are still available for you to use.

from django.core import serializers
data = serializers.serialize("xml", Photo.objects.all())
link|flag
Did you mean serializers.serialize("json", ...)? That throws "AttributeError: 'Photo' object has no attribute '_meta'". FYI - serializers.serialize("xml", Photo.objects.all()) throws "AttributeError: type object 'Photo' has no attribute 'objects'". serializers.serialize("xml", Photo.all()) throws "SerializationError: Non-model object (<class 'model.Photo'>) encountered during serialization". – unknown (google) Oct 7 at 13:57
vote up 1 vote down

If you use app-engine-patch it will automatically declare the _meta attribute for you, and then you can use django.core.serializers as you would normally do on django models (as in sledge's code).

App-engine-patch has some other cool features such has an hybrid authentication (django + google accounts), and the admin part of django works.

link|flag
what's the difference between app-engine-patch vs google-app-engine-django vs the django version shipped with app engine python sdk? From what I understand, app-engine-patch is more complete? – unknown (google) Oct 8 at 2:46
I haven't tried the version of django on app engine, but I think it's integrated as is. google-app-engine-django if I'm not mistaken tries to make django's model work with app-engine (with some limitations). app-engine-patch uses directly app-engine models, they just add some minore stuffs to it. There is a comparison between the two on their website. – mtourne Oct 8 at 17:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.