The list of fully configured Redaction-derived classes.
Example
fromgroupdocs.redactionimportRedactor,RedactionPolicyfromgroupdocs.redaction.redactionsimportExactPhraseRedaction,RegexRedaction,ReplacementOptions# Build a reusable policy in memorypolicy=RedactionPolicy([ExactPhraseRedaction("ACME",ReplacementOptions("[CO]")),RegexRedaction(r"\d{2,}",ReplacementOptions("[NUM]")),])# Apply the policy to a documentwithRedactor("document.docx")asredactor:redactor.apply(policy=policy)redactor.save()