# Convert PPS to POTX in Python

> Convert PPS files to POTX files in Python with Aspose.Slides for Python via Java.

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



## Convert PPS to POTX in Python

[Aspose.Slides for Python via Java](/slides/python-java/) can load a PowerPoint Show (`.pps`) file and save it in the macro-free POTX format without Microsoft PowerPoint. POTX uses the Open XML file structure and cannot store VBA macros.

The library retains the presentation content and layout while changing the file format. Load the source file with `Presentation`, then call `save` with `SaveFormat.Potx`.

## How to Convert PPS to POTX in Python

Load the source PPS file into a `Presentation`, then save it with `SaveFormat.Potx`.

### Python tutorial for converting PPS into POTX

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

## Steps to Convert PPS to POTX in Python

The conversion loads the PowerPoint Show and writes its content in the macro-free POTX 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.Potx` and a `.potx` 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 OTP](/slides/python-java/conversion/pps-to-otp/)
- [PPS TO POT](/slides/python-java/conversion/pps-to-pot/)
- [PPS TO POTM](/slides/python-java/conversion/pps-to-potm/)
- [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/)
