# Convert PPSX to FODP in Python

> Convert PPSX files to FODP presentations in Python with Aspose.Slides for Python via Java.

Source: https://products.aspose.com/slides/python-java/conversion/ppsx-to-fodp/
Updated: 2026-07-22



## Convert PPSX to FODP in Python

[**Aspose.Slides for Python via Java**](/slides/python-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

```python
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.

Install [Aspose.Slides for Python via Java](/slides/python-java/).

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

Open the source PPSX file with `Presentation`.

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

## Convert PPSX to Other Supported Formats
