I'd like to parse a JSON string into an object under Google App Engine (python). What do you recommend? Something to encode/stringify would be nice too. Is what you recommend built in, or a library that I have to include in my app? Is it secure? Thanks.

link|improve this question

67% accept rate
What version if Python is on your stack? – chuckharmston Jul 23 '09 at 13:13
I'm using app engine version 1, which should be python 2.5. – Nogwater Jul 23 '09 at 13:15
feedback

5 Answers

up vote 87 down vote accepted

Consider using Django's json lib, which is included with GAE.

from django.utils import simplejson as json

# load the object from a string
obj = json.loads( string )

The link above has examples of Django's serializer, and here's the link for simplejson's documentation.

If you're looking at storing Python class instances or objects (as opposed to compositions of lists, strings, numbers, and dictionaries), you probably want to look at pickle.

I hope that helps.

Incidentally, to get Django 1.0 (instead of Django 0.96) running on GAE, you can use the following call in your main.py, per this article:

from google.appengine.dist import use_library
use_library('django', '1.0')

Edit: Native JSON support in Google App Engine 1.6.0 with Python 2.7

As of Google App Engine 1.6.0, you can use the Python 2.7 runtime by adding runtime: python27 in app.yaml, and then you can import the native JSON library with import json.

link|improve this answer
Great answer, it helped me a lot. Just a comment here: When I use the import json feature, I get a 500 Server Error when deploying my app. But when I use the from django.utils import simplejson as json it works perfectly. – Jose Garrido Mar 3 at 12:55
feedback

Include the simplejson library with your app?

link|improve this answer
feedback

Google is currently using Python 2.5 on Google App Engine. However, GAE now supports python 2.7 as an experimental feature. If using python 2.7, you can do the following:

import json
out_json = json.dumps(in_dictionary_vals)
link|improve this answer
feedback

If you're using Python2.6 or greater, I've used with success the built-in json.load function. Otherwise, simplejson works on 2.4 without dependencies.

link|improve this answer
7  
AppEngine uses Python 2.5. You should not be developing using 2.6+. – Sridhar Ratnakumar Aug 25 '10 at 5:24
feedback

Look at the python section of json.org. The standard library support for JSON started at python 2.6, which I believe is newer than what the app engine provides. Maybe one of the other options listed?

link|improve this answer
4  
That's not really relevant to App Engine. – Tim McNamara Nov 5 '10 at 23:46
feedback

Your Answer

 
or
required, but never shown

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