Skip to content

Instantly share code, notes, and snippets.

@saghul
Created September 6, 2010 21:03
Show Gist options
  • Save saghul/567513 to your computer and use it in GitHub Desktop.
Save saghul/567513 to your computer and use it in GitHub Desktop.
try:
import cjson as jsonlib
jsonlib.dumps = jsonlib.encode
jsonlib.loads = jsonlib.decode
except ImportError:
try:
from django.utils import simplejson as jsonlib
except ImportError:
try:
import simplejson as jsonlib
except ImportError:
import json as jsonlib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment