I\'ve been searching 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)
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())