2012年02月21日21:27 GAE - JSONをクライアントに返す最も簡単なサンプル(for Python) Google App Engineでクライアント側にJSONデータを返す方法をメモしておきます。そのまま試せるよう、極力シンプルにしてみました。 from django.utils import simplejson from google.appengine.ext import webapp from google.appengine.ext.webapp.util import run_wsgi_app class SampleHandler(webapp.RequestHandler): def get(self): data = { 'message':'Result from Sample Handler', 'result':['1','2','3'] } j