如何在谷歌应用程序引擎中使用 json 模块?
Possible Duplicate:
How can I parse JSON in Google App Engine?
json module was added in python 2.6 but GAE supports 2.5 only.
How can I use it there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
好吧,你不能使用标准的 python 库,你必须使用一些第三方库,例如
至少 simplejson 适用于 python 2.4
Well you wotn be able to use the standard python library, you will have to use some third party lib such as
At least simplejson works on python 2.4
您可以尝试使用
yaml
模块(包含在 GAE 中)作为 JSON 解析器。最近版本中的 YAML 是 JSON 的超集。You can try using
yaml
module (which is included in GAE) as JSON parser. YAML in recent version is superset of JSON.您可以尝试使用 django.utils.simplejson
You can try using django.utils.simplejson