pointblank 0.11.1__py3-none-any.whl → 0.11.3__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/cli.py +1842 -298
- {pointblank-0.11.1.dist-info → pointblank-0.11.3.dist-info}/METADATA +60 -15
- {pointblank-0.11.1.dist-info → pointblank-0.11.3.dist-info}/RECORD +7 -7
- {pointblank-0.11.1.dist-info → pointblank-0.11.3.dist-info}/WHEEL +0 -0
- {pointblank-0.11.1.dist-info → pointblank-0.11.3.dist-info}/entry_points.txt +0 -0
- {pointblank-0.11.1.dist-info → pointblank-0.11.3.dist-info}/licenses/LICENSE +0 -0
- {pointblank-0.11.1.dist-info → pointblank-0.11.3.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pointblank
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.3
|
|
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
|
|
@@ -156,11 +156,11 @@ validation
|
|
|
156
156
|
|
|
157
157
|
## Why Choose Pointblank?
|
|
158
158
|
|
|
159
|
-
- **Works with your existing stack
|
|
160
|
-
- **Beautiful, interactive reports
|
|
161
|
-
- **Composable validation pipeline
|
|
162
|
-
- **Threshold-based alerts
|
|
163
|
-
- **Practical outputs
|
|
159
|
+
- **Works with your existing stack**: Seamlessly integrates with Polars, Pandas, DuckDB, MySQL, PostgreSQL, SQLite, Parquet, PySpark, Snowflake, and more!
|
|
160
|
+
- **Beautiful, interactive reports**: Crystal-clear validation results that highlight issues and help communicate data quality
|
|
161
|
+
- **Composable validation pipeline**: Chain validation steps into a complete data quality workflow
|
|
162
|
+
- **Threshold-based alerts**: Set 'warning', 'error', and 'critical' thresholds with custom actions
|
|
163
|
+
- **Practical outputs**: Use validation results to filter tables, extract problematic data, or trigger downstream processes
|
|
164
164
|
|
|
165
165
|
## Real-World Example
|
|
166
166
|
|
|
@@ -240,7 +240,7 @@ validation.get_step_report(i=3).show("browser") # Get failing records from step
|
|
|
240
240
|
Pointblank includes a powerful CLI utility called `pb` that lets you run data validation workflows directly from the command line. Perfect for CI/CD pipelines, scheduled data quality checks, or quick validation tasks.
|
|
241
241
|
|
|
242
242
|
<div align="center">
|
|
243
|
-
<img src="https://posit-dev.github.io/pointblank/assets/vhs/cli-complete-workflow.gif" width="
|
|
243
|
+
<img src="https://posit-dev.github.io/pointblank/assets/vhs/cli-complete-workflow.gif" width="100%">
|
|
244
244
|
</div>
|
|
245
245
|
|
|
246
246
|
**Explore Your Data**
|
|
@@ -279,19 +279,60 @@ pb validate small_table --check col-vals-gt --column a --value 5 --show-extract
|
|
|
279
279
|
|
|
280
280
|
```bash
|
|
281
281
|
# Use exit codes for automation (0 = pass, 1 = fail)
|
|
282
|
-
pb validate small_table --check rows-distinct
|
|
282
|
+
pb validate small_table --check rows-distinct --exit-code
|
|
283
283
|
```
|
|
284
284
|
|
|
285
|
-
|
|
285
|
+
Click the following headings to see some video demonstrations of the CLI:
|
|
286
|
+
|
|
287
|
+
<details>
|
|
288
|
+
<summary>Getting Started with the Pointblank CLI</summary>
|
|
289
|
+
|
|
290
|
+
<div align="center">
|
|
291
|
+
<img src="https://posit-dev.github.io/pointblank/assets/vhs/cli-getting-started.gif" width="100%">
|
|
292
|
+
</div>
|
|
293
|
+
|
|
294
|
+
</details>
|
|
295
|
+
<details>
|
|
296
|
+
<summary>Doing Some Data Exploration</summary>
|
|
297
|
+
|
|
298
|
+
<div align="center">
|
|
299
|
+
<img src="https://posit-dev.github.io/pointblank/assets/vhs/cli-data-exploration.gif" width="100%">
|
|
300
|
+
</div>
|
|
301
|
+
|
|
302
|
+
</details>
|
|
303
|
+
<details>
|
|
304
|
+
<summary>Validating Data with the CLI</summary>
|
|
305
|
+
|
|
306
|
+
<div align="center">
|
|
307
|
+
<img src="https://posit-dev.github.io/pointblank/assets/vhs/cli-essential-validations.gif" width="100%">
|
|
308
|
+
</div>
|
|
309
|
+
|
|
310
|
+
</details>
|
|
311
|
+
<details>
|
|
312
|
+
<summary>Using Polars in the CLI</summary>
|
|
313
|
+
|
|
314
|
+
<div align="center">
|
|
315
|
+
<img src="https://posit-dev.github.io/pointblank/assets/vhs/cli-using-polars.gif" width="100%">
|
|
316
|
+
</div>
|
|
317
|
+
|
|
318
|
+
</details>
|
|
319
|
+
<details>
|
|
320
|
+
<summary>Integrating Pointblank with CI/CD</summary>
|
|
321
|
+
|
|
322
|
+
<div align="center">
|
|
323
|
+
<img src="https://posit-dev.github.io/pointblank/assets/vhs/cli-cicd-workflows.gif" width="100%">
|
|
324
|
+
</div>
|
|
325
|
+
|
|
326
|
+
</details>
|
|
286
327
|
|
|
287
328
|
## Features That Set Pointblank Apart
|
|
288
329
|
|
|
289
|
-
- **Complete validation workflow
|
|
290
|
-
- **Built for collaboration
|
|
291
|
-
- **Practical outputs
|
|
292
|
-
- **Flexible deployment
|
|
293
|
-
- **Customizable
|
|
294
|
-
- **Internationalization
|
|
330
|
+
- **Complete validation workflow**: From data access to validation to reporting in a single pipeline
|
|
331
|
+
- **Built for collaboration**: Share results with colleagues through beautiful interactive reports
|
|
332
|
+
- **Practical outputs**: Get exactly what you need: counts, extracts, summaries, or full reports
|
|
333
|
+
- **Flexible deployment**: Use in notebooks, scripts, or data pipelines
|
|
334
|
+
- **Customizable**: Tailor validation steps and reporting to your specific needs
|
|
335
|
+
- **Internationalization**: Reports can be generated in over 20 languages, including English, Spanish, French, and German
|
|
295
336
|
|
|
296
337
|
## Documentation and Examples
|
|
297
338
|
|
|
@@ -351,6 +392,10 @@ There are many ways to contribute to the ongoing development of Pointblank. Some
|
|
|
351
392
|
Please read over the [contributing guidelines](https://github.com/posit-dev/pointblank/blob/main/CONTRIBUTING.md) for
|
|
352
393
|
information on how to get started.
|
|
353
394
|
|
|
395
|
+
## Pointblank for R
|
|
396
|
+
|
|
397
|
+
There's also a version of Pointblank for R, which has been around since 2017 and is widely used in the R community. You can find it at https://github.com/rstudio/pointblank.
|
|
398
|
+
|
|
354
399
|
## Roadmap
|
|
355
400
|
|
|
356
401
|
We're actively working on enhancing Pointblank with:
|
|
@@ -10,7 +10,7 @@ pointblank/_utils_check_args.py,sha256=rFEc1nbCN8ftsQQWVjCNWmQ2QmUDxkfgmoJclrZeT
|
|
|
10
10
|
pointblank/_utils_html.py,sha256=uJWvS9JwQVEZgwsGmScA_u_EBRND75rzUvnJPalbRVs,3731
|
|
11
11
|
pointblank/actions.py,sha256=D6o9B2_ES9PNQg9HZwREacrrt-3A5bhdrBkL1UXz__s,18281
|
|
12
12
|
pointblank/assistant.py,sha256=YsQ9U1wacVIuYFRIJ4maBbBDTzEQPzirhUUPgySosM4,15428
|
|
13
|
-
pointblank/cli.py,sha256=
|
|
13
|
+
pointblank/cli.py,sha256=UDR2n9t6J9EBQUCxB5Prh8R02uy0XI80f23EigCCSKQ,222586
|
|
14
14
|
pointblank/column.py,sha256=_FJjpjv760D1p6YGgqbwmKYktouG7AJ2A9uIMYQBTYA,76560
|
|
15
15
|
pointblank/compare.py,sha256=kFd18CehHz7g-2MF1kSmJSdOoAP80q_9PaF6QzHC1ds,866
|
|
16
16
|
pointblank/datascan.py,sha256=nmTcRLW8nAZfvRS_Nf00Wgx4oUX-o6WFOZqLDbedbu8,24563
|
|
@@ -31,9 +31,9 @@ pointblank/data/nycflights.zip,sha256=yVjbUaKUz2LydSdF9cABuir0VReHBBgV7shiNWSd0m
|
|
|
31
31
|
pointblank/data/polars-api-docs.txt,sha256=KGcS-BOtUs9zgpkWfXD-GFdFh4O_zjdkpX7msHjztLg,198045
|
|
32
32
|
pointblank/data/small_table-duckdb.zip,sha256=BhTaZ2CRS4-9Z1uVhOU6HggvW3XCar7etMznfENIcOc,2028
|
|
33
33
|
pointblank/data/small_table.zip,sha256=lmFb90Nb-v5X559Ikjg31YLAXuRyMkD9yLRElkXPMzQ,472
|
|
34
|
-
pointblank-0.11.
|
|
35
|
-
pointblank-0.11.
|
|
36
|
-
pointblank-0.11.
|
|
37
|
-
pointblank-0.11.
|
|
38
|
-
pointblank-0.11.
|
|
39
|
-
pointblank-0.11.
|
|
34
|
+
pointblank-0.11.3.dist-info/licenses/LICENSE,sha256=apLF-HWPNU7pT5bmf5KmZpD5Cklpy2u-BN_0xBoRMLY,1081
|
|
35
|
+
pointblank-0.11.3.dist-info/METADATA,sha256=6Kc_bKBHO6POlqFhGuv5TE3SF2qMqesu23wd4geQ73I,17748
|
|
36
|
+
pointblank-0.11.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
37
|
+
pointblank-0.11.3.dist-info/entry_points.txt,sha256=GqqqOTOH8uZe22wLcvYjzpizqk_j4MNcUo2YM14ryCw,42
|
|
38
|
+
pointblank-0.11.3.dist-info/top_level.txt,sha256=-wHrS1SvV8-nhvc3w-PPYs1C1WtEc1pK-eGjubbCCKc,11
|
|
39
|
+
pointblank-0.11.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|