python json使用

#!/usr/bin/python
try:
  import json
except ImportError:
  import simplejson as json
import sys
if __name__=='__main__':
  compath=b"/LuoYun/conf/luoyun.conf"
  f=open(compath,"r")
  jsonstr=""
  for l in f.readlines():
    if l[:5]=='JSON=':
       jsonstr=l[5:]
       jsonstr.strip()
       break;
  f.close()
  if jsonstr:
    j=json.loads(jsonstr)
    print j.get("webssh")
    pass

 

posted @ 2013-04-03 15:31  glose  阅读(214)  评论(0编辑  收藏  举报