# Convert PPS to PPSM in Python

> Convert PPS files to PPSM in Python with Aspose.Slides. See a concise code example and the requirements for PowerPoint presentation conversion.

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



## Convert PPS to PPSM in Python

Convert PPS files to PPSM programmatically with [*Aspose.Slides for Python via .NET*](/slides/python-net/). Load the source presentation and save it as a macro-enabled PowerPoint slide show with a few lines of Python code.

Aspose.Slides processes the presentation directly, so Microsoft PowerPoint is not required. You can also evaluate PPS-to-PPSM conversion in your [browser](https://products.aspose.app/slides/conversion) or use the API to save PPS files in many other supported formats.

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

### Console/Terminal

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

## How to Convert PPS to PPSM in Python

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

Load the source PPS file by creating a `Presentation` instance.

Call `Presentation.save`, passing the output file path and `SaveFormat.PPSM`.

The converted PPSM file is written to the specified path.

## System Requirements

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

- Microsoft Windows, macOS, or 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.

### Python example: Convert PPS to PPSM

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

## Save PPS as PPSM in Python

Try the free [Aspose.Slides Conversion app](https://products.aspose.app/slides/conversion) to see PPS-to-PPSM conversion in action.

## Other Supported Conversions

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