[关闭]
@songying 2018-06-12T15:42:43.000000Z 字数 444 阅读 5385

ujson - 比json更快

python库


JSON数据与python 对象之间的转换。

ujson.dump()

  • 功能:将python对象序列化为json字符串,并写入到stream中
  1. ujson.dump(obj, stream)

ujson.dumps()

  • 将python对象序列化为json字符串,并返回一个代表json字符串的对象
  1. ujson.dumps(obj)

ujson.load()

  • 功能: 从stream读取数据,并将其解析为json string,然后将数据序列化为一个python对象,返回这个对象。
  1. ujson.load(stream)

异常: A ValueError is raised if the data in stream is not correctly formed.

ujson.loads()

  • 功能:解析json string,并将其序列化2为python对象,返回该对象
  1. ujson.loads(str)
  • 异常: Raises ValueError if the string is not correctly formed.
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注