我有一个仅包含 JSON 字典的 JSON 文件(例如: http: //www.collegeswimming.com/results/17172/event/4/)。Python中是否有任何模块可以轻松地将其转换为我可以在Python中使用的对象?
问问题
258 次
2 回答
5
Python 的 JSON 解析器http://docs.python.org/2/library/json.html
>>> import json
>>> json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]')
[u'foo', {u'bar': [u'baz', None, 1.0, 2]}]
>>> json.loads('"\\"foo\\bar"')
u'"foo\x08ar'
>>> from StringIO import StringIO
>>> io = StringIO('["streaming API"]')
>>> json.load(io)
[u'streaming API']
于 2013-02-28T01:22:17.413 回答
5
顺便说一下,这就是所谓的 JSON。它不是 JavaScript。恰当地,该模块被称为json
.
试试看json.loads
!
于 2013-02-28T01:22:25.360 回答