save method

save(self, file_path)

Saves the redaction policy to a file.


def save(self, file_path):
    ...
Parameter Type Description
file_path str Path to file.

save(self, output)

Saves the redaction policy to a stream.


def save(self, output):
    ...
Parameter Type Description
output io.RawIOBase Target stream to save the policy

See Also