File tree Expand file tree Collapse file tree 4 files changed +246
-141
lines changed
Expand file tree Collapse file tree 4 files changed +246
-141
lines changed Original file line number Diff line number Diff line change 22DataScreenIQ Python SDK
33~~~~~~~~~~~~~~~~~~~~~~~
44
5- Real-time data quality screening at the edge.
5+ Real-time data quality screening for data pipelines.
6+
7+ Detect schema drift, null spikes, and type mismatches
8+ before data reaches your database.
9+
10+ Quick start:
611
712 import datascreeniq as dsiq
813
1318 print(report.health_score) # 0.0 – 1.0
1419 print(report.issues) # detected quality issues
1520
21+ Docs: https://datascreeniq.com/docs
1622"""
1723
24+ from importlib .metadata import version , PackageNotFoundError
25+
1826from .client import Client
1927from .models import ScreenReport
2028from .exceptions import (
2735 DataQualityError ,
2836)
2937
30- __version__ = "1.0.7"
38+ # -----------------------------
39+ # Version (auto-sync with package)
40+ # -----------------------------
41+ try :
42+ __version__ = version ("datascreeniq" )
43+ except PackageNotFoundError :
44+ __version__ = "unknown"
45+
3146__all__ = [
3247 "Client" ,
3348 "ScreenReport" ,
3853 "ValidationError" ,
3954 "APIError" ,
4055 "DataQualityError" ,
41- ]
56+ ]
You can’t perform that action at this time.
0 commit comments