Created
August 2, 2016 13:37
-
-
Save ivanelson/9c6707ef67521c063ca1ec26f80b421a to your computer and use it in GitHub Desktop.
pdf via reportlab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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