# Convert FODP to POT in Python

> Convert FODP presentations to POT templates in Python. Use the Aspose.Slides Python API to save presentations as PowerPoint 97-2003 templates.

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



## Convert FODP to POT in Python

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

POT is the legacy PowerPoint 97-2003 template format, so the output can be used as a reusable starting point for compatible PowerPoint presentations. 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 POT in Python

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

Load the FODP file into a `Presentation` instance.

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

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

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

## Save FODP as POT in Python

Use the [free online app](https://products.aspose.app/slides/conversion) to see the FODP-to-POT 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 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 PPSX](/slides/python-net/conversion/fodp-to-ppsx/) — PowerPoint Open XML 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
