How to include page in PDF in PDF document in Python - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T15:10:50Z http://stackoverflow.com/feeds/question/673288 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/673288/how-to-include-page-in-pdf-in-pdf-document-in-python 0 How to include page in PDF in PDF document in Python Jiri 2009-03-23T13:03:12Z 2009-03-23T14:10:39Z <p>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?</p> <p>I know I can use some other tools like PDF Toolkit (pdftk) but I am looking for Python-based solution.</p> http://stackoverflow.com/questions/673288/how-to-include-page-in-pdf-in-pdf-document-in-python/673322#673322 1 Answer by vartec for How to include page in PDF in PDF document in Python vartec 2009-03-23T13:17:53Z 2009-03-23T13:17:53Z <p>There is an add-on for ReportLab &mdash; <a href="http://www.reportlab.com/docs/PageCatchIntro.pdf" rel="nofollow">PageCatcher</a>. </p> http://stackoverflow.com/questions/673288/how-to-include-page-in-pdf-in-pdf-document-in-python/673515#673515 1 Answer by dwelch for How to include page in PDF in PDF document in Python dwelch 2009-03-23T14:10:39Z 2009-03-23T14:10:39Z <p>I'm currently using <a href="http://pybrary.net/pyPdf/" rel="nofollow" title="PyPDF">PyPDF</a> 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.</p>