try this:

try:
    import json
except ImportError:
    try:
        import simplejson as json
    except ImportError:
        # can load Django's json on GAE
        from django.utils import simplejson as json

Reply via email to