Convert POT Templates to PPS in Python

Create a binary PowerPoint slide show from a POT file with Aspose.Slides for Python via Java.

Convert POT to PPS in Python

Aspose.Slides for Python via Java can load a binary PowerPoint 97–2003 template (POT) and save it as a PowerPoint 97–2003 slide show (PPS). A PPS file is designed to open directly in slide show mode in compatible applications. The conversion does not require Microsoft PowerPoint.

Convert POT to PPS using Python

Create a Presentation from the POT file, then call save with SaveFormat.Pps.

Python code for converting POT to PPS

presentation = Presentation("presentation.pot")
try:
    presentation.save("presentation.pps", SaveFormat.Pps)
finally:
    presentation.dispose()

How to convert POT to PPS in Python

Follow these steps to convert a POT template to a binary PowerPoint slide show.

  1. Install Aspose.Slides for Python via Java .

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

  3. Open the source POT file with Presentation.

  4. Call save with SaveFormat.Pps to create the PPS slide show.