Metadata-Version: 2.4
Name: phi-scrub
Version: 0.1.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Text Processing
Summary: PHI/PII redaction engine for behavioral-health text (Rust core)
Author-email: Jeremy Gracey <Jeremy.a.gracey@gmail.com>
License: MIT OR Apache-2.0
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Repository, https://github.com/JeremyGracey-AI/phi-scrub

# phi-scrub

Rust PHI/PII redaction engine for behavioral-health text. Library + CLI; Python bindings (PyO3) planned.

```bash
echo "SSN 123-45-6789, call 808-555-0100" | cargo run -q
# SSN [SSN], call [PHONE]
echo "mail me@x.org" | cargo run -q -- --json
```

```rust
use phi_scrub::Scrubber;
let out = Scrubber::new().redact("SSN 123-45-6789");
```

Dev: `cargo fmt --check && cargo clippy --all-targets -- -D warnings && cargo test`

License: MIT OR Apache-2.0

