python json simplejson

python安装:easy_install simplejson

导入模块:


import simplejson as json 

几个主要函数:dump,dumps,load,loads 带s跟不带s的区别是 带s的是对 字符串的处理,而不带 s的是对文件对像的处理。

json化python字典数据:


json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}]) 

'["foo", {"bar": ["baz", null, 1.0, 2]}]' 

 print json.dumps("\"foo\bar") 
 "\"foo\bar" 

sort_keys设置是否排序字典:


print json.dumps({"c": 0, "b": 0, "a": 0}, sort_keys=True) 
{"a": 0, "b": 0, "c": 0} 

创建文件流对象:


from StringIO import StringIO 
io = StringIO() 

把 json编码数据导向到此文件对象:


json.dump(['streaming API'], io) 

取得文件流对象的内容:


io.getvalue() 
'["streaming API"]' 

压缩编码:


import simplejson as json 
json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',',':')) 
'[1,2,3,{"4":5,"6":7}]' 

美化打印:


import simplejson as json 
s = json.dumps({'4': 5, '6': 7}, sort_keys=True, indent='    ') 
print '\n'.join([l.rstrip() for l in  s.splitlines()]) 

    "4": 5, 
    "6": 7 

解析json字符串:


obj = [u'foo', {u'bar': [u'baz', None, 1.0, 2]}] 
json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]') == obj 
True 
json.loads('"\\"foo\\bar"') == u'"foo\x08ar' 
True 
from StringIO import StringIO 
io = StringIO('["streaming API"]') 
json.load(io)[0] == 'streaming API' 
True 

指定json解析后的对象:


import simplejson as json 
def as_complex(dct): 
    if '__complex__' in dct: 
        return complex(dct['real'], dct['imag']) 
    return dct 

json.loads('{"__complex__": true, "real": 1, "imag": 2}', 
    object_hook=as_complex) 
(1+2j) 
from decimal import Decimal 
json.loads('1.1', parse_float=Decimal) == Decimal('1.1') 
True 

指定编码对象的格式:


import simplejson as json 
def encode_complex(obj): 
    if isinstance(obj, complex): 
        return [obj.real, obj.imag] 
    raise TypeError(repr(o) + " is not JSON serializable") 

json.dumps(2 + 1j, default=encode_complex) 
'[2.0, 1.0]' 
json.JSONEncoder(default=encode_complex).encode(2 + 1j) 
'[2.0, 1.0]' 
''.join(json.JSONEncoder(default=encode_complex).iterencode(2 + 1j)) 

'[2.0, 1.0]'


simplejson─在Python中生成和解析JSON

Python的字典和JSON在表现形式上非常相似

#这是Python中的一个字典
dic = {
         'str': 'this is a string',
         'list': [1, 2, 'a', 'b'],
         'sub_dic': {
                       'sub_str': 'this is sub str',
                       'sub_list': [1, 2, 3]
                     },
         'end': 'end'
       }
//这是javascript中的一个JSON对象
json_obj = {
         'str': 'this is a string',
         'arr': [1, 2, 'a', 'b'],
         'sub_obj': {
                       'sub_str': 'this is sub str',
                       'sub_list': [1, 2, 3]
                     },
         'end': 'end'
       }

实际上JSON就是Python字典的字符串表示,但是字典作为一个复杂对象是无法直接转换成定义它的代码的字符串,Python有一个叫simplejson的库可以方便的完成JSON的生成和解析,这个包已经包含在Python2.6中,就叫json 主要包含四个方法: dump和dumps(从Python生成JSON),load和loads(解析JSON成Python的数据类型)dump和dumps的唯一区别是dump会生成一个类文件对象,dumps会生成字符串,同理load和loads分别解析类文件对象和字符串格式的JSON

import json
dic = {
         'str': 'this is a string',
         'list': [1, 2, 'a', 'b'],
         'sub_dic': {
                       'sub_str': 'this is sub str',
                       'sub_list': [1, 2, 3]
                     },
         'end': 'end'
       }
json.dumps(dic)
#output:
#'{"sub_dic": {"sub_str": "this is sub str", "sub_list": [1, 2, 3]}, "end": "end", "list": [1, 2, "a", "b"], "str": "this is a string"}


http://simplejson.readthedocs.org/en/latest/#basic-usage

参考文档:http://www.cnblogs.com/SkySoot/archive/2012/04/17/2453010.html

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

你可能感兴趣的:(json,python)