Shroud scrubs PHI/PII from surgery logs before they hit your systems. Drop in one SDK call to redact MRNs, implant costs, and patient names.
Keep procedure cost analytics intact while scrubbing MRNs, patient names, and device serials from raw logs.
"US surgery centers spend ~$7B a year on implants, and in orthopedic and spine cases the implant alone runs ~40-60% of the total cost of the procedure." — YC Healthcare
Wrap your Python logger with `shroud.redact()` and ship. No schema changes, no data governance workshop.
# pip install shroud import logging from shroud import Client shroud = Client(api_key="sk_live_...") class ShroudedLogger: def __init__(self, logger): self._logger = logger def info(self, msg): clean = shroud.redact(msg, types=["MRN", "AMOUNT", "NAME", "DOB", "CARD"]) self._logger.info(clean) logging.basicConfig(level=logging.INFO) logger = ShroudedLogger(logging.getLogger()) logger.info("Patient Jonah (DOB 1995-08-12) received implant S/N 8A4C2B9F, MRN 8471293, cost $24,680")