# Convert ODP to POT in Python

> Convert ODP presentations to POT files in Python. Use the Aspose.Slides Python API to save presentations in PowerPoint 97-2003 Template format.

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



## Convert ODP to POT in Python

[*Aspose.Slides for Python via .NET*](/slides/python-net/) lets you convert ODP presentations to POT files 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 ODP to POT in Python

Follow these steps to convert an ODP file to POT using Python.

Load the ODP 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 ODP to POT in Python

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

## Save ODP as POT in Python

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

## Other Supported Conversions

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