Omna · Python

PII Detection in Python — Local-First

Find PII in DataFrames, files, and free text without sending it to a cloud API.

The API

import omna
hits = omna.detect_pii("Patient John Doe, MRN 4421, called from 415-555-0199.")
# [{"type": "NAME", ...}, {"type": "MRN", ...}, {"type": "PHONE", ...}]

Supported entities

NAME · EMAIL · PHONE · SSN · MRN · DOB · ADDRESS · CREDIT_CARD · IP

Try it now

pip install omna