PPT PPTX ODP POT PPSX
Aspose.Slides  for Python via .NET
ODP

Redact Text in ODP Presentations with Python

Build Python applications that find and replace sensitive text in presentations with Aspose.Slides.

Redact Text in an ODP Presentation with Python

With Aspose.Slides for Python via .NET , you can replace sensitive text throughout an ODP presentation. Use Presentation.replace_text with TextSearchOptions to control the search, then save the modified presentation.

Redact Text in an ODP Presentation - Python

search_options = slides.TextSearchOptions()
search_options.whole_words_only = True
search_options.include_notes = True

with slides.Presentation("presentation.odp") as presentation:
    presentation.replace_text("Confidential", "[REDACTED]", search_options, None)
    presentation.save("redacted-presentation.odp", slides.export.SaveFormat.ODP)

How to Redact Text in an ODP Presentation with Python

Follow these steps to replace sensitive text in an ODP presentation.

  1. Open the ODP file with Presentation.

  2. Use Presentation.replace_text with TextSearchOptions to replace the required text.

  3. Save the modified presentation with SaveFormat.ODP.

Online ODP Redaction

Other Supported Redaction Formats

Use Python to redact text in other supported presentation formats.