加入python stdlib时间json
json: 2.6性能
simplejson: 2.4+spa
simplejson比json更新快, simplejson支持的python版本范围更广。code
一种代码导入实践:blog
try: import simplejson as json except ImportError: import json
simplejson和json的性能:get
For dumping, json
is faster than simplejson
. For loading, simplejson
is faster.io