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.
Install Aspose.Slides for Python via Java .
Configure JPype and make the Aspose.Slides package available to your Python project.
Create a
Presentationfrom the source.ppsfile.Call
savewithSaveFormat.Odpand an.odpoutput path.
Convert PPS to Other Supported Formats
You can also convert PPS files to the formats listed below.