summaryrefslogtreecommitdiff
path: root/api-magic/stdout_filterer.py
diff options
context:
space:
mode:
Diffstat (limited to 'api-magic/stdout_filterer.py')
-rw-r--r--api-magic/stdout_filterer.py15
1 files changed, 15 insertions, 0 deletions
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