# Convert FODP to PPSX in Python

> Convert FODP presentations to PPSX files in Python. Use the Aspose.Slides Python API to save presentations as PowerPoint Open XML slide shows.

Source: https://products.aspose.com/slides/python-net/conversion/fodp-to-ppsx/
Updated: 2026-08-11



## Convert FODP to PPSX in Python

[*Aspose.Slides for Python via .NET*](/slides/python-net/) lets you convert FODP presentations to PPSX files programmatically. Load the source file into a `Presentation` instance and save it by using `Presentation.save` with `SaveFormat.PPSX`.

PPSX is the PowerPoint Open XML slide show format and cannot contain VBA macros. It opens directly in slide show mode in compatible presentation applications. You can test the conversion in your [browser](https://products.aspose.app/slides/conversion) or use the Python API in your application.

Install the library from [PyPI](https://pypi.org/project/aspose-slides/) by using the following command:

### Console/Terminal

```console
pip install aspose-slides
```

## How to Convert FODP to PPSX in Python

These are the steps to convert an FODP file to PPSX using Python.

Load the FODP file into a `Presentation` instance.

Call `Presentation.save` with the output file path and `SaveFormat.PPSX`.

The presentation is written to the specified PPSX file.

## System Requirements

Before running the Python conversion sample, make sure your environment meets these requirements.

- Microsoft Windows, macOS, or 64-bit Linux (see the [system requirements](https://docs.aspose.com/slides/python-net/system-requirements/)).
- Python 3.5 or later.
- Aspose.Slides for Python via .NET installed in your environment.

### This sample code shows how to convert FODP to PPSX in Python

```python
with slides.Presentation("presentation.fodp") as presentation:
    presentation.save("presentation.ppsx", slides.export.SaveFormat.PPSX)
```

## Save FODP as PPSX in Python

Use the [free online app](https://products.aspose.app/slides/conversion) to see the FODP-to-PPSX conversion process in action.

## Other Supported Conversions

- [FODP TO BMP](/slides/python-net/conversion/fodp-to-bmp/) — Bitmap Image
- [FODP TO EMF](/slides/python-net/conversion/fodp-to-emf/) — Enhanced Metafile Format
- [FODP TO GIF](/slides/python-net/conversion/fodp-to-gif/) — Graphics Interchange Format
- [FODP TO HTML](/slides/python-net/conversion/fodp-to-html/) — Hypertext Markup Language
- [FODP TO JPG](/slides/python-net/conversion/fodp-to-jpg/) — JPEG Image
- [FODP TO ODP](/slides/python-net/conversion/fodp-to-odp/) — OpenDocument Presentation Format
- [FODP TO OTP](/slides/python-net/conversion/fodp-to-otp/) — OpenDocument Presentation Template
- [FODP TO PDF](/slides/python-net/conversion/fodp-to-pdf/) — Portable Document Format
- [FODP TO PNG](/slides/python-net/conversion/fodp-to-png/) — Portable Network Graphics
- [FODP TO POT](/slides/python-net/conversion/fodp-to-pot/) — Microsoft PowerPoint 97-2003 Template
- [FODP TO POTM](/slides/python-net/conversion/fodp-to-potm/) — PowerPoint Macro-Enabled Template
- [FODP TO POTX](/slides/python-net/conversion/fodp-to-potx/) — PowerPoint Open XML Template
- [FODP TO PPS](/slides/python-net/conversion/fodp-to-pps/) — PowerPoint 97-2003 Slide Show
- [FODP TO PPSM](/slides/python-net/conversion/fodp-to-ppsm/) — PowerPoint Macro-Enabled Slide Show
- [FODP TO PPT](/slides/python-net/conversion/fodp-to-ppt/) — Microsoft PowerPoint 97-2003 Presentation
- [FODP TO PPTM](/slides/python-net/conversion/fodp-to-pptm/) — PowerPoint Macro-Enabled Presentation
- [FODP TO PPTX](/slides/python-net/conversion/fodp-to-pptx/) — PowerPoint Open XML Presentation
- [FODP TO SVG](/slides/python-net/conversion/fodp-to-svg/) — Scalable Vector Graphics
- [FODP TO SWF](/slides/python-net/conversion/fodp-to-swf/) — Small Web Format
- [FODP TO TIFF](/slides/python-net/conversion/fodp-to-tiff/) — Tagged Image File Format
- [FODP TO XPS](/slides/python-net/conversion/fodp-to-xps/) — XML Paper Specification
