
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
sentri
Advanced tools
Sentri is a production-ready, configurable data quality validation framework with 10 check types, multiple data connectors, and flexible output formats.
pip install sentri
# Optional: development extras when working on the project itself
pip install -e ".[dev]" # Development install
pip install -e ".[all]" # With all database connectors
from sentri import DataQualityFramework
from sentri.checks import CompletenessCheck, TurnoverCheck
from sentri.connectors import OracleConnector, SnowflakeConnector
# Example: using DataQualityFramework with a config file
framework = DataQualityFramework(config_path="config.yaml")
results = framework.run_checks(start_date="2025-01-01", end_date="2025-01-31")
# config.yaml
source:
type: csv
csv:
file_path: /data/sample.csv
date_column: effective_date
metadata:
dq_check_name: "Sample Check"
date_column: effective_date
id_column: entity_id
checks:
completeness:
value:
thresholds:
absolute_critical: 0.05
absolute_warning: 0.02
description: "Value completeness"
output:
formats: [json, html, csv]
destination: /output
| Check Type | Description |
|---|---|
| Completeness | Monitor null/missing values |
| Uniqueness | Detect duplicate values |
| Range | Validate value bounds |
| Turnover | Track ID additions/removals |
| Value Spike | Detect abnormal value changes |
| Frequency | Monitor category distributions |
| Statistical | Track mean, std, median, etc. |
| Correlation | Validate temporal/cross-column correlation |
| Distribution | Detect distribution shifts (KS test) |
| Drift | Identify gradual drift (PSI) |
dq_framework/
├── src/data_quality/
│ ├── checks/ # Check implementations
│ ├── connectors/ # Data connectors
│ ├── core/ # Exceptions, config, framework
│ ├── formatters/ # Output formatters
│ ├── managers/ # Check manager
│ └── utils/ # Logger, constants
├── tests/ # Unit tests
├── examples/ # Sample configs and scripts
└── pyproject.toml
pytest tests/unit/ -v --cov
Each check supports:
absolute_critical: Fails if exceededabsolute_warning: Warns if exceededdelta_critical/delta_warning: For change-based thresholdsResults include:
MIT
FAQs
Sentri - a production-ready, configurable data quality validation framework
We found that sentri demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.