Convert PPSX Files to FODP in Python

Export a PowerPoint slide show as a Flat OpenDocument Presentation with Aspose.Slides for Python via Java.

Convert PPSX to FODP in Python

Aspose.Slides for Python via Java can load a PowerPoint Slide Show (.ppsx) and export it as a Flat OpenDocument Presentation (FODP). FODP stores the presentation in a single, uncompressed XML document. Microsoft PowerPoint, LibreOffice, and OpenOffice are not required for the conversion.

Convert PPSX to FODP using Python

Create a Presentation from the PPSX file, then call save with SaveFormat.Fodp.

Python code for converting PPSX to FODP

presentation = Presentation("presentation.ppsx")
try:
    presentation.save("presentation.fodp", SaveFormat.Fodp)
finally:
    presentation.dispose()

How to convert PPSX to FODP in Python

Follow these steps to export a PPSX file as a Flat OpenDocument 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 PPSX file with Presentation.

  4. Call save with SaveFormat.Fodp to create the FODP file.