You can use simplejson.
As shown by the answer form pkoch you can use the following import statement to get a json library depending on the installed python version:
try:
import json
except ImportError:
import simplejson as json
You can use simplejson.
As shown by the answer form pkoch you can use the following import statement to get a json library depending on the installed python version:
try:
import json
except ImportError:
import simplejson as json