Skip to content

Instantly share code, notes, and snippets.

@aechiara
Created November 1, 2016 13:26
Show Gist options
  • Save aechiara/17d32a5e6f57b28fafc2e0f3ee817a32 to your computer and use it in GitHub Desktop.
Save aechiara/17d32a5e6f57b28fafc2e0f3ee817a32 to your computer and use it in GitHub Desktop.
def download(request, id):
arquivo = get_object_or_404(Arquivo, id_arquivo=id)
response = HttpResponse(FileWrapper(arquivo.file), content_type='application/zip')
response['Content-Disposition'] = 'attachment; filename={}'.format(os.path.basename(arquivo.file.name))
return response
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment