pointblank 0.7.3__py3-none-any.whl → 0.8.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
@@ -24,13 +24,14 @@ from pointblank.datascan import DataScan, col_summary_tbl
24
24
  from pointblank.draft import DraftValidation
25
25
  from pointblank.schema import Schema
26
26
  from pointblank.tf import TF
27
- from pointblank.thresholds import Actions, Thresholds
27
+ from pointblank.thresholds import Actions, FinalActions, Thresholds
28
28
  from pointblank.validate import (
29
29
  Validate,
30
30
  config,
31
31
  get_action_metadata,
32
32
  get_column_count,
33
33
  get_row_count,
34
+ get_validation_summary,
34
35
  load_dataset,
35
36
  missing_vals_tbl,
36
37
  preview,
@@ -42,6 +43,7 @@ __all__ = [
42
43
  "Validate",
43
44
  "Thresholds",
44
45
  "Actions",
46
+ "FinalActions",
45
47
  "Schema",
46
48
  "DataScan",
47
49
  "DraftValidation",
@@ -59,6 +61,7 @@ __all__ = [
59
61
  "preview",
60
62
  "missing_vals_tbl",
61
63
  "get_action_metadata",
64
+ "get_validation_summary",
62
65
  "get_column_count",
63
66
  "get_row_count",
64
67
  ]
pointblank/_constants.py CHANGED
@@ -13,8 +13,8 @@ COMPATIBLE_DTYPES = {
13
13
  "ne": ["numeric", "datetime"],
14
14
  "ge": ["numeric", "datetime"],
15
15
  "le": ["numeric", "datetime"],
16
- "between": ["numeric"],
17
- "outside": ["numeric"],
16
+ "between": ["numeric", "datetime"],
17
+ "outside": ["numeric", "datetime"],
18
18
  "in_set": ["numeric", "str"],
19
19
  "not_in_set": ["numeric", "str"],
20
20
  "regex": ["str"],
@@ -159,14 +159,21 @@ REPORTING_LANGUAGES = [
159
159
  "it",
160
160
  "es",
161
161
  "pt",
162
+ "ro",
162
163
  "tr",
163
164
  "zh-Hans",
164
165
  "zh-Hant",
166
+ "ja",
167
+ "ko",
165
168
  "ru",
169
+ "cs",
166
170
  "pl",
167
171
  "da",
168
172
  "sv",
173
+ "nb",
169
174
  "nl",
175
+ "fi",
176
+ "is",
170
177
  ]
171
178
 
172
179
  SEVERITY_LEVEL_COLORS = {