Combine and Merge PowerPoint PPT/PPTX Files in Python

Combine and Merge PowerPoint PPT/PPTX Files in Python

PowerPoint presentation is a collection of slides where each slide can comprise of text, images, animations, and media etc. Merging PowerPoint presentations by copying and pasting slides one by one into the primary presentation is time consuming process. So, GroupDocs offers python library that automatically merge PowerPoint files in a few seconds. You can easily combine two or more PPTX files into a single PowerPoint file programmatically on the cloud. In this article, we will learn an easy solution about how to combine and merge PowerPoint PPT/PPTX files in Python.

The following topics shall be covered in this article:

Python PowerPoint Merger REST API - Installation

To combine two or more PPTX files, we will be using the Python SDK of GroupDocs.Merger Cloud API. It allows you to combine two or more files into a single document, or split up one source document into multiple output documents. It also enables you to shift, delete, exchange, rotate or change the page orientation either as portrait or landscape for the whole or preferred range of pages. This SDK supports merging and splitting of all popular document formats such as Word, Excel, PowerPoint, Visio, OneNote, PDF, HTML, etc.

You can install GroupDocs.Merger Cloud to your Python application using the following command in the console:

pip install groupdocs_merger_cloud

Please get your Client ID and Secret from the dashboard before following the mentioned steps. Once you have your ID and secret, add in the code as shown below:

Merge PowerPoint PPTX Files in Python using REST API

You can combine two PowerPoint PPT/PPTX files programmatically on the cloud by following the simple steps mentioned below:

  1. Upload the PPTX files to the cloud
  2. Merge multiple PPTX files using Python
  3. Download the merged PPTX file

Upload the PPTX Files

Firstly, upload the PPTX files to the cloud using the code example given below:

As a result, the uploaded PPTX files will be available in the files section of your dashboard on the cloud.

Merge Multiple PPTX Files using Python

You can easily merge multiple PPTX files into a single file programmatically by following the steps mentioned below:

  • Create an instance of the DocumentApi
  • Create an instance of the JoinItem
  • Provide the input file path for first JoinItem in the FileInfo
  • Create another instance of the JoinItem
  • Provide the input file path for second JoinItem in the FileInfo
  • Add more JoinItems for merging more than two files
  • Create an instance of the JoinOptions
  • Add a comma separated list of created join items
  • Set the output file path
  • Create an instance of the JoinRequest with JoinOptions
  • Finally, combine files by calling the join() method of the DocumentAPI with JoinRequest

The following code snippet shows how to merge multiple PowerPoint files in Python using REST API:

Download the Merged File

The above code sample will save the merged PPTX file on the cloud. You can download it using the following code sample:

Merge Specific Pages of Multiple PPTX Files in Python

You can easily combine specific pages of multiple PowerPoint files into a single document programmatically by following the steps mentioned below:

  • Create an instance of the DocumentApi
  • Create an instance of the JoinItem
  • Provide the input file path for first JoinItem in the FileInfo
  • Define a list of page numbers in a comma separated array
  • Create another instance of the JoinItem
  • Provide the input file path for second JoinItem in the FileInfo
  • Define start page number and end page number
  • Define the page range mode as OddPages
  • Create an instance of the JoinOptions
  • Add a comma separated list of created join items
  • Set the output file path
  • Create an instance of the JoinRequest with JoinOptions
  • Finally, merge pptx by calling the join() method of the DocumentAPI with JoinRequest

The following code snippet shows how to merge specific pages of PPTX files using REST API in Python:

Try Online

How to combine PPTX online? Please try the following free online PPTX merger tool, which is developed using the above API.

Conclusion

In this tutorial, we have learned:

  • how to merge multiple PPTX files on the cloud using python;
  • programmatically upload and download the merged file;
  • how to combine specific pages of multiple PPTX files into single file in Python;

Additionally, you can learn more about GroupDocs.Merger Cloud API using the documentation. We also provide an API Reference section that lets you visualize and communicate with our APIs directly through the browser. Moreover, please see the GroupDocs.Merger Cloud SDK for Python Examples here.

Ask a question

If you have any questions about PowerPoint merger, please feel free to ask us on the Free Support Forum.

See Also