有個要求需要在python的標準輸出時候顯示json格式資料,如果縮排顯示查看資料效果會很好,這裡使用json的包會有很多操作
import json date = {u'versions': [{u'status': u'CURRENT', u'id': u'v2.3', u'links': [{u'href': u'http://controller:9292/v2/', u'rel': u'self'}]}, {u'status': u'SUPPORTED', u'id': u'v2.2', u'links': [{u'href': u'http://controller:9292/v2/', u'rel': u'self'}]}, {u'status': u'SUPPORTED', u'id': u'v2.1', u'links': [{u'href': u'http://controller:9292/v2/', u'rel': u'self'}]}, {u'status': u'SUPPORTED', u'id': u'v2.0', u'links': [{u'href': u'http://controller:9292/v2/', u'rel': u'self'}]}, {u'status': u'SUPPORTED', u'id': u'v1.1', u'links': [{u'href': u'http://controller:9292/v1/', u'rel': u'self'}]}, {u'status': u'SUPPORTED', u'id': u'v1.0', u'links': [{u'href': u'http://controller:9292/v1/', u'rel': u'self'}]}]} print json.dumps(data, sort_keys=True, indent=2) # 排序並且縮排兩個字元輸出
這樣就會得到如下的輸出:
{ "versions": [ { "id": "v2.3", "links": [ { "href": "http://controller:9292/v2/", "rel": "self" } ], "status": "CURRENT" }, { "id": "v2.2", "links": [ { "href": "http://controller:9292/v2/", "rel": "self" } ], "status": "SUPPORTED" }, { "id": "v2.1", "links": [ { "href": "http://controller:9292/v2/", "rel": "self" } ], "status": "SUPPORTED" }, { "id": "v2.0", "links": [ { "href": "http://controller:9292/v2/", "rel": "self" } ], "status": "SUPPORTED" }, { "id": "v1.1", "links": [ { "href": "http://controller:9292/v1/", "rel": "self" } ], "status": "SUPPORTED" }, { "id": "v1.0", "links": [ { "href": "http://controller:9292/v1/", "rel": "self" } ], "status": "SUPPORTED" } ]}
可以看到都已經格式化了。
這是在python中,如果直接使用命令列,希望直接轉換,可以使用 data | python -mjson.tool 來輸出json格式的資料
echo '{"first_key": "value", "second_key": "value2"}' | python -mjson.tool
比如想直接在命令列中過濾得到first_key對於的值,那麼這樣即可:
echo '{"first_key": "value", "second_key": "value2"}' | python -c 'import sys, json; print json.load(sys.stdin)[sys.argv[1]]' first_key
就會得到對於的value了。
以上就是小編為大家帶來的python 把資料 json格式輸出的執行個體代碼全部內容了,希望大家多多支援雲棲社區~