pointblank 0.11.6__py3-none-any.whl → 0.12.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pointblank/__init__.py +2 -0
- pointblank/_constants.py +0 -1
- pointblank/_interrogation.py +244 -606
- pointblank/_utils.py +65 -3
- pointblank/assistant.py +9 -0
- pointblank/cli.py +39 -24
- pointblank/data/api-docs.txt +658 -29
- pointblank/schema.py +17 -0
- pointblank/segments.py +163 -0
- pointblank/validate.py +344 -92
- {pointblank-0.11.6.dist-info → pointblank-0.12.1.dist-info}/METADATA +59 -6
- {pointblank-0.11.6.dist-info → pointblank-0.12.1.dist-info}/RECORD +16 -15
- {pointblank-0.11.6.dist-info → pointblank-0.12.1.dist-info}/WHEEL +0 -0
- {pointblank-0.11.6.dist-info → pointblank-0.12.1.dist-info}/entry_points.txt +0 -0
- {pointblank-0.11.6.dist-info → pointblank-0.12.1.dist-info}/licenses/LICENSE +0 -0
- {pointblank-0.11.6.dist-info → pointblank-0.12.1.dist-info}/top_level.txt +0 -0
pointblank/__init__.py
CHANGED
|
@@ -25,6 +25,7 @@ from pointblank.column import (
|
|
|
25
25
|
from pointblank.datascan import DataScan, col_summary_tbl
|
|
26
26
|
from pointblank.draft import DraftValidation
|
|
27
27
|
from pointblank.schema import Schema
|
|
28
|
+
from pointblank.segments import seg_group
|
|
28
29
|
from pointblank.tf import TF
|
|
29
30
|
from pointblank.thresholds import Actions, FinalActions, Thresholds
|
|
30
31
|
from pointblank.validate import (
|
|
@@ -76,6 +77,7 @@ __all__ = [
|
|
|
76
77
|
"get_validation_summary",
|
|
77
78
|
"get_column_count",
|
|
78
79
|
"get_row_count",
|
|
80
|
+
"seg_group",
|
|
79
81
|
"send_slack_notification",
|
|
80
82
|
# YAML functionality
|
|
81
83
|
"yaml_interrogate",
|