Skip to content

Instantly share code, notes, and snippets.

@iwillig
Created October 6, 2010 15:37
Show Gist options
  • Select an option

  • Save iwillig/613537 to your computer and use it in GitHub Desktop.

Select an option

Save iwillig/613537 to your computer and use it in GitHub Desktop.
def download_file(request):
response = HttpResponse(mimetype="text/csv")
response['Content-Disposition'] = 'attachment; filename=blah.csv'
response.write("blah")
return response
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment