How to include page in PDF in PDF document in Python - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T15:10:50Zhttp://stackoverflow.com/feeds/question/673288http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/673288/how-to-include-page-in-pdf-in-pdf-document-in-python0How to include page in PDF in PDF document in PythonJiri2009-03-23T13:03:12Z2009-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#6733221Answer by vartec for How to include page in PDF in PDF document in Pythonvartec2009-03-23T13:17:53Z2009-03-23T13:17:53Z<p>There is an add-on for ReportLab — <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#6735151Answer by dwelch for How to include page in PDF in PDF document in Pythondwelch2009-03-23T14:10:39Z2009-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>