pointblank 0.14.0__py3-none-any.whl → 0.16.0__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 +73 -0
- pointblank/_constants_translations.py +1059 -2
- pointblank/_interrogation.py +883 -1
- pointblank/_spec_utils.py +1015 -0
- pointblank/_typing.py +37 -9
- pointblank/_utils.py +0 -345
- pointblank/_utils_ai.py +28 -3
- pointblank/_utils_llms_txt.py +660 -0
- pointblank/assistant.py +1 -1
- pointblank/column.py +24 -0
- pointblank/data/api-docs.txt +1727 -132
- pointblank/draft.py +52 -3
- pointblank/validate.py +2001 -286
- pointblank/yaml.py +5 -0
- {pointblank-0.14.0.dist-info → pointblank-0.16.0.dist-info}/METADATA +5 -4
- {pointblank-0.14.0.dist-info → pointblank-0.16.0.dist-info}/RECORD +21 -19
- {pointblank-0.14.0.dist-info → pointblank-0.16.0.dist-info}/WHEEL +0 -0
- {pointblank-0.14.0.dist-info → pointblank-0.16.0.dist-info}/entry_points.txt +0 -0
- {pointblank-0.14.0.dist-info → pointblank-0.16.0.dist-info}/licenses/LICENSE +0 -0
- {pointblank-0.14.0.dist-info → pointblank-0.16.0.dist-info}/top_level.txt +0 -0
pointblank/yaml.py
CHANGED
|
@@ -233,11 +233,16 @@ class YAMLValidator:
|
|
|
233
233
|
"col_vals_not_null": "col_vals_not_null",
|
|
234
234
|
"col_vals_null": "col_vals_null",
|
|
235
235
|
"col_vals_expr": "col_vals_expr",
|
|
236
|
+
"col_vals_increasing": "col_vals_increasing",
|
|
237
|
+
"col_vals_decreasing": "col_vals_decreasing",
|
|
238
|
+
"col_vals_within_spec": "col_vals_within_spec",
|
|
236
239
|
"rows_distinct": "rows_distinct",
|
|
237
240
|
"rows_complete": "rows_complete",
|
|
238
241
|
"col_count_match": "col_count_match",
|
|
239
242
|
"row_count_match": "row_count_match",
|
|
240
243
|
"col_schema_match": "col_schema_match",
|
|
244
|
+
"tbl_match": "tbl_match",
|
|
245
|
+
"prompt": "prompt",
|
|
241
246
|
"conjointly": "conjointly",
|
|
242
247
|
"specially": "specially",
|
|
243
248
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pointblank
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.16.0
|
|
4
4
|
Summary: Find out if your data is what you think it is.
|
|
5
5
|
Author-email: Richard Iannone <riannone@me.com>
|
|
6
6
|
License: MIT License
|
|
@@ -42,7 +42,7 @@ Description-Content-Type: text/markdown
|
|
|
42
42
|
License-File: LICENSE
|
|
43
43
|
Requires-Dist: commonmark>=0.9.1
|
|
44
44
|
Requires-Dist: importlib-metadata
|
|
45
|
-
Requires-Dist: great_tables>=0.
|
|
45
|
+
Requires-Dist: great_tables>=0.20.0
|
|
46
46
|
Requires-Dist: narwhals>=2.0.1
|
|
47
47
|
Requires-Dist: typing_extensions>=3.10.0.0
|
|
48
48
|
Requires-Dist: requests>=2.31.0
|
|
@@ -59,6 +59,7 @@ Provides-Extra: generate
|
|
|
59
59
|
Requires-Dist: chatlas>=0.3.0; extra == "generate"
|
|
60
60
|
Requires-Dist: anthropic[bedrock]>=0.45.2; extra == "generate"
|
|
61
61
|
Requires-Dist: openai>=1.63.0; extra == "generate"
|
|
62
|
+
Requires-Dist: httpx>=0.28.0; extra == "generate"
|
|
62
63
|
Requires-Dist: shiny>=1.3.0; extra == "generate"
|
|
63
64
|
Provides-Extra: mcp
|
|
64
65
|
Requires-Dist: mcp[cli]>=1.10.1; extra == "mcp"
|
|
@@ -98,7 +99,7 @@ Dynamic: license-file
|
|
|
98
99
|
|
|
99
100
|
<a href="https://posit-dev.github.io/pointblank/"><img src="https://posit-dev.github.io/pointblank/assets/pointblank_logo.svg" width="85%"/></a>
|
|
100
101
|
|
|
101
|
-
_Data validation
|
|
102
|
+
_Data validation toolkit for assessing and monitoring data quality._
|
|
102
103
|
|
|
103
104
|
[](https://pypi.python.org/pypi/pointblank)
|
|
104
105
|
[](https://pypi.org/project/pointblank/#history)
|
|
@@ -452,7 +453,7 @@ Click the following headings to see some video demonstrations of the CLI:
|
|
|
452
453
|
- **Practical outputs**: Get exactly what you need: counts, extracts, summaries, or full reports
|
|
453
454
|
- **Flexible deployment**: Use in notebooks, scripts, or data pipelines
|
|
454
455
|
- **Customizable**: Tailor validation steps and reporting to your specific needs
|
|
455
|
-
- **Internationalization**: Reports can be generated in
|
|
456
|
+
- **Internationalization**: Reports can be generated in 40 languages, including English, Spanish, French, and German
|
|
456
457
|
|
|
457
458
|
## Documentation and Examples
|
|
458
459
|
|
|
@@ -1,28 +1,30 @@
|
|
|
1
|
-
pointblank/__init__.py,sha256=
|
|
2
|
-
pointblank/_constants.py,sha256=
|
|
3
|
-
pointblank/_constants_translations.py,sha256=
|
|
1
|
+
pointblank/__init__.py,sha256=SCEdSoGrPcyYblchEPOr41cThlidQL6ecd3byLhkJ5E,1998
|
|
2
|
+
pointblank/_constants.py,sha256=fqaSIY5s9dBmXkB12_C6-o4Z5dYyN-KXoAzzK38Fl38,98317
|
|
3
|
+
pointblank/_constants_translations.py,sha256=0D-X2sI0OqdlXrLxOA4WmAe_I315jJQDfeopBDRZkTg,323720
|
|
4
4
|
pointblank/_datascan_utils.py,sha256=EMfeabXm_ZsCUKPROB7rFhyOpjtRs8jcnZ_9nBtMyws,1750
|
|
5
|
-
pointblank/_interrogation.py,sha256=
|
|
6
|
-
pointblank/
|
|
7
|
-
pointblank/
|
|
8
|
-
pointblank/
|
|
5
|
+
pointblank/_interrogation.py,sha256=kqsklOOhWmI246NA5iwZm-Bn1SVuSo7q5TgwFoFGID8,114359
|
|
6
|
+
pointblank/_spec_utils.py,sha256=rOSbv0BTS4gbLk241R3VDgKXEHBED_WNimQiit5JkvI,28395
|
|
7
|
+
pointblank/_typing.py,sha256=cLF2D7UeqHR2J3WDebkWav6U4pA45zFYJxW-DWLga0E,1973
|
|
8
|
+
pointblank/_utils.py,sha256=5gQmQaunjsqs5_0PsTIiknnj_Y8uW8NydaDslmpXfSk,19483
|
|
9
|
+
pointblank/_utils_ai.py,sha256=-Eamr6vwDxhQbnB99zfumnfxbB552UUwXfXfCVkR2nM,31125
|
|
9
10
|
pointblank/_utils_check_args.py,sha256=rFEc1nbCN8ftsQQWVjCNWmQ2QmUDxkfgmoJclrZeTLs,5489
|
|
10
11
|
pointblank/_utils_html.py,sha256=uJWvS9JwQVEZgwsGmScA_u_EBRND75rzUvnJPalbRVs,3731
|
|
12
|
+
pointblank/_utils_llms_txt.py,sha256=XYYmUcFIpDrI2C06jeo6MEPxQlZTF6vnVk3tJcXeBEQ,22533
|
|
11
13
|
pointblank/actions.py,sha256=D6o9B2_ES9PNQg9HZwREacrrt-3A5bhdrBkL1UXz__s,18281
|
|
12
|
-
pointblank/assistant.py,sha256=
|
|
14
|
+
pointblank/assistant.py,sha256=BcbZIz-ooFSOPOVZg3JtBhWeT8MIH8OPLes5yC8DSzI,15895
|
|
13
15
|
pointblank/cli.py,sha256=hRVPdjU4dxZZ4XdWN2A7OEnsvWB15dXFPn-Chhi7tNs,229394
|
|
14
|
-
pointblank/column.py,sha256=
|
|
16
|
+
pointblank/column.py,sha256=k46yxEzoQZhYmZD1cOy1lDUHPTk3D1lC4Ye3yJ535FM,78617
|
|
15
17
|
pointblank/compare.py,sha256=kFd18CehHz7g-2MF1kSmJSdOoAP80q_9PaF6QzHC1ds,866
|
|
16
18
|
pointblank/datascan.py,sha256=xFhpcoLD16mJH_yhMm0NbCa5VUk5cz3iazn5RfNXlao,24710
|
|
17
|
-
pointblank/draft.py,sha256=
|
|
19
|
+
pointblank/draft.py,sha256=j6uATRE3zVtBSiDj1G5JtwVdcjaIUzoCCPqiLuRSmV0,17817
|
|
18
20
|
pointblank/scan_profile.py,sha256=Zy-qyqggod0mP1PcES6qTxIaENkxT-FTNM8LWFVhRD0,10546
|
|
19
21
|
pointblank/scan_profile_stats.py,sha256=qdzoGXB-zi2hmpA4mTz6LLTqMnb-NRG9ndxU9cxS72w,4461
|
|
20
22
|
pointblank/schema.py,sha256=yir-2VNmHyNdH1vGpx3adqOXdvspJlMKhJmJQz4egqU,48794
|
|
21
23
|
pointblank/segments.py,sha256=RXp3lPr3FboVseadNqLgIeoMBh_mykrQSFp1WtV41Yg,5570
|
|
22
24
|
pointblank/thresholds.py,sha256=KhvCCB_rlUHq1RjZ6SxXZLVrolOn_D2Ppxb0ABnwCRw,25764
|
|
23
|
-
pointblank/validate.py,sha256=
|
|
24
|
-
pointblank/yaml.py,sha256=
|
|
25
|
-
pointblank/data/api-docs.txt,sha256=
|
|
25
|
+
pointblank/validate.py,sha256=wyMCIu5SBcucaXjMR624FPiLikQpGix1zQnGufVGO9g,843129
|
|
26
|
+
pointblank/yaml.py,sha256=X6EKI6V7SofNXoorEwWwpyl-Ow5Rta_Q0s3Mh2jxkAY,63300
|
|
27
|
+
pointblank/data/api-docs.txt,sha256=MaBDaQoKxxT-MSPs9ok0zkQZ4wWjgGe7FwXvqFnTB0g,611101
|
|
26
28
|
pointblank/data/game_revenue-duckdb.zip,sha256=tKIVx48OGLYGsQPS3h5AjA2Nyq_rfEpLCjBiFUWhagU,35880
|
|
27
29
|
pointblank/data/game_revenue.zip,sha256=7c9EvHLyi93CHUd4p3dM4CZ-GucFCtXKSPxgLojL32U,33749
|
|
28
30
|
pointblank/data/global_sales-duckdb.zip,sha256=2ok_cvJ1ZuSkXnw0R6_OkKYRTWhJ-jJEMq2VYsv5fqY,1336390
|
|
@@ -47,9 +49,9 @@ pointblank/data/validations/pandas_compatible.pkl,sha256=-85iBWKH_SYu8oq1752pAMK
|
|
|
47
49
|
pointblank/data/validations/preprocessing_functions.py,sha256=DudTuQVGzEnZb0UYBaPou08ad3dmdxfcOZuPMkdM6A0,1422
|
|
48
50
|
pointblank/data/validations/simple_preprocessing.json,sha256=2aBnY2fmrIwlIbEprzqxYoZtsJbQ8o0VBjnuDo_dTqo,1546
|
|
49
51
|
pointblank/data/validations/simple_preprocessing.pkl,sha256=Arp9DHWbZVYbaLR7Xg-poZyvOgplYaqAQoWD1DohiZw,6785
|
|
50
|
-
pointblank-0.
|
|
51
|
-
pointblank-0.
|
|
52
|
-
pointblank-0.
|
|
53
|
-
pointblank-0.
|
|
54
|
-
pointblank-0.
|
|
55
|
-
pointblank-0.
|
|
52
|
+
pointblank-0.16.0.dist-info/licenses/LICENSE,sha256=apLF-HWPNU7pT5bmf5KmZpD5Cklpy2u-BN_0xBoRMLY,1081
|
|
53
|
+
pointblank-0.16.0.dist-info/METADATA,sha256=2RfE1gZGougi3rPBkYhJz3efiOMrmIdOXqOfVd80Z2I,22372
|
|
54
|
+
pointblank-0.16.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
55
|
+
pointblank-0.16.0.dist-info/entry_points.txt,sha256=GqqqOTOH8uZe22wLcvYjzpizqk_j4MNcUo2YM14ryCw,42
|
|
56
|
+
pointblank-0.16.0.dist-info/top_level.txt,sha256=-wHrS1SvV8-nhvc3w-PPYs1C1WtEc1pK-eGjubbCCKc,11
|
|
57
|
+
pointblank-0.16.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|