acryl-datahub-classify
[DEPRECATED] Library to predict info types for DataHub
What it is and what it does
acryl-datahub-classify is a deprecated library that identifies sensitive information types in database columns by combining pattern matching, specialized validation libraries, and metadata analysis. It takes column metadata (name, description, datatype) and sample values, then scores each against configurable infotypes like phone numbers, email addresses, credit card numbers, and vehicle identification numbers. The package uses phonenumbers, schwifty, spacy, ipaddress, vininfo, and python-stdnum to validate candidate values and weights predictions across four factors: column name, description, datatype, and actual values. It returns confidence scores and debug information for each detected infotype.
The library is designed for integration with DataHub data catalogs to automate sensitive data discovery and classification. It supports 14 built-in infotypes out of the box and allows custom regex-based infotypes through configuration dictionaries. However, the package is explicitly marked as deprecated and no longer actively maintained, meaning it will not receive updates or bug fixes.
Use it for:
- Automatically tag sensitive columns in a DataHub catalog during data ingestion to flag PII that requires access controls.
- Scan database schemas to identify columns containing credit card or bank account numbers for compliance audits.
- Build a custom data classification pipeline that detects phone numbers, email addresses, and names in unstructured column samples.
- Validate that column metadata (names and descriptions) aligns with detected sensitive data types for data governance.
- Generate confidence-scored infotype proposals to assist manual data stewardship workflows without full automation.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Predicts sensitive data types (infotypes) in database columns by analyzing column metadata, descriptions, datatypes, and sample values using pattern matching and specialized libraries.
No. The package is explicitly deprecated and no longer maintained. While it has low install friction and permissive licensing, the lack of active maintenance means no security patches, bug fixes, or support for new Python versions or infotype requirements. For new projects, seek an actively maintained alternative; for existing deployments, plan migration away from this library.
Install
acryl-datahub-classify on PyPI
pip
pip install acryl-datahub-classifyuv
uv add acryl-datahub-classifypoetry
poetry add acryl-datahub-classifyInstalling acryl-datahub-classify
License in practice
Licensed under Apache License 2.0 (permissive), allowing use, modification, and distribution with minimal restrictions.
Quickstart
from acryl_datahub_classify import predict_infotypes
column_infos = [...] # List of ColumnInfo objects with metadata and sample values
result = predict_infotypes(
column_infos=column_infos,
confidence_level_threshold=0.5,
global_config={...} # Infotype configuration dictionary
)
Requires at least 50 non-null column values when value prediction factor weight is non-zero; spacy model must be installed separately for NLP-based detection.
Verify before relying
- Whether the package's deprecation status means it will receive security patches or if users should expect no further maintenance.
- Performance characteristics when processing large numbers of columns or high-cardinality datasets.
- Accuracy benchmarks for the supported infotypes under different data distributions.
Package facts
| License | Apache License 2.0 (permissive) |
| Python support | supports the current Python release (>=3.7) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 6 — phonenumbers, schwifty, spacy, ipaddress, vininfo, python-stdnum |
| Maintenance | actively maintained — 176 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 191,368/month — #9,883 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: acryl_datahub_classify-0.0.12-py3-none-any.whl
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
acryl-datahubDataHub's ingestion framework and CLI for…
permissive · top 5,000 on PyPI
datahubThis is a redirect package that installs…
permissive · top 15,000 on PyPI
acryl-datahub-airflow-pluginAutomatically captures pipeline lineage, task…
permissive · top 15,000 on PyPI
acryl-datahub-actionsAcryl-datahub-actions is an event-driven…
permissive · top 15,000 on PyPI
acryl-executorAcryl Executor runs DataHub metadata ingestion…
permissive · top 15,000 on PyPI
gliner2GLiNER2 extracts entities, classifies text,…
permissive · top 15,000 on PyPI
carelyticsCarelytics provides healthcare data cleaning,…
permissive · top 15,000 on PyPI
scrubadubDetects and replaces personally identifiable…
permissive · top 5,000 on PyPI
dataclasses-avroschemaGenerates Avro schemas from Python dataclasses,…
permissive · top 5,000 on PyPI