From 4632f8bc1e0318dd9d5057828a2fd8c851efb858 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sun, 11 Feb 2024 07:52:32 -0700 Subject: more --- api-magic/stdout_filterer.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 api-magic/stdout_filterer.py (limited to 'api-magic/stdout_filterer.py') diff --git a/api-magic/stdout_filterer.py b/api-magic/stdout_filterer.py new file mode 100644 index 0000000..2d6a6f6 --- /dev/null +++ b/api-magic/stdout_filterer.py @@ -0,0 +1,15 @@ +import re + + +class RedactPhoneNumbers: + def __init__(self, stream): + self.stream = stream + + def write(self, text): + # Regular expression to match phone numbers + #phone_regex = r"(\+\d{1,2}\s?)?1?\-?\.?\s?\(?\d{3}\)?[\s.-]?\d{3}[\s.-]?\d{4}" + #redacted_text = re.sub(phone_regex, "****", text) + self.stream.write(text) + + def flush(self): + self.stream.flush() \ No newline at end of file -- cgit v1.2.3