I am using reportlab toolkit in Python to generate some reports in PDF format. I want to use some predefined parts of documents already published in PDF format to be included in generated PDF file. Is it possible (and how) to accomplish this in reportlab or in python library?

I know I can use some other tools like PDF Toolkit (pdftk) but I am looking for Python-based solution.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

I'm currently using PyPDF to read, write, and combine existing PDF's and ReportLab to generate new content. Using the two package seemed to work better than any single package I was able to find.

link|improve this answer
Yeah, I like this package. The first example is what I want, I'll give it a try. – Jiri Mar 23 '09 at 16:30
feedback

If you want to place existing PDF pages in your Reportlab documents I recommend pdfrw. Unlike PageCatcher it is free.

I've used it for several projects where I need to add barcodes etc to existing documents and it works very well. There are a couple of examples on the project page of how to use it with Reportlab.

A couple of things to note though:

If the source PDF contains errors (due to the originating program following the PDF spec imperfectly for example), pdfrw may fail even though something like Adobe Reader has no apparent problems reading the PDF. pdfrw is currently not very fault tolerant.

Also, pdfrw works by being completely agnostic to the actual content of the PDF page you are placing. So for example, you wouldn't be able to use pdfrw inspect a page to see if it contains a certain string of text in the lower right-hand corner. However if you don't need to do anything like that you should be fine.

link|improve this answer
feedback

There is an add-on for ReportLab — PageCatcher.

link|improve this answer
Ok, this seems to be right tool. Unfortunately it is in commercial version of reportlab toolkit and I cannot use it directly - I am using opensource version. And there is no pricing - it looks like I have to negotiate some price with reportlab before download. – Jiri Mar 23 '09 at 13:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.