Python - json and simplejson comparison (transfer)

From:https://stackoverflow.com/questions/712791/what-are-the-differences-between-json-and-simplejson-python-modules

add python stdlib time

json: 2.6

simplejson: 2.4+

simplejson is faster than json update.

A code import practice:

try: 
    import simplejson as json
except ImportError: 
    import json

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324892935&siteId=291194637