# Convert PPSM to PPS in Python

> Convert PPSM files to PPS 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/ppsm-to-pps/
Updated: 2026-08-11



## Convert PPSM to PPS in Python

Convert PPSM files to PPS programmatically with [*Aspose.Slides for Python via .NET*](/slides/python-net/). Load the source slide show and save it as a PowerPoint 97-2003 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 PPSM-to-PPS conversion in your [browser](https://products.aspose.app/slides/conversion) or use the API to save PPSM 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 PPSM to PPS in Python

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

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

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

The converted PPS 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 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.

### Python example: Convert PPSM to PPS

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

## Save PPSM as PPS in Python

Try the free [Aspose.Slides Conversion app](https://products.aspose.app/slides/conversion) to see PPSM-to-PPS conversion 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/) — PowerPoint Macro-Enabled Template
- [PPSM TO POTX](/slides/python-net/conversion/ppsm-to-potx/) — PowerPoint Open XML Template
- [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/) — PowerPoint Macro-Enabled Presentation
- [PPSM TO PPTX](/slides/python-net/conversion/ppsm-to-pptx/) — PowerPoint Open XML Presentation
- [PPSM TO SVG](/slides/python-net/conversion/ppsm-to-svg/) — Scalable Vector Graphics
- [PPSM TO SWF](/slides/python-net/conversion/ppsm-to-swf/) — SWF Format
- [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
