Merge PPS Files in Python

Combine PowerPoint Slide Show files with a cross-platform Python API

Merge PPS in Python

Aspose.Slides for Python via .NET lets you merge PowerPoint Slide Show (PPS) files by cloning slides from a source Presentation into a destination Presentation. Append each source slide with SlideCollection.add_clone, then call Presentation.save with SaveFormat.PPS to write the combined presentation.

Merge PPS Files Using Python

Open the destination and source PPS files, append a clone of each source slide, and save the merged presentation as a PPS file.

Python code for merging multiple PPS files into one file

with slides.Presentation("destination.pps") as destination_presentation:
    with slides.Presentation("source.pps") as source_presentation:
        for source_slide in source_presentation.slides:
            destination_presentation.slides.add_clone(source_slide)

    destination_presentation.save("merged_presentation.pps", slides.export.SaveFormat.PPS)

How to Merge PPS Files with Aspose.Slides for Python

Follow these steps to merge two PPS files into a single PPS presentation.

  1. Install Aspose.Slides for Python via .NET by following the installation guide .

    pip install aspose-slides
    

  2. Make the aspose.slides namespace available in your Python project.

  3. Open the destination and source PPS files as Presentation instances.

  4. Iterate through the source slides and call SlideCollection.add_clone for each slide.

  5. Call Presentation.save with SaveFormat.PPS to write the merged presentation to a PPS file.