Skip to content

Instantly share code, notes, and snippets.

@dennis90
Created January 24, 2017 17:13
Show Gist options
  • Save dennis90/2447e6a118c0ee344ff58d9102ce94be to your computer and use it in GitHub Desktop.
Save dennis90/2447e6a118c0ee344ff58d9102ce94be to your computer and use it in GitHub Desktop.
fileIO = BytesIO()
boletoPDF = pdf.BoletoPDF(fileIO)
boletoPDF.drawBoleto(boleto_dados)
boletoPDF.save()
fileIO.seek(0)
response = HttpResponse(fileIO.read(), content_type='application/pdf')
response['Content-Dispositon'] = 'attachment; filename=boleto.pdf'
return response
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment