Skip to content

Instantly share code, notes, and snippets.

@lambdamusic
Created February 7, 2013 21:25
Show Gist options
  • Save lambdamusic/4734313 to your computer and use it in GitHub Desktop.
Save lambdamusic/4734313 to your computer and use it in GitHub Desktop.
Django: Django and JSON
def json_response(something):
from django.utils import simplejson
return HttpResponse(simplejson.dumps(something),
content_type='application/json; charset=UTF-8')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment