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 reco
Google App Engine now supports python 2.7. If using python 2.7, you can do the following:
import json structured_dictionary = json.loads(string_received)