PPT
PPTX
ODP
POT
ppsx
ODP
Redact ODP using Python
Build your own Python apps to find and replace text in presentation files using server-side APIs. Learn how to search and replace text in content, comments or metadata of ODP presentations
Redact ODP Presentation via Python
A basic document search and replace text in contents, comments, slide notes or metadata with Aspose.Slides for Python via .NET APIs can be done with just few lines of code. Find and replace text in PowerPoint and OpenOffice. Edit text, comments, metadata in presentation via regexp data matching.
Redact ODP Presentation using Python
import aspose.slides as slides
with slides.Presentation("welcome-to-powerpoint.odp") as pres:
slides.util.SlideUtil.find_and_replace_text(pres, True, "PowerPoint", "Aspose.Slides", None)
pres.save("replaced.odp", slides.export.SaveFormat.ODP)
How to Redact ODP via Python
These are the steps to Redact ODP files.
Load ODP with an instance of Presentation.
Use FindAndReplaceText method to find and replace text.
Save result in ODP format