Skip to content

Instantly share code, notes, and snippets.

@ivanelson
Created August 2, 2016 13:37
Show Gist options
  • Save ivanelson/9c6707ef67521c063ca1ec26f80b421a to your computer and use it in GitHub Desktop.
Save ivanelson/9c6707ef67521c063ca1ec26f80b421a to your computer and use it in GitHub Desktop.
pdf via reportlab
#!/usr/bin/env python
#-*- encoding: utf-8 -*-
from reportlab.pdfgen import canvas
c = canvas.Canvas("ola.pdf")
c.drawString(100,750,"Bem-vindo ao Reportlab!")
c.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment