加入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