Python JSON

python json

本章節(jié)我們將為大家介紹如何使用 python 語言來編碼和解碼 json 對象。

json(javascript object notation) 是一種輕量級的數(shù)據(jù)交換格式,易于人閱讀和編寫。

 

1. json 函數(shù)

使用 json 函數(shù)需要導(dǎo)入 json 庫:import json。

函數(shù)描述
json.dumps 將 python 對象編碼成 json 字符串
json.loads將已編碼的 json 字符串解碼為 python 對象

 

2. json.dumps

json.dumps 用于將 python 對象編碼成 json 字符串。

語法

json.dumps(obj, skipkeys=false, ensure_ascii=true, check_circular=true, allow_nan=true, cls=none, indent=none, separators=none, encoding="utf-8", default=none, sort_keys=false, **kw)

實例

以下實例將數(shù)組編碼為 json 格式數(shù)據(jù):

#!/usr/bin/python
import json

data = [ { 'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'e' : 5 } ]

data2 = json.dumps(data)
print(data2)

以上代碼執(zhí)行結(jié)果為:

[{"a": 1, "c": 3, "b": 2, "e": 5, "d": 4}]

使用參數(shù)讓 json 數(shù)據(jù)格式化輸出:

 
#!/usr/bin/python
import json

data = [ { 'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'e' : 5 } ]

data2 = json.dumps({'a': 'yapf', 'b': 7}, sort_keys=true, indent=4, separators=(',', ': '))
print(data2)

以上代碼執(zhí)行結(jié)果為:

{
    "a": "yapf",
    "b": 7
}

python 原始類型向 json 類型的轉(zhuǎn)化對照表:

python json
dict object
list, tuple array
str, unicode string
int, long, float number
true true
false false
none null

 

3. json.loads

json.loads 用于解碼 json 數(shù)據(jù)。該函數(shù)返回 python 字段的數(shù)據(jù)類型。

語法

json.loads(s[, encoding[, cls[, object_hook[, parse_float[, parse_int[, parse_constant[, object_pairs_hook[, **kw]]]]]]]])

實例

以下實例展示了python 如何解碼 json 對象:

#!/usr/bin/python
import json

jsondata = '{"a":1,"b":2,"c":3,"d":4,"e":5}';

text = json.loads(jsondata)
print(text)

以上代碼執(zhí)行結(jié)果為:

{u'a': 1, u'c': 3, u'b': 2, u'e': 5, u'd': 4}

json 類型轉(zhuǎn)換到 python 的類型對照表:

json python
object dict
array list
string unicode
number (int) int, long
number (real) float
true true
false false
null none

更多內(nèi)容參考:https://docs.python.org/2/library/json.html。

 

4. 使用第三方庫:demjson

demjson 是 python 的第三方模塊庫,可用于編碼和解碼 json 數(shù)據(jù),包含了 jsonlint 的格式化及校驗功能。

github 地址:https://github.com/dmeranda/demjson

官方地址:http://deron.meranda.us/python/demjson/

環(huán)境配置

在使用 demjson 編碼或解碼 json 數(shù)據(jù)前,我們需要先安裝 demjson 模塊。本教程我們會下載 demjson 并安裝:

$ tar -xvzf demjson-2.2.3.tar.gz
$ cd demjson-2.2.3
$ python setup.py install

更多安裝介紹查看:http://deron.meranda.us/python/demjson/install

 

5. json 函數(shù)

函數(shù)描述
encode 將 python 對象編碼成 json 字符串
decode將已編碼的 json 字符串解碼為 python 對象

 

6. encode

python encode() 函數(shù)用于將 python 對象編碼成 json 字符串。

語法

demjson.encode(self, obj, nest_level=0)

實例

以下實例將數(shù)組編碼為 json 格式數(shù)據(jù):

 
#!/usr/bin/python
import demjson

data = [ { 'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'e' : 5 } ]

json = demjson.encode(data)
print(json)

以上代碼執(zhí)行結(jié)果為:

[{"a":1,"b":2,"c":3,"d":4,"e":5}]

 

7. decode

python 可以使用 demjson.decode() 函數(shù)解碼 json 數(shù)據(jù)。該函數(shù)返回 python 字段的數(shù)據(jù)類型。

語法

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)

以上代碼執(zhí)行結(jié)果為:

{u'a': 1, u'c': 3, u'b': 2, u'e': 5, u'd': 4}
相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频