Skip to content

Instantly share code, notes, and snippets.

@natanael-araujo
Created March 18, 2020 16:03
Show Gist options
  • Save natanael-araujo/087cb2c66cd3c07ee66174011089810f to your computer and use it in GitHub Desktop.
Save natanael-araujo/087cb2c66cd3c07ee66174011089810f to your computer and use it in GitHub Desktop.
send file
from django.http import FileResponse
def send_file(response):
arquivos_vpn = open('var/deploy/vpn.zip', 'rb')
response = FileResponse(arquivos_vpn)
return response
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment