# Convert PPS to SWF in Python

> Convert PPS slide shows to SWF files in Python. Use the Aspose.Slides Python API to export presentations to the legacy Flash format.

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



## Convert PPS to SWF in Python

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

SWF is a legacy Adobe Flash format intended for compatibility with older workflows. 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 PPS to SWF in Python

These are the steps to convert a PPS file to SWF using Python.

Load the PPS file into a `Presentation` instance.

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

The presentation is written to the specified SWF 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 PPS to SWF in Python

```python
with slides.Presentation("presentation.pps") as presentation:
    presentation.save("presentation.swf", slides.export.SaveFormat.SWF)
```

## Save PPS as SWF in Python

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

## Other Supported Conversions

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