Convert PPS to ODP in Python

Transform PowerPoint Show files into editable OpenDocument presentations.

Convert PPS to ODP in Python

Aspose.Slides for Python via Java can convert a PowerPoint Show (.pps) file to an OpenDocument Presentation (.odp) file without Microsoft PowerPoint or LibreOffice. The resulting ODP presentation remains editable in applications that support the OpenDocument format.

Load the source file with Presentation, then call save with SaveFormat.Odp. Aspose.Slides handles the format conversion while retaining supported slide content, layout, and formatting.

How to Convert PPS to ODP in Python

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

Python tutorial for converting PPS into ODP

presentation = Presentation("presentation.pps")
try:
    presentation.save("presentation.odp", SaveFormat.Odp)
finally:
    presentation.dispose()

Steps to Convert PPS to ODP in Python

The conversion loads the PowerPoint Show and writes its slides to an OpenDocument presentation.

  1. Install Aspose.Slides for Python via Java .

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

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

  4. Call save with SaveFormat.Odp and an .odp output path.