Google App Engine (GAE/P) でjsonを出力する。

python2.6からは標準でjsonが実装されているが、GAEはpython2.5なので、djangoに含まれるsimplejsonをimport。
日本語を含む場合、文字化けするのを防ぐために、ensure_ascii = Falseを付ける。

from django.utils import simplejson 
data = [] 
json = simplejson.dumps(data, ensure_ascii=False) 
self.response.content_type = 'application/json' 
self.response.out.write(json)