python处理json

安装simplejson

centos可以使用yum安装 centos6和centos7包名不一样。

   #centos 6
      yum install python-simplejson -y
   #centos 7 
      yum install python2-simplejson -y

代码

#!/usr/bin/env python

import simplejson as json 

jsonobject = json.load(file('version.json')) 

print json.dumps(jsonobject,sort_keys=True,indent=2,item_sort_key=None)
Previous Post

psutil模块

Next Post

python计算目录剩余

Related Posts