Re: ReportLab Table Option
Andy Robinson <[email protected]>
| Newsgroups | gmane.comp.python.reportlab.user |
|---|---|
| Message-ID | <CABjtApvoShxCZr-=j+1ouaZyhjOn7JMbxE0hRkktJN6k-Cd-XQ@mail.gmail.com> |
On 12 January 2018 at 03:42, Bryan Arguello <[email protected]> wrote: > Hi Andy, > > Since your email, I went ahead and generalized our code so that it creates > separate platypus Tables for each table I want to appear on a new page. The > only difficulty I am no having is figuring out how to give them to my > SimpleDocTemplate so that each Table is printed on its own page. Is that > simple enough to do? Hopefully simple! story.append(tbl1) story.append(PageBreak()) story.append(tbl2) story.append(PageBreak()) story.append(tbl3) - Andy