Right now I am currently just doing this:
self.response.headers['Content-Type'] = 'application/json'
self.response.out.write('{"success": "some var", "payload": "some var"}')
Is there a better way to do it using some library?
|
Right now I am currently just doing this: self.response.headers['Content-Type'] = 'application/json'
self.response.out.write('{"success": "some var", "payload": "some var"}')
Is there a better way to do it using some library? |
|||
|
|
Yes, you should use the json library that is supported in Python 2.7:
|
|||
|
|
|
python itself has a json module, which will make sure that your JSON is properly formatted, handwritten JSON is more prone to get errors.
|
|||||||||
|
|
http://webapp-improved.appspot.com/api/webapp2_extras/json.html
|
|||
|
|