pointblank 0.8.6__py3-none-any.whl → 0.9.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/_constants.py +11 -10
- pointblank/_interrogation.py +10 -4
- pointblank/_typing.py +19 -3
- pointblank/data/api-docs.txt +716 -49
- pointblank/datascan.py +4 -4
- pointblank/draft.py +1 -1
- pointblank/thresholds.py +10 -0
- pointblank/validate.py +1071 -50
- {pointblank-0.8.6.dist-info → pointblank-0.9.0.dist-info}/METADATA +19 -4
- {pointblank-0.8.6.dist-info → pointblank-0.9.0.dist-info}/RECORD +13 -13
- {pointblank-0.8.6.dist-info → pointblank-0.9.0.dist-info}/WHEEL +1 -1
- {pointblank-0.8.6.dist-info → pointblank-0.9.0.dist-info}/licenses/LICENSE +0 -0
- {pointblank-0.8.6.dist-info → pointblank-0.9.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pointblank
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.9.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
|
|
@@ -89,6 +89,7 @@ _Data validation made beautiful and powerful_
|
|
|
89
89
|
[](https://pypi.python.org/pypi/pointblank)
|
|
90
90
|
[](https://pypi.org/project/pointblank/#history)
|
|
91
91
|
[](https://pypistats.org/packages/pointblank)
|
|
92
|
+
[](https://anaconda.org/conda-forge/pointblank)
|
|
92
93
|
[](https://img.shields.io/github/license/posit-dev/pointblank)
|
|
93
94
|
|
|
94
95
|
[](https://github.com/posit-dev/pointblank/actions/workflows/ci-tests.yaml)
|
|
@@ -102,9 +103,21 @@ _Data validation made beautiful and powerful_
|
|
|
102
103
|
|
|
103
104
|
</div>
|
|
104
105
|
|
|
106
|
+
<div align="right">
|
|
107
|
+
<a href="translations/README.fr.md">Français</a> |
|
|
108
|
+
<a href="translations/README.de.md">Deutsch</a> |
|
|
109
|
+
<a href="translations/README.it.md">Italiano</a> |
|
|
110
|
+
<a href="translations/README.es.md">Español</a> |
|
|
111
|
+
<a href="translations/README.pt-BR.md">Português</a> |
|
|
112
|
+
<a href="translations/README.nl.md">Nederlands</a> |
|
|
113
|
+
<a href="translations/README.zh-CN.md">简体中文</a> |
|
|
114
|
+
<a href="translations/README.ja.md">日本語</a> |
|
|
115
|
+
<a href="translations/README.ko.md">한국어</a>
|
|
116
|
+
</div>
|
|
117
|
+
|
|
105
118
|
## What is Pointblank?
|
|
106
119
|
|
|
107
|
-
Pointblank is a
|
|
120
|
+
Pointblank is a powerful, yet elegant data validation framework for Python that transforms how you ensure data quality. With its intuitive, chainable API, you can quickly validate your data against comprehensive quality checks and visualize results through stunning, interactive reports that make data issues immediately actionable.
|
|
108
121
|
|
|
109
122
|
Whether you're a data scientist, data engineer, or analyst, Pointblank helps you catch data quality issues before they impact your analyses or downstream systems.
|
|
110
123
|
|
|
@@ -134,9 +147,9 @@ validation
|
|
|
134
147
|
|
|
135
148
|
<br>
|
|
136
149
|
|
|
137
|
-
Why Choose Pointblank?
|
|
150
|
+
## Why Choose Pointblank?
|
|
138
151
|
|
|
139
|
-
- **Works with your existing stack** - Seamlessly integrates with Polars, Pandas, DuckDB, MySQL, PostgreSQL, SQLite, Parquet, and more!
|
|
152
|
+
- **Works with your existing stack** - Seamlessly integrates with Polars, Pandas, DuckDB, MySQL, PostgreSQL, SQLite, Parquet, PySpark, Snowflake, and more!
|
|
140
153
|
- **Beautiful, interactive reports** - Crystal-clear validation results that highlight issues and help communicate data quality
|
|
141
154
|
- **Composable validation pipeline** - Chain validation steps into a complete data quality workflow
|
|
142
155
|
- **Threshold-based alerts** - Set 'warning', 'error', and 'critical' thresholds with custom actions
|
|
@@ -213,6 +226,8 @@ validation.get_step_report(i=3).show("browser") # Get failing records from step
|
|
|
213
226
|
<img src="https://posit-dev.github.io/pointblank/assets/pointblank-step-report.png" width="800px">
|
|
214
227
|
</div>
|
|
215
228
|
|
|
229
|
+
<br>
|
|
230
|
+
|
|
216
231
|
## Features That Set Pointblank Apart
|
|
217
232
|
|
|
218
233
|
- **Complete validation workflow** - From data access to validation to reporting in a single pipeline
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
pointblank/__init__.py,sha256=uHrX-ARZOhvWogXXqKV65RO2DXdYLZNCD1oNcm8hE6o,1585
|
|
2
|
-
pointblank/_constants.py,sha256=
|
|
2
|
+
pointblank/_constants.py,sha256=l7jNb-UqrKER30FnrRKlIK5onc0Id37CVV6l7i4Pn00,75777
|
|
3
3
|
pointblank/_constants_docs.py,sha256=JBmtt16zTYQ-zaM4ElLExtKs-dKlnN553Ys2ML1Y1C8,2099
|
|
4
4
|
pointblank/_constants_translations.py,sha256=QfOmVESwWFokWXpgLkEFHGik8o1EUBhIXYtaEqtGGNg,166575
|
|
5
|
-
pointblank/_interrogation.py,sha256=
|
|
6
|
-
pointblank/_typing.py,sha256=
|
|
5
|
+
pointblank/_interrogation.py,sha256=SkW0DUoCafQbpPToVseUPLzaYXXTTzN9y6mbzjbRmNw,81082
|
|
6
|
+
pointblank/_typing.py,sha256=ConITAbsFxU8CkNXY7l0Lua9hGofeDDJAWw-lGAIVgI,764
|
|
7
7
|
pointblank/_utils.py,sha256=0V-LxUjSjGfcZV2_IH-5KPikYiVWdt4QSMQDioyZoZc,24681
|
|
8
8
|
pointblank/_utils_check_args.py,sha256=rFEc1nbCN8ftsQQWVjCNWmQ2QmUDxkfgmoJclrZeTLs,5489
|
|
9
9
|
pointblank/_utils_html.py,sha256=sTcmnBljkPjRZF1hbpoHl4HmnXOazsA91gC9iWVIrRk,2848
|
|
10
10
|
pointblank/actions.py,sha256=oazJk4pe3lIA14hjyCDtPOr4r_sp4vGGo2eyU_LX5_0,18268
|
|
11
11
|
pointblank/assistant.py,sha256=ZIQJKTy9rDwq_Wmr1FMp0J7Q3ekxSgF3_tK0p4PTEUM,14850
|
|
12
12
|
pointblank/column.py,sha256=LumGbnterw5VM7-2-7Za3jdlug1VVS9a3TOH0Y1E5eg,76548
|
|
13
|
-
pointblank/datascan.py,sha256=
|
|
14
|
-
pointblank/draft.py,sha256=
|
|
13
|
+
pointblank/datascan.py,sha256=rRz0hR81uTgd1e9OfLdfsNYXRk8vcpE8PW8exu-GJoE,47697
|
|
14
|
+
pointblank/draft.py,sha256=cusr4fBiNncCKIOU8UwvJcvkBeBuUnqH_UfYp9dtNss,15777
|
|
15
15
|
pointblank/schema.py,sha256=gzUCmtccO2v15MH2bo9uHUYjkKEEne1okQucxcH39pc,44291
|
|
16
16
|
pointblank/tf.py,sha256=8o_8m4i01teulEe3-YYMotSNf3tImjBMInsvdjSAO5Q,8844
|
|
17
|
-
pointblank/thresholds.py,sha256=
|
|
18
|
-
pointblank/validate.py,sha256=
|
|
19
|
-
pointblank/data/api-docs.txt,sha256=
|
|
17
|
+
pointblank/thresholds.py,sha256=aAPfdo3VMCw_G_OAh4nEsCYfIynDfNRJOMrG8yDM6U8,25717
|
|
18
|
+
pointblank/validate.py,sha256=pr1Riar-axz17aUwiinZdJE67tH8x24eBPUB1Dw5aYk,570820
|
|
19
|
+
pointblank/data/api-docs.txt,sha256=Jf_akggFaJPh0chntpq2cRTa1Enuupk723zty_x0k-s,452511
|
|
20
20
|
pointblank/data/game_revenue-duckdb.zip,sha256=tKIVx48OGLYGsQPS3h5AjA2Nyq_rfEpLCjBiFUWhagU,35880
|
|
21
21
|
pointblank/data/game_revenue.zip,sha256=7c9EvHLyi93CHUd4p3dM4CZ-GucFCtXKSPxgLojL32U,33749
|
|
22
22
|
pointblank/data/nycflights-duckdb.zip,sha256=GQrHO9tp7d9cNGFNSbA9EKF19MLf6t2wZE0U9-hIKow,5293077
|
|
@@ -24,8 +24,8 @@ pointblank/data/nycflights.zip,sha256=yVjbUaKUz2LydSdF9cABuir0VReHBBgV7shiNWSd0m
|
|
|
24
24
|
pointblank/data/polars-api-docs.txt,sha256=KGcS-BOtUs9zgpkWfXD-GFdFh4O_zjdkpX7msHjztLg,198045
|
|
25
25
|
pointblank/data/small_table-duckdb.zip,sha256=BhTaZ2CRS4-9Z1uVhOU6HggvW3XCar7etMznfENIcOc,2028
|
|
26
26
|
pointblank/data/small_table.zip,sha256=lmFb90Nb-v5X559Ikjg31YLAXuRyMkD9yLRElkXPMzQ,472
|
|
27
|
-
pointblank-0.
|
|
28
|
-
pointblank-0.
|
|
29
|
-
pointblank-0.
|
|
30
|
-
pointblank-0.
|
|
31
|
-
pointblank-0.
|
|
27
|
+
pointblank-0.9.0.dist-info/licenses/LICENSE,sha256=apLF-HWPNU7pT5bmf5KmZpD5Cklpy2u-BN_0xBoRMLY,1081
|
|
28
|
+
pointblank-0.9.0.dist-info/METADATA,sha256=091J9RejW9b-vT63C6w_5shh-82G0t451895oNm479M,14732
|
|
29
|
+
pointblank-0.9.0.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
|
|
30
|
+
pointblank-0.9.0.dist-info/top_level.txt,sha256=-wHrS1SvV8-nhvc3w-PPYs1C1WtEc1pK-eGjubbCCKc,11
|
|
31
|
+
pointblank-0.9.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|