python 把數據 json格式輸出


 

 

有個要求需要在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了。

 

 

參考資料:

 

http://liuzhijun.iteye.com/blog/1859857

http://docs.python.org/2/library/json.html

http://www.cnblogs.com/coser/archive/2011/12/14/2287739.html
http://pymotw.com/2/json/


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM