# Merge PPSX Files Using Python

> Merge multiple PPSX files into one PowerPoint slide show in Python.

Source: https://products.aspose.com/slides/python-net/merge/ppsx/
Updated: 2026-07-29



## Merge PPSX in Python

[**Aspose.Slides for Python via .NET**](/slides/python-net/) lets you merge PPSX slide shows by cloning slides from a source `Presentation` into a destination `Presentation`. The cloned slides retain their layouts, shapes, styles, text, formatting, comments, and animations. Save the destination presentation with `SaveFormat.PPSX` to produce one PowerPoint slide show.

## Merge PPSX files using Python

Clone each source slide with `add_clone`, then call `save` with `SaveFormat.PPSX`.

### Python code to merge multiple PPSX files

```python
with slides.Presentation("presentation1.ppsx") as destination_presentation:
    with slides.Presentation("presentation2.ppsx") as source_presentation:
        for slide in source_presentation.slides:
            destination_presentation.slides.add_clone(slide)

    destination_presentation.save("merged_presentation.ppsx", slides.export.SaveFormat.PPSX)
```

## How to merge PPSX using Aspose.Slides for Python API

Follow these steps to merge two PPSX files and save the result as PPSX in Python.

Install [**Aspose.Slides for Python via .NET**](/slides/python-net/).

Import the `aspose.slides` package.

Open the destination and source PPSX files as `Presentation` instances.

Clone each source slide by using [`add_clone`](https://reference.aspose.com/slides/python-net/aspose.slides/slidecollection/add_clone/).

Save the merged presentation as a PPSX file by using `SaveFormat.PPSX`.

## Export PPSX to Other Supported Formats
