Convert PPS Slide Shows to PPT in Python

Save a PowerPoint slide show as an editable PPT presentation with Aspose.Slides for Python via Java.

Convert PPS to PPT in Python

Aspose.Slides for Python via Java can load a PowerPoint 97-2003 slide show (PPS) and save it as an editable PowerPoint 97-2003 presentation (PPT). PPS and PPT use the same legacy binary format, but PPT files open in editing mode by default. Microsoft PowerPoint is not required.

Convert PPS to PPT using Python

Create a Presentation from the PPS file, then call save with SaveFormat.Ppt.

Python code for converting PPS to PPT

presentation = Presentation("presentation.pps")
try:
    presentation.save("presentation.ppt", SaveFormat.Ppt)
finally:
    presentation.dispose()

How to convert PPS to PPT in Python

Follow these steps to convert a PowerPoint slide show to an editable PPT presentation.

  1. Install Aspose.Slides for Python via Java .

  2. Configure the package and start the Java Virtual Machine in your application.

  3. Open the source PPS file with Presentation.

  4. Call save with SaveFormat.Ppt to create the PPT presentation.