# Merge POTX Files Using Python

> Merge multiple POTX presentation templates into a single POTX file using Python.

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



## Merge POTX in Python

[*Aspose.Slides for Python via .NET*](/slides/python-net/) lets you merge PowerPoint Open XML Template (POTX) 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.POTX` to write the combined template.

## Merge POTX Files Using Python

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

### Python code for merging multiple POTX files into one file

```python
with slides.Presentation("destination.potx") as destination_presentation:
    with slides.Presentation("source.potx") as source_presentation:
        for slide in source_presentation.slides:
            destination_presentation.slides.add_clone(slide)

    destination_presentation.save("merged_template.potx", slides.export.SaveFormat.POTX)
```

## How to Merge POTX Files with Aspose.Slides for Python

Follow these steps to merge two POTX files into a single POTX template.

Install Aspose.Slides for Python via .NET by following the [installation guide](https://docs.aspose.com/slides/python-net/installation/).
```console
pip install aspose-slides
```

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

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

Iterate through the source slides and call [`SlideCollection.add_clone`](https://reference.aspose.com/slides/python-net/aspose.slides/slidecollection/add_clone/) for each slide.

Call `Presentation.save` with `SaveFormat.POTX` to write the merged presentation to a POTX file.

## Export POTX to Other Supported Formats
