Concatenate PDF Files in Python

Contents
[ ]

To concatenate PDF files using Aspose.PDF Java for Python, simply invoke ConcatenatePdfFiles class.

doc= self.Document()
pdf = self.Document()
pdf=self.dataDir + 'input1.pdf'

# Open the source document
pdf1 = self.Document()
pdf1=self.dataDir + 'input2.pdf'

# Add the pages of the source document to the target document
pdf1.getPages().add(pdf1.getPages())

# Save the concatenated output file (the target document)
doc.save(self.dataDir + "Concatenate_output.pdf")

print "New document has been saved, please check the output file"

Download Running Code

Download Concatenate PDF Files (Aspose.PDF) from any of the below mentioned social coding sites: