📅  最后修改于: 2020-11-13 05:10:44             🧑  作者: Mango
本章介绍如何使用Python编程语言编码和解码JSON对象。让我们从准备环境开始,以使用Python进行JSON编程。
在开始使用Python编码和解码JSON之前,您需要安装任何可用的JSON模块。在本教程中,我们已下载并安装Demjson ,如下所示:
$tar xvfz demjson-1.6.tar.gz
$cd demjson-1.6
$python setup.py install
Function | Libraries |
---|---|
encode | Encodes the Python object into a JSON string representation. |
decode | Decodes a JSON-encoded string into a Python object. |
Python encode()函数将Python对象编码为JSON字符串表示形式。
demjson.encode(self, obj, nest_level=0)
以下示例显示了使用Python的JSON下的数组。
#!/usr/bin/python
import demjson
data = [ { 'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'e' : 5 } ]
json = demjson.encode(data)
print json
在执行时,这将产生以下结果-
[{"a":1,"b":2,"c":3,"d":4,"e":5}]
Python可以使用demjson.decode()函数来解码JSON。此函数将从json解码的值返回给适当的Python类型。
demjson.decode(self, txt)
以下示例显示了如何使用Python解码JSON对象。
#!/usr/bin/python
import demjson
json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
text = demjson.decode(json)
print text
执行时,将产生以下结果-
{u'a': 1, u'c': 3, u'b': 2, u'e': 5, u'd': 4}