Convert ODP Presentations to PPSX in Python

Save an ODP presentation as a macro-free PowerPoint slide show with Aspose.Slides for Python via Java.

Convert ODP to PPSX in Python

Aspose.Slides for Python via Java can load an ODP presentation and save it as a PPSX file. PPSX is the macro-free Office Open XML format for PowerPoint slide shows and opens directly in slide show mode in compatible applications. The conversion does not require Microsoft PowerPoint, LibreOffice, or OpenOffice.

Convert ODP to PPSX using Python

Create a Presentation from the ODP file and call save with SaveFormat.Ppsx to create the PPSX slide show.

Python code for converting ODP to PPSX

presentation = Presentation("presentation.odp")
try:
    presentation.save("presentation.ppsx", SaveFormat.Ppsx)
finally:
    presentation.dispose()

How to convert ODP to PPSX in Python

Follow these steps to convert an OpenDocument presentation to a macro-free PowerPoint slide show.

  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 ODP file with Presentation.

  4. Call save with SaveFormat.Ppsx to write the PPSX slide show.