Skip to main content

Fast, lightweight data profiling and quality assessment library

Project description

dataprof logo

dataprof

High-performance data profiling with ISO 8000/25012 quality metrics

Crates.io docs.rs PyPI License: MIT OR Apache-2.0


dataprof is a Rust library and CLI for profiling tabular data. It computes column-level statistics, detects data types and patterns, and evaluates data quality against the ISO 8000/25012 standard -- all with bounded memory usage that lets you profile datasets far larger than your available RAM.

Highlights

  • Rust core -- fast columnar and streaming engines
  • ISO 8000/25012 quality assessment -- five dimensions: Completeness, Consistency, Uniqueness, Accuracy, Timeliness
  • Multi-format -- CSV (auto-delimiter detection), JSON, JSONL, Parquet, databases, DataFrames, Arrow
  • True streaming -- bounded-memory profiling with online algorithms (Incremental engine)
  • Three interfaces -- CLI binary, Rust library, Python package
  • Async-ready -- async/await API for embedding in web services and stream pipelines

Quick Start

CLI

cargo install dataprof

dataprof analyze data.csv --detailed
dataprof schema data.csv
dataprof count data.parquet

Rust

use dataprof::Profiler;

let report = Profiler::new().analyze_file("data.csv")?;
println!("Rows: {}", report.execution.rows_processed);
println!("Quality: {:.1}%", report.quality_score().unwrap_or(0.0));

for col in &report.column_profiles {
    println!("  {} ({:?}): {} nulls", col.name, col.data_type, col.null_count);
}

Python

import dataprof

report = dataprof.profile("data.csv")
print(f"{report.rows} rows, {report.columns} columns")
print(f"Quality score: {report.quality_score}")

for col in report.column_profiles:
    print(f"  {col.name} ({col.data_type}): {col.null_percentage:.1f}% null")

Installation

CLI binary

cargo install dataprof                        # default (CLI only)
cargo install dataprof --features full-cli    # CLI + all formats + databases

Rust library

[dependencies]
dataprof = "0.6"                  # core library (no CLI deps)
dataprof = { version = "0.6", features = ["async-streaming"] }

Python package

uv pip install dataprof
# or
pip install dataprof

Feature Flags

Feature Description
cli (default) CLI binary with clap, colored output, progress bars
minimal CSV-only, no CLI -- fastest compile
async-streaming Async profiling engine with tokio
parquet-async Profile Parquet files over HTTP
database Database profiling (connection handling, retry, SSL)
postgres PostgreSQL connector (includes database)
mysql MySQL/MariaDB connector (includes database)
sqlite SQLite connector (includes database)
all-db All three database connectors
datafusion DataFusion SQL engine integration
python Python bindings via PyO3
python-async Async Python API (includes python + async-streaming)
full-cli CLI + Parquet + all databases
production PostgreSQL + MySQL (common deployment)

Supported Formats

Format Engine Notes
CSV Incremental, Columnar Auto-detects , ; | \t delimiters
JSON Incremental Array-of-objects
JSONL / NDJSON Incremental One object per line
Parquet Columnar Reads metadata for schema/count without scanning rows
Database query Async PostgreSQL, MySQL, SQLite via connection string
pandas / polars DataFrame Columnar Python API only
Arrow RecordBatch Columnar Via PyCapsule (zero-copy) or Rust API
Async byte stream Incremental Any AsyncRead source (HTTP, WebSocket, etc.)

Quality Metrics

dataprof evaluates data quality against the five dimensions defined in ISO 8000-8 and ISO/IEC 25012:

Dimension What it measures
Completeness Missing values ratio, complete records ratio, fully-null columns
Consistency Data type consistency, format violations, encoding issues
Uniqueness Duplicate rows, key uniqueness, high-cardinality warnings
Accuracy Outlier ratio, range violations, negative values in positive-only columns
Timeliness Future dates, stale data ratio, temporal ordering violations

An overall quality score (0 -- 100) is computed as a weighted average of dimension scores.

Documentation

License

Dual-licensed under either the MIT License or the Apache License, Version 2.0, at your option.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dataprof-0.6.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dataprof-0.6.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.6.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

dataprof-0.6.1-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

dataprof-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

dataprof-0.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

dataprof-0.6.1-cp314-cp314-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dataprof-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

dataprof-0.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

dataprof-0.6.1-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

dataprof-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dataprof-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dataprof-0.6.1-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dataprof-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

dataprof-0.6.1-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

dataprof-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dataprof-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dataprof-0.6.1-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dataprof-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

dataprof-0.6.1-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

dataprof-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dataprof-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dataprof-0.6.1-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dataprof-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

dataprof-0.6.1-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

dataprof-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dataprof-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dataprof-0.6.1-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dataprof-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dataprof-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dataprof-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

dataprof-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file dataprof-0.6.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13a2b1cf062d320555fd3c7d97f91e61745dbdc4f427b465b9744c0560751590
MD5 6258e1abf55b55015fce6ca9575c47da
BLAKE2b-256 dbc6ba8ccedb059a06cbf78f565c24954021a80bf9492d54bb291da92fe33b88

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56c493ee20ff3747ca2c5694018105e945eb283fa67b6709725fc38f5a6dba82
MD5 53a020b9e2208a3d02400682ebcd5690
BLAKE2b-256 cff9614948607e5f18b96be852488a3873dd1ec7ea7f334779c768e7726cd023

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdfd85af4089f1958b815b15c21618344396b47457cd69977d7b4f689b8f68f8
MD5 bd7c739576b7d9d9949ef30605d0b800
BLAKE2b-256 c5fa9dc85596c96530356d90b5a4a1982d1948b2594768bbf84db1ebc06a8340

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.6.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dataprof-0.6.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 eac489454aec36b34854e2bbf0179b27b605bd954317bf60f66da5c91fc38ec1
MD5 7be633bc298d91d199183731ffe55feb
BLAKE2b-256 848ecc3c3e359662d03fa06e3abe2e96cf833374fe6ef1cb62a96054cdf405d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b844233c043b9b51550b4ee30bbf6d9cbc302dfa4b184933e699985118ac586
MD5 0a15ef27752a11050b199c8f6dc21424
BLAKE2b-256 891f2ac34c5e09777b315816b948037075b08a92d78b9ac5ec3246546fe493d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bc3b60dabc9a4e3f69de588ae0dbb456cef1ee70ca2de6e6e881a8b166bcabd
MD5 3ba5007ba6a1c789ef04a95d3bb58dd6
BLAKE2b-256 05aa1f3cc4ccca952d561112ee26d91be58d62f640a40fc78f9f63ea74bbfd68

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbd5f55aa5a1144720084b0ab05375e42ff460ef788b4c300eaca4cba1c7a49d
MD5 46d4501721e88157ceb84b217d7c1c68
BLAKE2b-256 98e8bc9e1f46047b4bc8529db6801cf8ec4486bd468e451b1ce2bf321cba6728

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ab9d0b2e5b95df1915dffcbc3d48fd35cee43de2e65bdee2c0f7d5f59a6472f
MD5 b3678e5c6cb31683448a91f18fd475d9
BLAKE2b-256 1fd076a15e5a6ea9e038979edcac7485935600ed25b8e371280ee68994fb374d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98623ce5471a96642272c7210f6438f7b52631eb223628517365397740a275ed
MD5 27429be8ac3af224c13325ef44b802e3
BLAKE2b-256 f86ed5b5ca5de67a5733b120b9f2b59d381948b6877b138016830f4305c70161

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.6.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dataprof-0.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d4c64ec26b69f7e19d7ba50505c1d9168dc28c52f970071794ef794570a2f0fd
MD5 018e5de1c54f7b0a8cf30d594f8359b4
BLAKE2b-256 9fd33df08180221058734d509b23a6e3350ac3b563e22e775d7340dffc6aceb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb7020ae5ecb41c34d1365079e4a2ef9c0c1320a45eb3a102b278ce94c7040ac
MD5 074955ae6086d295dfd69a8ddcac6c9c
BLAKE2b-256 cf90f57e323f26ac00df1752dc1fdea762eafa152d74c4f7b89b025a01ecae79

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 befcaf4d513c843ece78d75cb435d79ea2fa38127beee5012e87807e15a42a69
MD5 ed3442b562e358e8f91ff4e35b9c8bc8
BLAKE2b-256 5f5c69c42c5fd659f14729ccdaf75e317502e86bd0a006912d84d2ceb5b34236

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 783c63a5c16a206a7044194b884d7a2bbfea085bc7fbf380e523a016979a04b5
MD5 63e1a826674fe4b4256e13a3b20e4eee
BLAKE2b-256 c5a54e9f8bc9cbec45561c79d9448e054e8b73734d9c00d6340dc62c544437ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b8adc87aab05cf64a118016fa077aa35e24e52cc6848bc27f8512d803f9c841b
MD5 9ee3745b09151bbf9c9986cbdc0eaa70
BLAKE2b-256 4d34ec2e9cc41a27fb9664a413291b96f98f338c121f9f2391a63b4f9d2daa97

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.6.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dataprof-0.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8562410160baf5df37610d60cc29f1525dc98734a367ef37a4439122864b7779
MD5 df6f0499b97e77a711a3ac12f7beb4e6
BLAKE2b-256 e572915d6ab6114f16c2c3e21e4c69fc3302e7494e297b1eb1fe93d4ae80327c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca2e74f8a032deeabfae2391f7aa037ba641a10bcecd1311dca63b0dd5715934
MD5 31a62bc68b2ffd65b673689ee0f7c21a
BLAKE2b-256 efc07bd4497504509bff597bdbdc0df81c45c3098f855227663660b27bb7fd37

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cca28bba9384c4ec91593e5d58755ef4dc33cc6414893659ba32853d15c24fdb
MD5 d44c8e1d4cae4cd4982d14dd2122fe6a
BLAKE2b-256 94985174b3f8114c3055b0f353c155d06d5f36477669349450f5a91b5efa3269

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0aec3a0abcedbb0186027c9c88f1947f8d4149f8f05dc65b3fcffe50ac47114a
MD5 f5837a0064c378b742ef100233ae0796
BLAKE2b-256 31f5cf94be4dc312ee4fe69cb56f50a0f6dbe261acdd503cf9469ca2293c0988

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5628a610872e3e1dd496516410cfa5097eebad2343c4b2cf9bb885a7da2c3054
MD5 e71ea755740d2462b1a2d4de29ea1844
BLAKE2b-256 c173b1abcaee33d9e24a1c57090feb216033908b4f00aa8b83b1ab2e969417d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.6.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dataprof-0.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3663a33905c7b1c486005f076f45afcc65f4c75db238cf9c85a1e784c48a499c
MD5 630a9c95a07ea9d005e73b4486cf657d
BLAKE2b-256 ae94d0f9ff112a754bac76c889423db8b3c103c2c2f588c93ac514ca6cff625d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bdc19831de68d1c853dbde269529d53da78334f9db0f1f731253287abe4d622
MD5 4b5093f316ccad1e1e4b299b49bbd03f
BLAKE2b-256 fa155344a7e8e1ba6fb8d78ba1d55f0cfe7aa4b42482842b45c694e839b014e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ea09594333626a7c486462d2141bcedea474dcc85b17034c95da18ebeaa3bda
MD5 00f6645764688c18bb09d88abc2be301
BLAKE2b-256 80e400e78c524a02c5399905f143fb2c2b676943d506bc6c6621d3a783c7085d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 890ab2b37a4522066df2e54f3e37aefd1886ccd0074f02a3144985846c2f0ec6
MD5 8545bc2e3d4785cf2d7777dd8b480438
BLAKE2b-256 11623ab923824d95d7fcd4c7ba9b177e74baac1d60f738babaeda2a6bd2e1faa

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e8b6ca7f5f16c7d6d15f790e4e3b90c2ee234821731a07eac9bbd70dfb47517
MD5 ae20963f4a26e277b661aa963db5f54b
BLAKE2b-256 50c98c6af7836bbdd42ac9c0c4be6134f6687401d8a0d2c41fb508cea75da0f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.6.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dataprof-0.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 44b5d24ef8e7ce0ba16de7e56bd98ce638932de4ab684a1fab68f9cd5550668e
MD5 00ceb50db8d78a6a9fae4208baa61362
BLAKE2b-256 d5ebe5d5705f11f04c1fc36d52af4817b878c5d2cb78ffa7c925ab8d1c5ea9ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8734210a9e14b011e2e252c9ad1b49594623cc25ddb7d6f9da60edb7f21b4bcb
MD5 de23bc6a5556b8e35ee0a1a3f7a2fe69
BLAKE2b-256 f6ab82303838522c6471c0de8657db2a1d6de64d92cd9e00fe4039dfbe0d8ab7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78d0d830d3309ce148e38085ad1064a2176067d45c20a26e8ee6b575acaa881d
MD5 aba8fc445fe7bd1f1f35ae0db4e514d1
BLAKE2b-256 94735ab79a860b1a0968f3bc306ac3d1193ebaf1f2b82c6de13fd75be201516f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e65a3d3614ac20546e35a103370f36e7673f25b620cdfeddd78656b9978921d6
MD5 4d0071eae0ad6c245ae4c992c3c482bf
BLAKE2b-256 a91fdf5becb758992c63f86e9e42bb5d4421d4616d55616f0249e3e42c68b44e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 575e400fd84e286246ab084d7c6ba930d2048e8d8e74e8c8fa83961372f3ed76
MD5 76ed96600bcb390e13721262a075417e
BLAKE2b-256 8319caccdf8a7357aa4d8f44404587f9656c0dd6d811e39e883724f4b03c35d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 317b499db9837a57c9c9681f82b16c497c76b77a806f88b62dda8a80e4e7bc13
MD5 f1c29292a1760f5cf26019319448a614
BLAKE2b-256 87cace7095d76409528e2c571db22f55d363a89e82c8b1c737c7524e5d27ddc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8fb3145844ceea5b8ec7d8c2604908686320b046e82e8abd8ba727051c99f1e0
MD5 e96b52862ac2cf7e3d80f191d4e7d2fa
BLAKE2b-256 5612b89de4c9bcf4fd5664852602f4e4f3e25d236fb31b88b4da3fc7e27d4fc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b6a8ff0905f751e1ba67532553eed71b08653c2ae84bcfb5b8035dffcc06874
MD5 6e38ec7a84ab1c0d2d9f074de0712698
BLAKE2b-256 8311b2c17ca80335680ee816266506f703aab4b29841f55325acfb2c47008125

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dataprof-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd533f0baffd3836440e55e964a6b7807b8b412812818fe72418ee860b8056e5
MD5 81886131a361b24b83e814a988e8068f
BLAKE2b-256 a255d50d878163bf2d95a10ddc73fcc2a9a18950fae018a06d7f3b80722cc542

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AndreaBozzo/dataprof

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page