vote up 1 vote down star
1
  • Is it possible to use Django serializer without a Model?
  • How it is done?
  • Will it work with google-app-engine?

I don't use Django framework, but since it is available, I would want to use its resources here and there. Here is the code I tried:

from django.core import serializers
obj = {'a':42,'q':'meaning of life'}
serialised = serializers.serialize('json', obj)

this generates an error

ERROR ... __init__.py:385] 'str' object has no attribute '_meta'
flag

25% accept rate

2 Answers

vote up 11 vote down

Serializers are only for models. Instead you can use simplejson bundled with Django.

from django.utils import simplejson
json_str = simplejson.dumps(my_object)

Simplejson 2.0.9 docs are here.

link|flag
+1: And you can read about simplejson implementation at simplejson.googlecode.com/svn/tags/… – S.Lott Jun 17 at 10:26
Thanks for the link @S.Lott – muhuk Jun 17 at 12:14
vote up 0 vote down

The GQLEncoder class in this library can take a db.Model entity and serialize it. I'm not sure if this is what you're looking for, but it's been useful to me.

link|flag

Your Answer

Get an OpenID
or

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