PPT
PPTX
ODP
POT
PPSX
PPT
Redact Text in PPT Presentations with Python
Build Python applications that find and replace sensitive text in presentations with Aspose.Slides.
Redact Text in a PPT Presentation with Python
With
Aspose.Slides for Python via .NET
, you can replace sensitive text throughout a PPT presentation. Use Presentation.replace_text with TextSearchOptions to control the search, then save the modified presentation.
Redact Text in a PPT Presentation - Python
search_options = slides.TextSearchOptions()
search_options.whole_words_only = True
search_options.include_notes = True
with slides.Presentation("presentation.ppt") as presentation:
presentation.replace_text("Confidential", "[REDACTED]", search_options, None)
presentation.save("redacted-presentation.ppt", slides.export.SaveFormat.PPT)
How to Redact Text in a PPT Presentation with Python
Follow these steps to replace sensitive text in a PPT presentation.
Open the PPT file with
Presentation.Use
Presentation.replace_textwithTextSearchOptionsto replace the required text.Save the modified presentation with
SaveFormat.PPT.