# Convert PPSM to PPTX in Python

> Convert PPSM slide shows to PPTX presentations in Python. Use the Aspose.Slides Python API to export PPSM files to the PowerPoint Open XML format.

Source: https://products.aspose.com/slides/python-net/conversion/ppsm-to-pptx/
Updated: 2026-08-11



## Convert PPSM to PPTX in Python

[*Aspose.Slides for Python via .NET*](/slides/python-net/) lets you convert PPSM slide shows to PPTX presentations programmatically. Load the source file into a `Presentation` instance and export it by using `Presentation.save` with `SaveFormat.PPTX`.

PPTX is the standard PowerPoint Open XML presentation format and does not support VBA macros. Use PPTM instead when a VBA project in the source file must be retained. You can test the conversion in your [browser](https://products.aspose.app/slides/conversion).

Install the library from [PyPI](https://pypi.org/project/aspose-slides/) by using the following command:

### Console/Terminal

```console
pip install aspose-slides
```

## How to Convert PPSM to PPTX in Python

These are the steps to convert a PPSM file to PPTX using Python.

Load the PPSM file into a `Presentation` instance.

Call `Presentation.save` with the output file path and `SaveFormat.PPTX`.

The presentation is written to the specified PPTX file.

## System Requirements

Before running the Python conversion sample, make sure your environment meets these requirements.

- Microsoft Windows, macOS, or 64-bit Linux (see the [system requirements](https://docs.aspose.com/slides/python-net/system-requirements/)).
- Python 3.5 or later.
- Aspose.Slides for Python via .NET installed in your environment.

### This sample code shows how to convert PPSM to PPTX in Python

```python
with slides.Presentation("presentation.ppsm") as presentation:
    presentation.save("presentation.pptx", slides.export.SaveFormat.PPTX)
```

## Save PPSM as PPTX in Python

Use the [free online app](https://products.aspose.app/slides/conversion) to see the PPSM-to-PPTX conversion process in action.

## Other Supported Conversions

- [PPSM TO BMP](/slides/python-net/conversion/ppsm-to-bmp/) — Bitmap Image
- [PPSM TO EMF](/slides/python-net/conversion/ppsm-to-emf/) — Enhanced Metafile Format
- [PPSM TO FODP](/slides/python-net/conversion/ppsm-to-fodp/) — OpenDocument Flat XML Presentation
- [PPSM TO GIF](/slides/python-net/conversion/ppsm-to-gif/) — Graphics Interchange Format
- [PPSM TO HTML](/slides/python-net/conversion/ppsm-to-html/) — Hypertext Markup Language
- [PPSM TO JPG](/slides/python-net/conversion/ppsm-to-jpg/) — JPEG Image
- [PPSM TO ODP](/slides/python-net/conversion/ppsm-to-odp/) — OpenDocument Presentation Format
- [PPSM TO OTP](/slides/python-net/conversion/ppsm-to-otp/) — OpenDocument Presentation Template
- [PPSM TO PDF](/slides/python-net/conversion/ppsm-to-pdf/) — Portable Document Format
- [PPSM TO PNG](/slides/python-net/conversion/ppsm-to-png/) — Portable Network Graphics
- [PPSM TO POT](/slides/python-net/conversion/ppsm-to-pot/) — PowerPoint 97-2003 Template
- [PPSM TO POTM](/slides/python-net/conversion/ppsm-to-potm/) — Macro-Enabled PowerPoint Template
- [PPSM TO POTX](/slides/python-net/conversion/ppsm-to-potx/) — PowerPoint Open XML Template
- [PPSM TO PPS](/slides/python-net/conversion/ppsm-to-pps/) — PowerPoint 97-2003 Slide Show
- [PPSM TO PPSX](/slides/python-net/conversion/ppsm-to-ppsx/) — PowerPoint Open XML Slide Show
- [PPSM TO PPT](/slides/python-net/conversion/ppsm-to-ppt/) — PowerPoint 97-2003 Presentation
- [PPSM TO PPTM](/slides/python-net/conversion/ppsm-to-pptm/) — Macro-Enabled PowerPoint Presentation
- [PPSM TO SVG](/slides/python-net/conversion/ppsm-to-svg/) — Scalable Vector Graphics
- [PPSM TO SWF](/slides/python-net/conversion/ppsm-to-swf/) — Shockwave Flash
- [PPSM TO TIFF](/slides/python-net/conversion/ppsm-to-tiff/) — Tagged Image File Format
- [PPSM TO XPS](/slides/python-net/conversion/ppsm-to-xps/) — XML Paper Specification
