Skip to main content

Framework for masking and unmasking PII.

Project description

🕶️ VeilData

A lightweight framework for masking and unmasking Personally Identifiable Information (PII).

CI codecov PyPI version License


🧠 Why VeilData

Modern AI systems touch sensitive data every day.
VeilData makes it easy to redact, anonymize, and later restore information.


🚀 Quick Start

Installation

From PyPI

pip install veildata

Run from Docker

docker build -t veildata .
alias veildata="docker run --rm -v \$(pwd):/app veildata"
veildata mask data/input.csv --out data/redacted.csv

Running in Docker

docker build -t veildata .
docker run -it ghcr.io/veildata/veildata:latest

For Development

git clone https://github.com/VeilData/veildata.git
cd veildata
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv
uv sync

Quickstart Guide

Mark sensitive data

veildata mask input.txt

Example config.yaml

patterns:
  EMAIL: "\\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Z|a-z]{2,}\\b"

Reveal previously mask data

veildata unmask masked.txt

** Using Docker**

docker run --rm -v $(pwd):/app veildata mask input.txt --out masked.txt

File Input/Output (CLI)

Mask a file, save the output, and keep a token store for reversibility:

veildata mask input.txt --output masked.txt --store store.json

Unmask the file using the stored tokens:

veildata unmask masked.txt --store store.json

Python SDK Examples

Regex-based Masking

from veildata import Compose, RegexMasker, TokenStore

# Create a shared TokenStore for reversible masking
store = TokenStore()

# Define your masking pipeline with the shared store
masker = Compose([
    RegexMasker(r"[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}", store=store),  # email
    RegexMasker(r"\b\d{3}-\d{3}-\d{4}\b", store=store),                           # phone
])

text = "Contact John at john.doe@example.com or call 123-456-7890."

# --- Mask the data ---
masked_text = masker(text)
print(masked_text)
# -> Contact John at [REDACTED_1] or call [REDACTED_2].

# --- Unmask it later ---
unmasked_text = store.unmask(masked_text)
print(unmasked_text)
# -> Contact John at john.doe@example.com or call 123-456-7890.

spaCy Named Entity Recognition

# Requires `pip install veildata[spacy]`
from veildata.maskers.ner_spacy import SpacyNERMasker
from veildata import TokenStore

# Shared token store for reversible unmasking
store = TokenStore()

masker = SpacyNERMasker(
    entities=["PERSON", "ORG"],
    store=store
)

text = "Apple was founded by Steve Jobs in Cupertino."
masked = masker(text)
print(masked)  # -> [REDACTED_1] was founded by [REDACTED_2] in Cupertino.

BERT NER Masking

# Requires `pip install veildata[bert]`
from veildata.maskers.ner_bert import BERTNERMasker
from veildata import TokenStore

store = TokenStore()
masker = BERTNERMasker(
    model_name="dslim/bert-base-NER",
    store=store
)

text = "John Smith works at Google in New York."
masked = masker(text)
print(masked)  # -> [REDACTED_1] works at [REDACTED_2] in [REDACTED_3].

File Input/Output

from pathlib import Path
from veildata import Compose, RegexMasker, TokenStore

# Setup masker
store = TokenStore()
masker = Compose([
    RegexMasker(r"\b\d{3}-\d{3}-\d{4}\b", store=store)
])

# Read from file
input_path = Path("input.txt")
if input_path.exists():
    text = input_path.read_text()
    
    # Mask
    masked_text = masker(text)
    
    # Write to file
    Path("masked.txt").write_text(masked_text)
    
    # Save store for later unmasking
    store.save("store.json")

⚙️ CLI Configuration

spaCy PII Detection

ml:
  spacy:
    enabled: true
    model: "en_core_web_lg"
    pii_labels:
      - PERSON
      - ORG
      - GPE
      - LOC
      - NORP

BERT-Style PII Detection

ml:
  bert:
    enabled: true
    model_path: "models/pii-bert-base"
    threshold: 0.5
    label_mapping:
      EMAIL: ["B-EMAIL", "I-EMAIL"]
      PHONE: ["B-PHONE", "I-PHONE"]
      SSN: ["B-SSN", "I-SSN"]

Hybrid Detection

When using --detect-mode hybrid:

  1. Run regex rules on text → produce spans with types
  2. Run ML/NLP engines (spaCy + BERT) → produce spans with types + scores
  3. Merge spans:
    • If spans overlap with same type → keep the union
    • If spans overlap with different types → configurable resolution
options:
  detect_mode: hybrid  # default: rules
  hybrid:
    prefer: ml  # ml | rules | longest_span

🛠️ Continuous Integration

  • CI: .github/workflows/ci.yml runs linting, formatting, build, and tests on every push or PR.
  • Publish: .github/workflows/publish.yml auto-publishes to PyPI when a new v* tag or release is created.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

veildata-0.1.3.tar.gz (34.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

veildata-0.1.3-py3-none-any.whl (28.3 kB view details)

Uploaded Python 3

File details

Details for the file veildata-0.1.3.tar.gz.

File metadata

  • Download URL: veildata-0.1.3.tar.gz
  • Upload date:
  • Size: 34.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for veildata-0.1.3.tar.gz
Algorithm Hash digest
SHA256 82b8cf512a12e9dfce14f7453c76308c50f8a8e45bd801241f434e8e432146c1
MD5 fc7a996fdd718822611e92c661c186af
BLAKE2b-256 588f4de2b7fcb596c7e31627ff6e76e9982cef27a57002af54d228852c94e3a1

See more details on using hashes here.

File details

Details for the file veildata-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: veildata-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 28.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for veildata-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 fe4a5fee728570ede8add1a1b2c25e0e5e44d984e2a1d1b43b4aa2ee7d44b444
MD5 b78cf3156320b3a28c99a65f67090f34
BLAKE2b-256 c738e0360bd681da88b6d23776c3a81315c1534270d71331f3a18ce29d79ab7d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page