# Convert PPS to OTP in Python

> Convert PPS files to OTP presentation templates in Python with Aspose.Slides for Python via Java.

Source: https://products.aspose.com/slides/python-java/conversion/pps-to-otp/
Updated: 2026-07-22



## Convert PPS to OTP in Python

[Aspose.Slides for Python via Java](/slides/python-java/) can convert a PowerPoint Show (`.pps`) file to an OpenDocument Presentation Template (`.otp`) file. This output is useful when the original slide design and layout should serve as the starting point for new OpenDocument presentations.

Open the PPS file with `Presentation` and call `save` with `SaveFormat.Otp`. The API performs the conversion without requiring Microsoft PowerPoint or LibreOffice.

## How to Convert PPS to OTP in Python

Create a `Presentation` from the source PPS file and save it with `SaveFormat.Otp`.

### Python tutorial for converting PPS into OTP

```python
presentation = Presentation("presentation.pps")
try:
    presentation.save("presentation.otp", SaveFormat.Otp)
finally:
    presentation.dispose()
```

## Steps to Convert PPS to OTP in Python

The conversion loads the PowerPoint Show and saves its design and content in the OTP format.

Install [Aspose.Slides for Python via Java](/slides/python-java/).

Configure JPype and make the Aspose.Slides package available to your Python project.

Create a `Presentation` from the source `.pps` file.

Call `save` with `SaveFormat.Otp` and an `.otp` output path.

## Convert PPS to Other Supported Formats

- [PPS TO PPTX](/slides/python-java/conversion/pps-to-pptx/)
- [PPS TO PPT](/slides/python-java/conversion/pps-to-ppt/)
- [PPS TO PDF](/slides/python-java/conversion/pps-to-pdf/)
- [PPS TO HTML](/slides/python-java/conversion/pps-to-html/)
- [PPS TO PNG](/slides/python-java/conversion/pps-to-png/)
- [PPS TO BMP](/slides/python-java/conversion/pps-to-bmp/)
- [PPS TO JPG](/slides/python-java/conversion/pps-to-jpg/)
- [PPS TO FODP](/slides/python-java/conversion/pps-to-fodp/)
- [PPS TO GIF](/slides/python-java/conversion/pps-to-gif/)
- [PPS TO ODP](/slides/python-java/conversion/pps-to-odp/)
- [PPS TO POT](/slides/python-java/conversion/pps-to-pot/)
- [PPS TO POTM](/slides/python-java/conversion/pps-to-potm/)
- [PPS TO POTX](/slides/python-java/conversion/pps-to-potx/)
- [PPS TO PPSM](/slides/python-java/conversion/pps-to-ppsm/)
- [PPS TO PPSX](/slides/python-java/conversion/pps-to-ppsx/)
- [PPS TO PPTM](/slides/python-java/conversion/pps-to-pptm/)
- [PPS TO SVG](/slides/python-java/conversion/pps-to-svg/)
- [PPS TO TIFF](/slides/python-java/conversion/pps-to-tiff/)
