ReportLab
Revision as of 16:32, 13 November 2012 by Michael Murtaugh (talk | contribs) (Created page with " == ReportLab == Following this [http://www.blog.pythonlibrary.org/2010/03/08/a-simple-step-by-step-reportlab-tutorial/ helpful tutorial] <source lang="python"> from reportl...")
ReportLab
Following this helpful tutorial
from reportlab.pdfgen import canvas
c = canvas.Canvas("hello.pdf")
c.drawString(100, 100, "Hello WORLD!")
c.save()