# Convert FODP to OTP in Python

> Convert FODP presentations to reusable OTP presentation templates in Python with Aspose.Slides for Python via Java.

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



## Convert FODP to OTP in Python

[**Aspose.Slides for Python via Java**](/slides/python-java/) can load an FODP presentation and save it as an OTP file. The OTP output is an OpenDocument presentation template that can be used as the basis for new presentations. The conversion does not require Microsoft PowerPoint, LibreOffice, or OpenOffice.

## Convert FODP to OTP using Python

Create a `Presentation` from the FODP file and call `save` with `SaveFormat.Otp` to create the OTP presentation template.

### Python code for converting FODP to OTP

```python
presentation = Presentation("presentation.fodp")
try:
    presentation.save("presentation.otp", SaveFormat.Otp)
finally:
    presentation.dispose()
```

## How to convert FODP to OTP in Python

Follow these steps to save an FODP presentation as a reusable OTP presentation template.

Install [**Aspose.Slides for Python via Java**](https://docs.aspose.com/slides/python-java/installation/).

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

Open the source FODP file with `Presentation`.

Call `save` with `SaveFormat.Otp` to write the OTP presentation template.

## Convert FODP to Other Supported Formats
