Python and ReportLab: add a string at the end of every page
Posted
by
user608341
on Stack Overflow
See other posts from Stack Overflow
or by user608341
Published on 2011-02-08T15:20:00Z
Indexed on
2011/02/08
15:25 UTC
Read the original article
Hit count: 206
Hi peoples, I'm building a pdf document with reportlab, using the Paragraph class:
doc = SimpleDocTemplate(response, leftMargin=lateral_margin, rightMargin=lateral_margin,
topMargin=top_bottom_margin, bottomMargin=top_bottom_margin)
Document = []
Document.append(Paragraph("bla bla bla bla", my_style))
doc.build(Document)
Now I want to add at the end of every page a string, how can I do that??
© Stack Overflow or respective owner