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.

[!NOTE] This is a work in progress, the project is now over 6 months old and the API is not stable and may change in future versions. Please, report any issues or suggestions you may have.

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.values():
    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

Academic Work

dataprof is the subject of a peer-reviewed paper submitted to IEEE ScalCom 2026:

A. Bozzo, "A Compiled Paradigm for Scalable and Sustainable Edge AI: Out-of-Core Execution and SIMD Acceleration in Telemetry Profiling," IEEE ScalCom 2026 (under review). [Repository & reproducible benchmarks]

The paper benchmarks dataprof against YData Profiling, Polars, and pandas across execution efficiency, memory scalability, energy consumption, and zero-copy interoperability in constrained Edge AI environments.

BibTeX

@inproceedings{bozzo2026compiled,
  author={Bozzo, Andrea},
  title={A Compiled Paradigm for Scalable and Sustainable Edge AI: Out-of-Core Execution and SIMD Acceleration in Telemetry Profiling},
  booktitle={2026 IEEE International Conference on Scalable Computing and Communications (ScalCom)},
  year={2026},
  note={Under review}
}

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.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dataprof-0.6.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.6.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

dataprof-0.6.2-cp314-cp314-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.14Windows x86-64

dataprof-0.6.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

dataprof-0.6.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

dataprof-0.6.2-cp314-cp314-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dataprof-0.6.2-cp314-cp314-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

dataprof-0.6.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

dataprof-0.6.2-cp313-cp313-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.13Windows x86-64

dataprof-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dataprof-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dataprof-0.6.2-cp313-cp313-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dataprof-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

dataprof-0.6.2-cp312-cp312-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.12Windows x86-64

dataprof-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dataprof-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dataprof-0.6.2-cp312-cp312-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dataprof-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

dataprof-0.6.2-cp311-cp311-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.11Windows x86-64

dataprof-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dataprof-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dataprof-0.6.2-cp311-cp311-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dataprof-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

dataprof-0.6.2-cp310-cp310-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.10Windows x86-64

dataprof-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dataprof-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dataprof-0.6.2-cp310-cp310-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dataprof-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dataprof-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dataprof-0.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

dataprof-0.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

File hashes

Hashes for dataprof-0.6.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 416505b78bca38099615b7570774881c713a8711309ba8e321a9dc2b15610e02
MD5 565e1c8c82f648966686ed8e5ae0dc00
BLAKE2b-256 7c3dbc509ceced9e1f3bf6883b6acfc8e289ae0d871c6b4b95c168c7f736e797

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93d6254780c1204b2f0a18f9e9238261a9e94e224d87c971d86c072f5d03b97d
MD5 c70604c1a0037684e39cb97ceccbce4b
BLAKE2b-256 06adfdbed1c6d6b26aa978c2c1fdc67d174072caf6bc42751be9cc93a0b0347a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 276d4395ad2aff5256a585272978fb77f5093c8d0d546750568621fc9301de15
MD5 bb92332cf9399cb451c4eb94fd471533
BLAKE2b-256 ef5e5cca57e7e3e8baa550bd161e23eaea37374db087199e5fded28a1adc54fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.6.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.7 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 267bff598551074b5c520baec0f970c5412dde3c5bb3ec9f9937fe4d591ceffe
MD5 eb6e8a45f890a1ef63db6f0c88909914
BLAKE2b-256 a6b190b10a214758fa6b81649e36f609e3b55b7f429074574d045f1b2901d27a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7222cb5c0a9c9aeb1316ef8df69e20bc9b4d4c398dc3a6fd859d1cdf7fc043a
MD5 065d5396ff664054e73d2185f07aa4e7
BLAKE2b-256 06fbfc65db15a4b38be79e9c0075b2560f9378babef0a1123369b9af62306913

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e24e92190f5b62b05da20987797c1c375319713109e5f9b49b6a2f557d01e67c
MD5 ac776a57aad41c216ad891440809b47e
BLAKE2b-256 29e55a884a68cf77fce8359b8b1d841c721a60a2ed0277c281ff68746f05c3ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d420cfdadd4f8028983cc1fbaa04077eb546d89463871c08735352812b7dc8a7
MD5 7841b4ebee42c50989a1748fb752ba18
BLAKE2b-256 054b563e44bfcab2595da98c263e03a2c041a312e74ec28074ab95e36fc5b7d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 96215aca4143643319f86eed979be2529e556f3fbde071fc2c1e2877ebba1b18
MD5 ad7cbfb39acc747275c5675b8c3d836d
BLAKE2b-256 70b69d7eeef7efd19edc25a7be99bc8f6a4652a57df6782885232228a26eee12

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16b307f69d1ace78b6dafa2da6a4899f74513d0266091e7dbba75c7b49b0ecb2
MD5 c434bbed8bbb4926aedbb76194f8aa91
BLAKE2b-256 b73040f655b0ddd7ebdae1d70fa01fa8c28500ad912ccd110bc2bbdd962a0288

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.6.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.7 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cf657308c661c1bec7b3aaf2bfedc9c5f973be167dcc2372a273f52faac12de0
MD5 7b9e934638c6670f0093d01113bbbaa4
BLAKE2b-256 20eb71dfccefcdeb9675d7d243c2b146fda97b4c534736369559c7f4d8a37fee

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a677166880065733084c9aec00385efcf8b7986425de04bba49dcc133f7e627b
MD5 a0d285d91122305edcfd346aede6107b
BLAKE2b-256 da2087f37445b1e9a11b21f44696090dcbc32bd1e196c124767b1c299928a780

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1238cab6bee47461fa4aed642951f2ee091fa9da53ee0e3b80685de4d08957f0
MD5 b236389bd11f187f35058d10df7d2661
BLAKE2b-256 139340dd662525a95559411670dbdd893131b1232d153fbf8400d6312d05b9b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5049fd4df7367cb33a0106e8f36176032b95aa9f1cbf1e663ddb860e0de05b3
MD5 63ed6fe85b422f03fedcf48577da86d5
BLAKE2b-256 bd9a444f1245d70749e8afc58caa063428727fd48f4c38b3209acbd6acabf8d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61a3a7ce03a6194edbf03e169ef8afb4d187822c7236eb9f8c482db81a1cb145
MD5 566231c371abbd8aa2eca3f290aab2a2
BLAKE2b-256 907177dfa1dd209a51078635ffa66d1f90f120fb712908849481651ae55a47ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.6.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.7 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 08d1b41c83936c12355c9a8235003cb6ad784d1473b0a7100debda3b64423460
MD5 017d94b5edca29cc9d7ff32cbcb709aa
BLAKE2b-256 4940e6b6a92f450cf3f9b974900e1f2a2d53618a3f661723950d041fb63b228c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc135f28c99d78bf65a8f7a279b21cf842afc5ed537f2eb6a2f55ab4264701c0
MD5 ce0ab081be828e79d78d94fd8decd5be
BLAKE2b-256 689d1e71755cd6bf57e606a25661a0cbf567147c43e96e8d6be0f3fc53d273aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17b409d7d7016315d6913707654761fbbd0787a6aff36bfdb4dc445b68bbc447
MD5 2186db5e378ddc10f144622cf836461a
BLAKE2b-256 226a2115ef93907709ae62d7bcf8dab034e42d55d253c6a8199974e0eced75a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37c64a11afdf038634ba25b6485387ea8c3d7c5dce4c436bb8900ce4b4819074
MD5 39bd61488817c1a5d9bcbe8b1123ea7b
BLAKE2b-256 75e1eb4e5518989cd9b29b319030c348f6fd526c71a422f07f3c148023942198

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bd4bb1af3186c334b2f296e183b3946ff4188a95a551d44f6362b69e09f64830
MD5 ab6bd0c5e2cd3b1133285cae72fe84f4
BLAKE2b-256 3d229843b584d5808337fa1c23612c8e8ad05f66015f11ccd540db5613e986df

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.6.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.7 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c340d50f54babf24111b771531881870af538dc8a3a322d38efe70c20db323ee
MD5 22f27617424932427b23e583cce9ce2b
BLAKE2b-256 393293baebc830948756cf036d2b954fa50124cba9c0f22e920901b8be353ffd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ab77a569514b141db97977b6eee80d616f4c32a061240c311829b855b1d5879
MD5 a794456f4a3cea3ed7a2447a3a0b2d68
BLAKE2b-256 914b43e5f5ae6de2686aea93abed9b25318fd95f5ff3d91c2798ee4cf603334c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07fb51daf84a8a4df66cdaac0b5d9877cbc90233bbf0f4d63aa8dd062c7da203
MD5 8e39135a1854a8df5d6ceae4d86d0f0c
BLAKE2b-256 775c69f2ba7e4241e8b31f3b35bd763e9b69dc49f6f2268dc984bc95cbe644f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d843506ccdf26debdf0915df69570210d889a95a1c264f383f84041333c8711f
MD5 9b506c0c12e194c7a04575bf429d0c7c
BLAKE2b-256 a86aae06575bfa49aa775d5439c444a05de836b3895b19a77dfcca19a2cf7479

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a766c4b22d84895a478e85d1f7ac97e6aaff0be8e4a8aa2b21826f49a367855
MD5 eb7429e96933df38d2d158fc9b7eda9f
BLAKE2b-256 c498360a1da96e7161b4b7d96784fae4bd8ee38806376b864f01d5dea24a0cf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.6.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.7 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0bc668726b9878bdb882a196d1245ee93a6894ccd852c5286641bf69808042ca
MD5 5fefd0ea538089899075a18fd5818564
BLAKE2b-256 7c28b6a94d3cbc18196d2a22789c983e06e89db382ed5c92d8d246a501c4e2f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8598f430582d809ca11bac3c8dcb11f33c400d22eb239537ef108ab44390f190
MD5 38a2d01c8fffa4abf426767ac1d66abb
BLAKE2b-256 b6ff9a54fa491526379e94b8275bc2f411283506d4a7d27188c288f82619ff0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a428d5c445f7bc3b9516b5c05f726664be8a7c98d7355f38e018a94a0a53e2a
MD5 4ccfe5b42f1a6abe63cbc2ad716ea33a
BLAKE2b-256 46412b41f97eaced7b121554525574ed6b771d945081fa259a72905a7e731e85

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d42ce8a9f51495fdb22d4628f836a43cb9844cbb6a6ae205febcf277f565a83b
MD5 f76d676a5eaf18070ad23fc7b9de1bb8
BLAKE2b-256 2adff3c2b8e822d96c0e0080bf1b0edd86a3df81e0dc26c8ef639c97a677d1d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 87315435b84f47442321c3121e68f3aeb9fb61b4926072a61f6d9f99af1ab54a
MD5 56db85e2c73264fb4e154bd78bda1eb9
BLAKE2b-256 1e3a181954aea01efb40a298d28cbd54978bfc15a64e01c593c7ba8601e89a73

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fbb674c7d2248ce9b18a61128664be6972d7a93ff9ca2412c126af0e1f3e4b2
MD5 569cabf8fe00e6e6648c2163e0de841b
BLAKE2b-256 01489709060425bb221a004f5856bfce1de0bf6fbf82dd499ff0f5b0c1653ea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68d57c109c6ec0d8c7898d3d7834a4ba3ca442d9bc782126d5e4d428d4e8472c
MD5 afdf640f1d3d191161eb59b98f502077
BLAKE2b-256 590ea840e1fbf488c1e76dcd3ad7061327784b9be0bcddf0d381b77789126ef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6653f9d416b7bed559ed336ffd05ccf60a2772ad32fe2296129c423874ad14f
MD5 0cf24b5b3e3abfe44adaa639396a712a
BLAKE2b-256 0f2581b9140a629c3f100c37563291c6c74848753ccb4dc4fc00ccefec1e7c46

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df5e4a533eb4d470cc6056d28cba00b97d6415b4e8aff1022f98f42b35409fc1
MD5 9bcb19b99ec81f3ab9cf2a69f2d38f51
BLAKE2b-256 9810330b86e54bea16c86b8a0e263ed22be735dc537189e3e0810c2fa3fb8fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.6.2-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