pointblank 0.11.2__tar.gz → 0.11.4__tar.gz
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-0.11.2 → pointblank-0.11.4}/CITATION.cff +1 -1
- {pointblank-0.11.2 → pointblank-0.11.4}/PKG-INFO +48 -1
- {pointblank-0.11.2 → pointblank-0.11.4}/README.md +47 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/_quarto.yml +10 -0
- pointblank-0.11.4/docs/assets/vhs/cli-cicd-workflows.gif +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/vhs/cli-cicd-workflows.tape +5 -8
- pointblank-0.11.4/docs/assets/vhs/cli-complete-workflow.gif +0 -0
- pointblank-0.11.4/docs/assets/vhs/cli-complete-workflow.tape +80 -0
- pointblank-0.11.4/docs/assets/vhs/cli-data-exploration.gif +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/vhs/cli-data-exploration.tape +6 -6
- pointblank-0.11.4/docs/assets/vhs/cli-essential-validations.gif +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/vhs/cli-essential-validations.tape +6 -9
- pointblank-0.11.4/docs/assets/vhs/cli-getting-started.gif +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/vhs/cli-getting-started.tape +2 -5
- pointblank-0.11.4/docs/assets/vhs/cli-using-polars.gif +0 -0
- pointblank-0.11.4/docs/assets/vhs/cli-using-polars.tape +64 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/cli-interactive/index.qmd +9 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/index.qmd +5 -0
- pointblank-0.11.4/docs/user-guide/yaml-validation-workflows.qmd +664 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/__init__.py +9 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/cli.py +1679 -246
- pointblank-0.11.4/pointblank/yaml.py +1386 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank.egg-info/PKG-INFO +48 -1
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank.egg-info/SOURCES.txt +5 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_comprehensive_validation_report_html_snap/comprehensive_validation_report.html +1 -1
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_no_interrogation_validation_report_html_snap/no_interrogation_validation_report.html +1 -1
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_briefs_global_local_html/validation_report_briefs_global_local.html +1 -1
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_briefs_html/validation_report_with_briefs.html +1 -1
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_segments_html/duckdb/validation_report_segments.html +1 -1
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_segments_html/pandas/validation_report_segments.html +1 -1
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_segments_html/polars/validation_report_segments.html +1 -1
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_segments_with_pre_html/validation_report_segments_with_pre.html +1 -1
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_with_selector_helper_functions_no_match_snap/tbl_memtable_variable_names/selector_helper_functions_no_match.html +1 -1
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_with_selector_helper_functions_no_match_snap/tbl_pd_variable_names/selector_helper_functions_no_match.html +1 -1
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_with_selector_helper_functions_no_match_snap/tbl_pl_variable_names/selector_helper_functions_no_match.html +1 -1
- pointblank-0.11.4/tests/test_yaml.py +1688 -0
- pointblank-0.11.2/docs/assets/vhs/cli-cicd-workflows.gif +0 -0
- pointblank-0.11.2/docs/assets/vhs/cli-complete-workflow.gif +0 -0
- pointblank-0.11.2/docs/assets/vhs/cli-complete-workflow.tape +0 -99
- pointblank-0.11.2/docs/assets/vhs/cli-data-exploration.gif +0 -0
- pointblank-0.11.2/docs/assets/vhs/cli-essential-validations.gif +0 -0
- pointblank-0.11.2/docs/assets/vhs/cli-getting-started.gif +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/.github/CODE_OF_CONDUCT.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/.github/ISSUE_TEMPLATE/bug.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/.github/ISSUE_TEMPLATE/feature.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/.github/ISSUE_TEMPLATE/question.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/.github/SECURITY.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/.github/workflows/ci-docs.yaml +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/.github/workflows/ci-tests.yaml +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/.github/workflows/code-checks.yaml +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/.gitignore +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/.pre-commit-config.yaml +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/.vscode/settings.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/CONTRIBUTING.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/LICENSE +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/Makefile +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/data_raw/game_revenue.csv +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/data_raw/global_sales.csv +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/data_raw/global_sales_dataset.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/data_raw/nycflights.csv +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/data_raw/small_table.csv +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/data_raw/worldcities.csv +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/data_raw/x-01-parquet.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/data_raw/x-02-duckdb.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/data_raw/x-03-sqlite.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/.gitignore +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/_extensions/machow/interlinks/.gitignore +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/_extensions/machow/interlinks/_extension.yml +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/_extensions/machow/interlinks/interlinks.lua +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/fav-logo.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-info-worldcities-csv.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-info-worldcities-github-csv.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-make-template.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-missing-worldcities-csv.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-preview-game_revenue-all-columns.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-preview-game_revenue-column-names.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-preview-game_revenue-column-range.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-preview-worldcities-csv-no-row-numbers.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-preview-worldcities-csv.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-run-worldcities_validation-extracts.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-run-worldcities_validation-fail-on-warning.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-run-worldcities_validation-output.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-run-worldcities_validation.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-scan-worldcities-csv.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-validate-exit-code.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-validate-multi-check.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-validate-rows-complete-worldcities-csv.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-validate-rows-distinct-worldcities-csv.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-validate-show-extract.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-validate-worldcities-gt-0-population.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-validate-worldcities-not-null-city_name.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pb-validate-write-extract.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pointblank-sales-data.de.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pointblank-sales-data.es.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pointblank-sales-data.fr.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pointblank-sales-data.it.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pointblank-sales-data.ja.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pointblank-sales-data.ko.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pointblank-sales-data.nl.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pointblank-sales-data.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pointblank-sales-data.pt-BR.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pointblank-sales-data.zh-CN.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pointblank-step-report.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pointblank-tabular-report.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/pointblank_logo.svg +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/posit-logo-black.svg +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/validation-table-diagram.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/validation-test-units.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/vhs/.gitignore +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/assets/vhs/validation.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/all-about-actions/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/intro-pointblank/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/intro-pointblank/pointblank-localized.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/intro-pointblank/step_report.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/intro-pointblank/validation-table-diagram.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/intro-pointblank/validation-test-units.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/lets-workshop-together/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/overhauled-user-guide/advanced-in-sidebar.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/overhauled-user-guide/breadth-and-depth.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/overhauled-user-guide/explanation-of-visual.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/overhauled-user-guide/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/overhauled-user-guide/links-in-guide.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/overhauled-user-guide/segments.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/overhauled-user-guide/step-report.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/overhauled-user-guide/validation-three-things.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/pointblank_blog_logo.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/blog/validation-libs-2025/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/01-starter/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/02-advanced/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/03-data-extracts/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/04-sundered-data/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/05-step-report-column-check/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/06-step-report-schema-check/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/07-validation-with-actions/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/08-validation-with-final-actions/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/apply-checks-to-several-columns/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/check-for-freshness/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/check-row-column-counts/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/checks-for-missing/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/col-vals-custom-expr/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/column-selector-functions/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/comparisons-across-columns/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/custom-validation-specially/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/data/game_revenue.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/expect-no-duplicate-rows/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/expect-no-duplicate-values/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/expect-text-pattern/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/failure-thresholds/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/img/advanced_validation.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/img/data_extracts.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/img/starter_validation.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/img/step_report_column_schema.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/img/step_report_column_values.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/img/sundered_data.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/img/validation_with_actions.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/img/validation_with_final_actions.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/mutate-table-in-step/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/numeric-comparisons/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/schema-check/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/set-membership/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/demos/using-parquet-data/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/scripts/post-render.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/styles.css +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/actions.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/assertions.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/briefs.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/cli-data-inspection.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/cli-data-validation.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/col-summary-tbl.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/column-selection-patterns.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/draft-validation.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/expressions.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/extracts.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/index.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/installation.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/langs.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/missing-vals-tbl.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/preprocessing.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/preview.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/schema-validation.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/segmentation.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/step-reports.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/sundering.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/thresholds.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/validation-methods.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/docs/user-guide/validation-overview.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/images/pointblank-tabular-report.png +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/images/pointblank_logo.svg +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/_constants.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/_constants_docs.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/_constants_translations.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/_datascan_utils.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/_interrogation.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/_typing.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/_utils.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/_utils_check_args.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/_utils_html.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/actions.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/assistant.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/column.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/compare.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/data/api-docs.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/data/game_revenue-duckdb.zip +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/data/game_revenue.zip +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/data/global_sales-duckdb.zip +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/data/global_sales.zip +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/data/nycflights-duckdb.zip +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/data/nycflights.zip +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/data/polars-api-docs.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/data/small_table-duckdb.zip +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/data/small_table.zip +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/datascan.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/draft.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/scan_profile.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/scan_profile_stats.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/schema.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/tf.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/thresholds.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank/validate.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank.egg-info/dependency_links.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank.egg-info/entry_points.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank.egg-info/requires.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pointblank.egg-info/top_level.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/pyproject.toml +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/setup.cfg +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/__init__.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/manual_tests/schema_step_reports.qmd +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_datascan/test_col_summary_tbl_duckdb_snap/col_summary_html_duckdb.html +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_datascan/test_col_summary_tbl_pandas_snap/col_summary_html_pandas.html +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_datascan/test_col_summary_tbl_polars_snap/col_summary_html_polars.html +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_01/schema_step_report_01-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_01_1/schema_step_report_01-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_01_2/schema_step_report_01-2.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_01_3/schema_step_report_01-3.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_02/schema_step_report_02-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_02_1/schema_step_report_02-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_02_2/schema_step_report_02-2.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_02_3/schema_step_report_02-3.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_03/schema_step_report_03-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_03_1/schema_step_report_03-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_03_2/schema_step_report_03-2.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_03_3/schema_step_report_03-3.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_04/schema_step_report_04-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_05/schema_step_report_05-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_06/schema_step_report_06-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_07/schema_step_report_07-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_08/schema_step_report_08-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_09/schema_step_report_09-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_10/schema_step_report_10-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_11/schema_step_report_11-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_12/schema_step_report_12-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_13/schema_step_report_13-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_14/schema_step_report_14-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_14_1/schema_step_report_14-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_15/schema_step_report_15-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_15_1/schema_step_report_15-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_16/schema_step_report_16-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_16_1/schema_step_report_16-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_17/schema_step_report_17-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_17_1/schema_step_report_17-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_18/schema_step_report_18-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_18_1/schema_step_report_18-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_19/schema_step_report_19-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_19_1/schema_step_report_19-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_20/schema_step_report_20-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_20_1/schema_step_report_20-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_21/schema_step_report_21-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_21_1/schema_step_report_21-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_21_2/schema_step_report_21-2.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_21_3/schema_step_report_21-3.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_22/schema_step_report_22-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_22_1/schema_step_report_22-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_23/schema_step_report_23-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_23_1/schema_step_report_23-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_24/schema_step_report_24-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_24_1/schema_step_report_24-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_24_2/schema_step_report_24-2.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_24_3/schema_step_report_24-3.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_25/schema_step_report_25-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_25_1/schema_step_report_25-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_25_2/schema_step_report_25-2.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_25_3/schema_step_report_25-3.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_25_4/schema_step_report_25-4.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_step_report_25_5/schema_step_report_25-5.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_01-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_02-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_03-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_04-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_05-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_06-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_07-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_08-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_09-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_10-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_11-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_12-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_13-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_14-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_14-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_15-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_15-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_16-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_16-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_17-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_17-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_18-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_18-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_19-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_19-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_20-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_20-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_21-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_21-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_21-2.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_21-3.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_22-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_22-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_23-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_23-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_24-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_24-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_24-2.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_24-3.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_25-0.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_25-1.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_25-2.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_25-3.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_25-4.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_get_schema_validation_info/schema_info_25-5.txt +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_no_steps_validation_report_html_snap/no_steps_validation_report.html +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_interrogate_snap/tbl_duckdb/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_interrogate_snap/tbl_parquet/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_interrogate_snap/tbl_pd/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_interrogate_snap/tbl_pl/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_interrogate_snap/tbl_sqlite/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_no_interrogate_snap/tbl_duckdb/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_no_interrogate_snap/tbl_parquet/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_no_interrogate_snap/tbl_pd/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_no_interrogate_snap/tbl_pl/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_no_interrogate_snap/tbl_sqlite/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_segments_with_pre_html/polars/validation_report_segments_with_pre.html +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_use_fields_snap/tbl_duckdb/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_use_fields_snap/tbl_parquet/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_use_fields_snap/tbl_pd/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_use_fields_snap/tbl_pl/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/snapshots/test_validate/test_validation_report_use_fields_snap/tbl_sqlite/validation_report.json +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/parquet_data/data_a.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/parquet_data/data_b.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/parquet_data/subdir/nested_data.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/partitioned_sales/status=cancelled/0.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/partitioned_sales/status=delivered/0.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/partitioned_sales/status=pending/0.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/partitioned_sales/status=returned/0.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/partitioned_sales/status=shipped/0.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/partitioned_small_table/f=high/0.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/partitioned_small_table/f=low/0.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/partitioned_small_table/f=mid/0.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/taxi_part_01.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/taxi_part_02.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/taxi_part_03.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/taxi_sample.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/tbl_dates_times_text.ddb +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/tbl_dates_times_text.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/tbl_dates_times_text.sqlite +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/tbl_true_dates_times.ddb +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/tbl_xyz.ddb +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/tbl_xyz.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/tbl_xyz.sqlite +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/tbl_xyz_missing.ddb +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/tbl_xyz_missing.parquet +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/tbl_files/tbl_xyz_missing.sqlite +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test__interrogation.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test__utils.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test__utils_check_args.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test_actions.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test_assistant.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test_cli.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test_column.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test_compare.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test_datascan.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test_draft.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test_meta.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test_schema.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test_tf.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test_thresholds.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/tests/test_validate.py +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/translations/README.ar.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/translations/README.de.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/translations/README.es.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/translations/README.fr.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/translations/README.hi.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/translations/README.it.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/translations/README.ja.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/translations/README.ko.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/translations/README.nl.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/translations/README.pt-BR.md +0 -0
- {pointblank-0.11.2 → pointblank-0.11.4}/translations/README.zh-CN.md +0 -0
|
@@ -3,7 +3,7 @@ message: 'If you wish to cite the "Pointblank" package use:'
|
|
|
3
3
|
type: software
|
|
4
4
|
license: MIT
|
|
5
5
|
title: "Pointblank: Find out if your data is what you think it is"
|
|
6
|
-
version: 0.11.
|
|
6
|
+
version: 0.11.3
|
|
7
7
|
abstract: Validate data in Polars and Pandas DataFrames and database tables.
|
|
8
8
|
Validation pipelines can be made using easily-readable, consecutive validation
|
|
9
9
|
steps. Upon execution of the validation plan, several reporting options are available.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pointblank
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.4
|
|
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
|
|
@@ -282,6 +282,49 @@ pb validate small_table --check col-vals-gt --column a --value 5 --show-extract
|
|
|
282
282
|
pb validate small_table --check rows-distinct --exit-code
|
|
283
283
|
```
|
|
284
284
|
|
|
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>
|
|
327
|
+
|
|
285
328
|
## Features That Set Pointblank Apart
|
|
286
329
|
|
|
287
330
|
- **Complete validation workflow**: From data access to validation to reporting in a single pipeline
|
|
@@ -349,6 +392,10 @@ There are many ways to contribute to the ongoing development of Pointblank. Some
|
|
|
349
392
|
Please read over the [contributing guidelines](https://github.com/posit-dev/pointblank/blob/main/CONTRIBUTING.md) for
|
|
350
393
|
information on how to get started.
|
|
351
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
|
+
|
|
352
399
|
## Roadmap
|
|
353
400
|
|
|
354
401
|
We're actively working on enhancing Pointblank with:
|
|
@@ -196,6 +196,49 @@ pb validate small_table --check col-vals-gt --column a --value 5 --show-extract
|
|
|
196
196
|
pb validate small_table --check rows-distinct --exit-code
|
|
197
197
|
```
|
|
198
198
|
|
|
199
|
+
Click the following headings to see some video demonstrations of the CLI:
|
|
200
|
+
|
|
201
|
+
<details>
|
|
202
|
+
<summary>Getting Started with the Pointblank CLI</summary>
|
|
203
|
+
|
|
204
|
+
<div align="center">
|
|
205
|
+
<img src="https://posit-dev.github.io/pointblank/assets/vhs/cli-getting-started.gif" width="100%">
|
|
206
|
+
</div>
|
|
207
|
+
|
|
208
|
+
</details>
|
|
209
|
+
<details>
|
|
210
|
+
<summary>Doing Some Data Exploration</summary>
|
|
211
|
+
|
|
212
|
+
<div align="center">
|
|
213
|
+
<img src="https://posit-dev.github.io/pointblank/assets/vhs/cli-data-exploration.gif" width="100%">
|
|
214
|
+
</div>
|
|
215
|
+
|
|
216
|
+
</details>
|
|
217
|
+
<details>
|
|
218
|
+
<summary>Validating Data with the CLI</summary>
|
|
219
|
+
|
|
220
|
+
<div align="center">
|
|
221
|
+
<img src="https://posit-dev.github.io/pointblank/assets/vhs/cli-essential-validations.gif" width="100%">
|
|
222
|
+
</div>
|
|
223
|
+
|
|
224
|
+
</details>
|
|
225
|
+
<details>
|
|
226
|
+
<summary>Using Polars in the CLI</summary>
|
|
227
|
+
|
|
228
|
+
<div align="center">
|
|
229
|
+
<img src="https://posit-dev.github.io/pointblank/assets/vhs/cli-using-polars.gif" width="100%">
|
|
230
|
+
</div>
|
|
231
|
+
|
|
232
|
+
</details>
|
|
233
|
+
<details>
|
|
234
|
+
<summary>Integrating Pointblank with CI/CD</summary>
|
|
235
|
+
|
|
236
|
+
<div align="center">
|
|
237
|
+
<img src="https://posit-dev.github.io/pointblank/assets/vhs/cli-cicd-workflows.gif" width="100%">
|
|
238
|
+
</div>
|
|
239
|
+
|
|
240
|
+
</details>
|
|
241
|
+
|
|
199
242
|
## Features That Set Pointblank Apart
|
|
200
243
|
|
|
201
244
|
- **Complete validation workflow**: From data access to validation to reporting in a single pipeline
|
|
@@ -263,6 +306,10 @@ There are many ways to contribute to the ongoing development of Pointblank. Some
|
|
|
263
306
|
Please read over the [contributing guidelines](https://github.com/posit-dev/pointblank/blob/main/CONTRIBUTING.md) for
|
|
264
307
|
information on how to get started.
|
|
265
308
|
|
|
309
|
+
## Pointblank for R
|
|
310
|
+
|
|
311
|
+
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.
|
|
312
|
+
|
|
266
313
|
## Roadmap
|
|
267
314
|
|
|
268
315
|
We're actively working on enhancing Pointblank with:
|
|
@@ -79,6 +79,7 @@ website:
|
|
|
79
79
|
- user-guide/schema-validation.qmd
|
|
80
80
|
- user-guide/assertions.qmd
|
|
81
81
|
- user-guide/draft-validation.qmd
|
|
82
|
+
- user-guide/yaml-validation-workflows.qmd
|
|
82
83
|
- section: "Post Interrogation"
|
|
83
84
|
contents:
|
|
84
85
|
- user-guide/step-reports.qmd
|
|
@@ -219,6 +220,15 @@ quartodoc:
|
|
|
219
220
|
- name: load_dataset
|
|
220
221
|
- name: get_data_path
|
|
221
222
|
- name: connect_to_table
|
|
223
|
+
- title: YAML
|
|
224
|
+
desc: >
|
|
225
|
+
The *YAML* group contains functions that allow for the use of YAML to orchestrate validation
|
|
226
|
+
workflows. The `yaml_interrogate()` function can be used to run a validation workflow from
|
|
227
|
+
YAML strings or files. The `validate_yaml()` function checks if the YAML configuration
|
|
228
|
+
passes its own validity checks.
|
|
229
|
+
contents:
|
|
230
|
+
- name: yaml_interrogate
|
|
231
|
+
- name: validate_yaml
|
|
222
232
|
- title: Utility Functions
|
|
223
233
|
desc: >
|
|
224
234
|
The *Utility Functions* group contains functions that are useful accessing metadata about
|
|
Binary file
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
# VHS tape for CI/CD integration workflows
|
|
2
|
-
# Shows production-ready automation patterns
|
|
3
|
-
|
|
4
1
|
Output cli-cicd-workflows.gif
|
|
5
2
|
|
|
6
3
|
Set FontSize 16
|
|
@@ -8,9 +5,9 @@ Set Width 1200
|
|
|
8
5
|
Set Height 700
|
|
9
6
|
Set Theme "Dracula"
|
|
10
7
|
|
|
11
|
-
Type "# Example of a Production CI/CD Data Validation Workflow"
|
|
8
|
+
Type "# Example of a Production CI/CD Data Validation Workflow with the Pointblank CLI"
|
|
12
9
|
Enter
|
|
13
|
-
Sleep
|
|
10
|
+
Sleep 3s
|
|
14
11
|
|
|
15
12
|
Type ""
|
|
16
13
|
Enter
|
|
@@ -38,8 +35,8 @@ Sleep 10s
|
|
|
38
35
|
|
|
39
36
|
Type ""
|
|
40
37
|
Enter
|
|
41
|
-
Type "#
|
|
38
|
+
Type "# Make use of --exit-code in GitHub Actions or any other automation platform"
|
|
42
39
|
Enter
|
|
43
|
-
Type "
|
|
40
|
+
Type "# Exit codes: 0 = success, 1 = validation failed"
|
|
44
41
|
Enter
|
|
45
|
-
Sleep
|
|
42
|
+
Sleep 6s
|
|
Binary file
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
Output cli-complete-workflow.gif
|
|
2
|
+
|
|
3
|
+
Set FontSize 13
|
|
4
|
+
Set Width 1000
|
|
5
|
+
Set Height 1100
|
|
6
|
+
Set Theme "Dracula"
|
|
7
|
+
|
|
8
|
+
Type "# This is a Demo of a Complete Data Quality Workflow Using the Pointblank CLI"
|
|
9
|
+
Enter
|
|
10
|
+
Sleep 1s
|
|
11
|
+
|
|
12
|
+
Type ""
|
|
13
|
+
Enter
|
|
14
|
+
Type "# Step 1: Quickly preview a dataset"
|
|
15
|
+
Enter
|
|
16
|
+
Type "pb preview worldcities.csv"
|
|
17
|
+
Enter
|
|
18
|
+
Sleep 5s
|
|
19
|
+
|
|
20
|
+
Type ""
|
|
21
|
+
Enter
|
|
22
|
+
Type "# Step 2: Quickly check for missing values in the dataset"
|
|
23
|
+
Enter
|
|
24
|
+
Type "pb missing worldcities.csv"
|
|
25
|
+
Enter
|
|
26
|
+
Sleep 6s
|
|
27
|
+
|
|
28
|
+
Type ""
|
|
29
|
+
Enter
|
|
30
|
+
Type "# Step 3: Validate that population values are provided for each city (i.e., not null)"
|
|
31
|
+
Enter
|
|
32
|
+
Type "pb validate worldcities.csv --check col-vals-not-null --column population"
|
|
33
|
+
Enter
|
|
34
|
+
Sleep 8s
|
|
35
|
+
|
|
36
|
+
Type ""
|
|
37
|
+
Enter
|
|
38
|
+
Type "# Step 4: Check for missing city names (and show the problematic rows)"
|
|
39
|
+
Enter
|
|
40
|
+
Type "pb validate worldcities.csv --check col-vals-not-null --column city_name --show-extract"
|
|
41
|
+
Enter
|
|
42
|
+
Sleep 8s
|
|
43
|
+
|
|
44
|
+
Type ""
|
|
45
|
+
Enter
|
|
46
|
+
Type "# Step 5: Validate latitude range (latitude: -90 to 90) in two steps"
|
|
47
|
+
Enter
|
|
48
|
+
Type "pb validate worldcities.csv --check col-vals-ge --column latitude --value -90 --check col-vals-le --column latitude --value 90"
|
|
49
|
+
Enter
|
|
50
|
+
Sleep 8s
|
|
51
|
+
|
|
52
|
+
Type ""
|
|
53
|
+
Enter
|
|
54
|
+
Type "# Step 6: Create a comprehensive validation script for production use"
|
|
55
|
+
Enter
|
|
56
|
+
Type "cat validation.py"
|
|
57
|
+
Enter
|
|
58
|
+
Sleep 8s
|
|
59
|
+
|
|
60
|
+
Type ""
|
|
61
|
+
Enter
|
|
62
|
+
Type "# Step 7: Run that comprehensive validation and get a validation reporting table"
|
|
63
|
+
Enter
|
|
64
|
+
Type "pb run validation.py"
|
|
65
|
+
Enter
|
|
66
|
+
Sleep 10s
|
|
67
|
+
|
|
68
|
+
Type ""
|
|
69
|
+
Enter
|
|
70
|
+
Type "# Step 8: Generate an HTML validation report file and show the failing rows"
|
|
71
|
+
Enter
|
|
72
|
+
Type "pb run validation.py --output-html validation_report.html --show-extract"
|
|
73
|
+
Enter
|
|
74
|
+
Sleep 8s
|
|
75
|
+
|
|
76
|
+
Type ""
|
|
77
|
+
Enter
|
|
78
|
+
Type "# That was a complete workflow, moving from quick checks to more involved validations"
|
|
79
|
+
Enter
|
|
80
|
+
Sleep 3s
|
|
Binary file
|
|
@@ -14,7 +14,7 @@ Sleep 2s
|
|
|
14
14
|
|
|
15
15
|
Type ""
|
|
16
16
|
Enter
|
|
17
|
-
Type "#
|
|
17
|
+
Type "# 1. Ensure that data can be loaded and see some info about the dataset"
|
|
18
18
|
Enter
|
|
19
19
|
Type "pb info worldcities.csv"
|
|
20
20
|
Enter
|
|
@@ -22,7 +22,7 @@ Sleep 4s
|
|
|
22
22
|
|
|
23
23
|
Type ""
|
|
24
24
|
Enter
|
|
25
|
-
Type "#
|
|
25
|
+
Type "# 2. Get a quick data preview to see structure and sample rows"
|
|
26
26
|
Enter
|
|
27
27
|
Type "pb preview worldcities.csv --head 3 --tail 3"
|
|
28
28
|
Enter
|
|
@@ -30,7 +30,7 @@ Sleep 8s
|
|
|
30
30
|
|
|
31
31
|
Type ""
|
|
32
32
|
Enter
|
|
33
|
-
Type "#
|
|
33
|
+
Type "# 3. Missing values analysis: identify data gaps"
|
|
34
34
|
Enter
|
|
35
35
|
Type "pb missing worldcities.csv"
|
|
36
36
|
Enter
|
|
@@ -38,7 +38,7 @@ Sleep 8s
|
|
|
38
38
|
|
|
39
39
|
Type ""
|
|
40
40
|
Enter
|
|
41
|
-
Type "#
|
|
41
|
+
Type "# 4. Comprehensive data scan: statistical overview"
|
|
42
42
|
Enter
|
|
43
43
|
Type "pb scan worldcities.csv"
|
|
44
44
|
Enter
|
|
@@ -46,6 +46,6 @@ Sleep 10s
|
|
|
46
46
|
|
|
47
47
|
Type ""
|
|
48
48
|
Enter
|
|
49
|
-
Type "
|
|
49
|
+
Type "# That's data profiling in seconds with the Pointblank CLI"
|
|
50
50
|
Enter
|
|
51
|
-
Sleep
|
|
51
|
+
Sleep 4s
|
|
Binary file
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
# VHS tape for high-impact data validation demonstrations
|
|
2
|
-
# Shows the most practical CLI validations
|
|
3
|
-
|
|
4
1
|
Output cli-essential-validations.gif
|
|
5
2
|
|
|
6
3
|
Set FontSize 16
|
|
@@ -14,7 +11,7 @@ Sleep 4s
|
|
|
14
11
|
|
|
15
12
|
Type ""
|
|
16
13
|
Enter
|
|
17
|
-
Type "#
|
|
14
|
+
Type "# 1. Get the table dimensions, just to know what you're working with"
|
|
18
15
|
Enter
|
|
19
16
|
Type "pb info small_table"
|
|
20
17
|
Enter
|
|
@@ -22,7 +19,7 @@ Sleep 8s
|
|
|
22
19
|
|
|
23
20
|
Type ""
|
|
24
21
|
Enter
|
|
25
|
-
Type "#
|
|
22
|
+
Type "# 2. Check for duplicate rows (the most common data quality issue)"
|
|
26
23
|
Enter
|
|
27
24
|
Type "pb validate small_table --check rows-distinct"
|
|
28
25
|
Enter
|
|
@@ -30,7 +27,7 @@ Sleep 8s
|
|
|
30
27
|
|
|
31
28
|
Type ""
|
|
32
29
|
Enter
|
|
33
|
-
Type "#
|
|
30
|
+
Type "# 3. Find missing values in important columns"
|
|
34
31
|
Enter
|
|
35
32
|
Type "pb validate small_table --check col-vals-not-null --column c"
|
|
36
33
|
Enter
|
|
@@ -38,7 +35,7 @@ Sleep 8s
|
|
|
38
35
|
|
|
39
36
|
Type ""
|
|
40
37
|
Enter
|
|
41
|
-
Type "#
|
|
38
|
+
Type "# 4. When validation fails, see exactly which rows are problematic with --show-extract"
|
|
42
39
|
Enter
|
|
43
40
|
Type "pb validate small_table --check col-vals-not-null --column c --show-extract"
|
|
44
41
|
Enter
|
|
@@ -46,6 +43,6 @@ Sleep 10s
|
|
|
46
43
|
|
|
47
44
|
Type ""
|
|
48
45
|
Enter
|
|
49
|
-
Type "
|
|
46
|
+
Type "# That is just a sampling of the essentials with duplicates, nulls, with data extracts"
|
|
50
47
|
Enter
|
|
51
|
-
Sleep
|
|
48
|
+
Sleep 3s
|
|
Binary file
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
# VHS tape for CLI overview and getting started
|
|
2
|
-
# Shows help and basic commands with custom prompt
|
|
3
|
-
|
|
4
1
|
Output cli-getting-started.gif
|
|
5
2
|
|
|
6
3
|
Set FontSize 16
|
|
@@ -14,7 +11,7 @@ Sleep 5s
|
|
|
14
11
|
|
|
15
12
|
Type ""
|
|
16
13
|
Enter
|
|
17
|
-
Type "# See all available commands"
|
|
14
|
+
Type "# See all available commands for the Pointblank CLI"
|
|
18
15
|
Enter
|
|
19
16
|
Type "pb --help"
|
|
20
17
|
Enter
|
|
@@ -46,6 +43,6 @@ Sleep 10s
|
|
|
46
43
|
|
|
47
44
|
Type ""
|
|
48
45
|
Enter
|
|
49
|
-
Type "# You
|
|
46
|
+
Type "# You can validate any sort of dataset you want: CSV, Parquet, or a DB table"
|
|
50
47
|
Enter
|
|
51
48
|
Sleep 5s
|
|
Binary file
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
Output cli-using-polars.gif
|
|
2
|
+
|
|
3
|
+
Set FontSize 13
|
|
4
|
+
Set Width 1000
|
|
5
|
+
Set Height 1100
|
|
6
|
+
Set Theme "Dracula"
|
|
7
|
+
|
|
8
|
+
Type "# Polars Data Manipulation with the Pointblank CLI"
|
|
9
|
+
Enter
|
|
10
|
+
Sleep 4s
|
|
11
|
+
|
|
12
|
+
Type ""
|
|
13
|
+
Enter
|
|
14
|
+
Type "# 1. Load and explore the worldcities CSV dataset"
|
|
15
|
+
Enter
|
|
16
|
+
Type `pb pl 'pl.read_csv("worldcities.csv").head(10)'`
|
|
17
|
+
Enter
|
|
18
|
+
Sleep 8s
|
|
19
|
+
|
|
20
|
+
Type ""
|
|
21
|
+
Enter
|
|
22
|
+
Type "# 2. Use the Polars methods for filtering and selecting columns"
|
|
23
|
+
Enter
|
|
24
|
+
Type `pb pl 'pl.read_csv("worldcities.csv").select(["city_name", "country", "population"]).filter(pl.col("population") > 1000000)'`
|
|
25
|
+
Enter
|
|
26
|
+
Sleep 10s
|
|
27
|
+
|
|
28
|
+
Type ""
|
|
29
|
+
Enter
|
|
30
|
+
Type "# 3. Data manipulation -> missing data analysis via --output-format missing"
|
|
31
|
+
Enter
|
|
32
|
+
Type `pb pl 'pl.read_csv("worldcities.csv").select(["city_name", "country", "population"])' --output-format missing`
|
|
33
|
+
Enter
|
|
34
|
+
Sleep 10s
|
|
35
|
+
|
|
36
|
+
Type ""
|
|
37
|
+
Enter
|
|
38
|
+
Type "# 4. Behold the power of piping! Filter large cities and validate for duplicates with --pipe | pb validate"
|
|
39
|
+
Enter
|
|
40
|
+
Type `pb pl 'pl.read_csv("worldcities.csv").filter(pl.col("population") > 5000000)' --pipe | pb validate --check rows-distinct`
|
|
41
|
+
Enter
|
|
42
|
+
Sleep 10s
|
|
43
|
+
|
|
44
|
+
Type ""
|
|
45
|
+
Enter
|
|
46
|
+
Type "# 5. Do a complex transformation and pipe into a data scan"
|
|
47
|
+
Enter
|
|
48
|
+
Type `pb pl 'pl.read_csv("worldcities.csv").filter(pl.col("country").is_in(["United States", "China", "India"])).select(["city_name", "latitude", "longitude"])' --pipe | pb scan`
|
|
49
|
+
Enter
|
|
50
|
+
Sleep 12s
|
|
51
|
+
|
|
52
|
+
Type ""
|
|
53
|
+
Enter
|
|
54
|
+
Type "# 6. Create derived metrics and pipe to a validation: so cool!"
|
|
55
|
+
Enter
|
|
56
|
+
Type `pb pl 'pl.read_csv("worldcities.csv").with_columns((pl.col("population") / 1000000).alias("pop_millions")).filter(pl.col("pop_millions") > 0.5)' --pipe | pb validate --check col-vals-gt --column pop_millions --value 0`
|
|
57
|
+
Enter
|
|
58
|
+
Sleep 12s
|
|
59
|
+
|
|
60
|
+
Type ""
|
|
61
|
+
Enter
|
|
62
|
+
Type "# The pb pl command truly enables a powerful new class of data quality pipelines!"
|
|
63
|
+
Enter
|
|
64
|
+
Sleep 5s
|
|
@@ -69,6 +69,15 @@ Discover how to profile and explore data using CLI tools that are quick and easy
|
|
|
69
69
|
*Preview data, find missing values, and generate column summaries*
|
|
70
70
|
:::
|
|
71
71
|
|
|
72
|
+
### Using Polars
|
|
73
|
+
|
|
74
|
+
You can use Polars in the CLI to load and transform data, and, pass the data to other CLI tools:
|
|
75
|
+
|
|
76
|
+
::: {.gif-container}
|
|
77
|
+

|
|
78
|
+
*Preview data, find missing values, and generate column summaries*
|
|
79
|
+
:::
|
|
80
|
+
|
|
72
81
|
### CI/CD Integration & Automation
|
|
73
82
|
|
|
74
83
|
Learn how to integrate data quality checks into automated pipelines:
|
|
@@ -220,6 +220,11 @@ PRs with code changes). Just know that anything you can do to help would be very
|
|
|
220
220
|
Please read over the [contributing guidelines](https://github.com/posit-dev/pointblank/blob/main/CONTRIBUTING.md)
|
|
221
221
|
for information on how to get started.
|
|
222
222
|
|
|
223
|
+
## Pointblank for R
|
|
224
|
+
|
|
225
|
+
There's also a version of Pointblank for R, which has been around since 2017 and is widely used in
|
|
226
|
+
the R community. You can find it at <https://github.com/rstudio/pointblank>.
|
|
227
|
+
|
|
223
228
|
## Roadmap
|
|
224
229
|
|
|
225
230
|
We're actively working on enhancing Pointblank with:
|