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 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",
pointblank/_constants.py CHANGED
@@ -118,7 +118,6 @@ IBIS_BACKENDS = [
118
118
  "mysql",
119
119
  "parquet",
120
120
  "postgres",
121
- "pyspark",
122
121
  "snowflake",
123
122
  "sqlite",
124
123
  ]