Skip to content

Instantly share code, notes, and snippets.

@reuf
Forked from lambdamusic/Snipplr-25237.py
Created September 30, 2015 09:36
Show Gist options
  • Save reuf/2684544c26e1d74f5fc8 to your computer and use it in GitHub Desktop.
Save reuf/2684544c26e1d74f5fc8 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