Convert POT Templates to PPSX in Python
Create an Open XML PowerPoint slide show from a POT file with Aspose.Slides for Python via Java.
Convert POT to PPSX in Python
Aspose.Slides for Python via Java can load a binary PowerPoint 97–2003 template (POT) and save it as an Open XML PowerPoint slide show (PPSX). PPSX is a macro-free format designed to open directly in slide show mode in compatible applications. The conversion does not require Microsoft PowerPoint.
Convert POT to PPSX using Python
Create a Presentation from the POT file, then call save with SaveFormat.Ppsx.
Python code for converting POT to PPSX
presentation = Presentation("presentation.pot")
try:
presentation.save("presentation.ppsx", SaveFormat.Ppsx)
finally:
presentation.dispose()
How to convert POT to PPSX in Python
Follow these steps to convert a POT template to an Open XML PowerPoint slide show.
Install Aspose.Slides for Python via Java .
Configure the package and start the Java Virtual Machine in your application.
Open the source POT file with
Presentation.Call
savewithSaveFormat.Ppsxto create the PPSX slide show.
Convert POT to Other Supported Formats
You can also convert POT files to other supported file formats.