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
  • Boolean Support -- Native profiling of boolean columns with true/false statistics
  • True streaming -- bounded-memory profiling with online algorithms (Incremental engine)
  • Three interfaces -- CLI binary, Rust library, Python package
  • New Python Ecosystem -- Export to pandas, Polars, Arrow, and JSON with rounding consistency
  • 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 analyze data.csv --metrics schema --metrics statistics  # fast partial analysis
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 as dp

# Profile with selective metrics for speed
report = dp.profile("data.csv", metrics=["schema", "statistics"])
print(f"{report.rows} rows, {report.columns} columns")

# Dict-like access and export to pandas/Polars
age_stats = report["age"]
print(f"Mean age: {age_stats.mean}")

df = report.to_dataframe()
report.save("report.json")

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.7.0-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.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

dataprof-0.7.0-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.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

dataprof-0.7.0-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.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

dataprof-0.7.0-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.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

dataprof-0.7.0-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.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

dataprof-0.7.0-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.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.7.0-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.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dataprof-0.7.0-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.7.0-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.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc00c2a45219c59c88a3e47d083548ec142bce68c23150414147f67b17cae455
MD5 e210389907c0ca4e36edc6176ad28289
BLAKE2b-256 b3bcce4f570fd8a17fc1411a96648b7714c745a8a2d28186d16b72fcfe73ce66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a2fd020488bd0b5925ed2a69b6289d249cf84ed51c14e2f2655fc8929123359
MD5 ba51792175711a7704d0d3ee740365d5
BLAKE2b-256 cc42b6994532be3c93fe2c70009dca7e6ccc01da84ef966e554455c366ee9d1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91302db86891ee1c620959714a92b08c2df0b8b4a5830350664f0873883adfa4
MD5 01bae75fdd25490e1e1d84b2abaaf3bd
BLAKE2b-256 c114bbe08d62e165a7087b8e1975aba7a59ab857c8a74c3c8665d4552711fb81

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.7.0-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.12

File hashes

Hashes for dataprof-0.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b7518eeff57084ee6b173857f39ae4f906129ad2286a65ae98db5f2c39e0cabd
MD5 3b558d060187fa890d723e3499037a52
BLAKE2b-256 fafaad523b3a24659ee6916bbb0ecc0f8fc185a7e5daefe48366cf8d6d91501d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2c7ce2024c6125041a3d8f7d1a716e831796b98f961c29bed755e32ec43224e
MD5 500a0eb6b94982d48ac73f4fbf43da8f
BLAKE2b-256 0f130c848e0ba1ce56e4077cf9fd68c975cd695dcef6e737c29caac8e6fc19e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7effe6113260d82cf850072404fb2a1f72d3e45ac443f62f28207f3fed57e222
MD5 30d5f187aa5feaafd1b786e8ddaccae6
BLAKE2b-256 9bc36aa020de9d2c2d994cadcbc6df50da8c46c25a73f7c069ed6585c9a3dcf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d93278ddcdc468bc2ca0c94ea74fd900476e89471a40bad89e28657604450c1
MD5 abeeacf7c2b05d07cdc3b71f96cf35da
BLAKE2b-256 e56b45b88c19db1de6695d56d25d6d242870f47e541625577fd1035f02ec2fd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7796802b609cea3db237060d818829441beadfbc8468602ded8ee83ece13a2d
MD5 b0432fcbc1f20f57dac7fa72164e17e5
BLAKE2b-256 7c1ac62445e23fca03175e99234379898d13af922678ab329acd2440a68fa8e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86355329d226b20fd75d0ca6b9fec4e44359b7b855604d7f49c804fb165fe68f
MD5 8f623dd5d7c86ce1da52d419035d66ba
BLAKE2b-256 76e3657ce8408beb00f2b10207b4e13a8098ce25823c1b2e257ce35ff4c61437

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.7.0-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.12

File hashes

Hashes for dataprof-0.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d04f18c4bbc995484e3327381a37128ccfafd8373370397a9b481d1d3443fc17
MD5 a655b517f8e20210a131a02a54a41289
BLAKE2b-256 1784db9c2ac83bda3eca2fe6064e0bafa6ea0bb107a0f6bac96e8e13f330cf2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 196dc6f4b8ff9bcc4db3bf0756297778616e623face9f77c451390b1f26c9b9b
MD5 acd147fbb3a5308b8c72bd3a01a18b7d
BLAKE2b-256 6080fd02994cdece89ada7257c8de312ed032a8a3a9ffe793fe4dbebb4e87f03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f4ca07e13b86b8c35cc45fce7fe55fc2559f5bd16d99023a480aa70a15dc5c5
MD5 5868a73690274167f904cfd3291e2af8
BLAKE2b-256 aa6dbe06868a03665cf15c7cee38f2b7524b89e07e57daacd248405c8345c7ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19ce0a2e73628b92b07276dbcf7bdd08f9de7fd8a79e1d65a9d137d54e49027d
MD5 0107a1c81338c3089f8e5b827389362a
BLAKE2b-256 303651e7f543380c59beae0f79329c08aa763450ad12aa2b27d8421a54e74924

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7ec7ca7bc3ad8eab7ddeab06b51926a395df79db858a10e721eb30e217d4f9d
MD5 a3b360237386f88a7211516d1276790c
BLAKE2b-256 02c09c2a8655a2876f9d5e35d8619fe74ad532cf3c97d721f48ffc488e5ac7af

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.7.0-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.12

File hashes

Hashes for dataprof-0.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fa4c2905d5fb0577813fe3babd7d8aff1f42c332932c8c83502341da53cfb9cd
MD5 d5d062b8cfb73372d7133a6e3da0a856
BLAKE2b-256 a20b347bccedf16b3fc0e960b93f445934a4a48c690418c17044f93f47afdfbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50fba0cb963836aefa7b104685cefaa56dd4bde8a22f88bab16baa5b0392eade
MD5 e3284addbc5e84cbbd7d8c750bdef724
BLAKE2b-256 046f51f3f545a72e3c6db0e1c9a0c6ea38b5e7dbe7347f6b9561d1dcd27c6dbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2772a1ae8ab134704961a50edafa72f65a7c99ca5f441b4a1c7dd1b0dfe5e9b9
MD5 8ba88d922e9772cebcb06895cb468be5
BLAKE2b-256 7be2011a4f4bad037e1231494836bae996946c51d16f949aca828c10775ef0b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aff60c9ad63e6820ef99949f96d2dc37d46595d9e3ae96d999ace70b86b04dea
MD5 c227a2ff9eb7fef7e809a143b31e7926
BLAKE2b-256 02b28c8474ebff8d7ea4a1c19dacb9251dde734cfe73e6928daca9c745dcd132

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 264267c9b55a547562232f5c0b4f68e52558a3a8b2456c3a96757b3f7bbea6ae
MD5 8443672243b087781f308cafe0fed73b
BLAKE2b-256 5b31b8c1734f598df07519ca35bef767cafe48ff3fc8524d213ab38933469591

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.7.0-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.12

File hashes

Hashes for dataprof-0.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b7cbb197764ace7d61d3d2d02a05b0704c83e67da41ebca81585096a38493681
MD5 cc48790920634b7bb54684fd24f80764
BLAKE2b-256 89f2660dcbf6e77f04832ee812c71ee6dfa4b96be513feca1dfe5e3709290f40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69d2d9003d71c69fc72c4e3bff57e7545046f80452f5752368cb0b5706ef6072
MD5 38f46954431fa9f21130ea82ae05ea44
BLAKE2b-256 941edc96fa26ab008d8bce508676e80cf58e112851f9f2eaae2240c33b477ac2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 513633db63de85101dd11162204ddf4347e89378bb151cbe2c14b9a86000efec
MD5 a27d1427576448b7af60ecb7cf0b31a6
BLAKE2b-256 08982dc46a6e4295ae027af3d9de3e831429e94592d3025f618f32dc13b0bc7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce627b0cc367da5b755d8098edb9dc83512da0fab5593b6aacb84f2de6ef2a87
MD5 987dfe0129d3baee98422edc49d631e1
BLAKE2b-256 7010f1ab0b177bacce19ae7b39dcd098b55dfb4d88f981f632f103fac010743c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab1d63eeafdb09cb5aa4f046121aa40cdf130167b302b7d0c38382ad278d05cf
MD5 d65d6f58c8579f78b55f0bea883c887f
BLAKE2b-256 d4e018d01fd59d3a834a69d4b003475fdaa236212cf939e66bc346734e28cf6c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.7.0-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.12

File hashes

Hashes for dataprof-0.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6a921eb6694b6e48f39ca739d7b957efd3699046655bf707b5af917526923b48
MD5 aaaeba29f512c3a4bf87bbd5b98fe4be
BLAKE2b-256 1b90c80fdcbdb9555fc8a254dac7dea1a3e4d75b298cfb11354c95b8079360a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a3b994f35691ff0dc9b46edab5a6076c4a40e8cf5d603ccd25a299ff41c2818
MD5 bceca2a329b2d03166e26c8e37be3ebb
BLAKE2b-256 578d883a98c5d80a93ded987835d77c6dd8bbe54759a6ac3113821589027b81e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c67ff9dc567ef8dcadb96ed652d6ac3d037b0360fc5dec6f09a19f31f16eddc0
MD5 472af7ba0d3b3eb47f3fc2c44b10e8a6
BLAKE2b-256 ef99b8aae491111c8a9690a50f528ebf201ba4c70d7088aa06af51a22a65f932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a90befc4f1e8fedd44b9b24518c68e5fbe8c91a0d3b929ffafc2c55cf73c60e
MD5 2426a22745f4f82a472e835f546cb126
BLAKE2b-256 02994c62520bafdeeaa4276d8cf814d741a1a6367e7e540559f6f1525ea88e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fb92bee904dd7ad545d1bc905c822dcac7a9c486c6897a594882c09a976d2a8a
MD5 314682e89e711690620ff7774f564493
BLAKE2b-256 25aa08e4ef2467f67734ba1dcb216f97cc9404956aa5a874e175bb3ac4907b76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d0240f64d95d1209d63c6d0c93cc9f3ab184995bd429916d01458582834e673
MD5 c21d2e15202a2377722d8826f097d3ec
BLAKE2b-256 c06a232f37548b03e23421f80ec21260089f4c8377f473bf7fcd4ce0dd6cdb33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 331bbf6d2769c1959e3167590297195ab08bc0d0f8581e359e551be448739093
MD5 3ad964e5f17b96a35edb5b5b9d582878
BLAKE2b-256 e13789fe93e73e359d19979297bb676d5f71ea5eff1a7d6b7b5b45ae41851d2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a57a6bbb59490ccc460c5d1c6cdc788fd08ce32feb5c8bed6b81cd4877b727c
MD5 8fab2954f3be9ffa49e56cd726e98ed7
BLAKE2b-256 a2f38f527fc84d0a8a946d725a67404d9bfd5c2f1162bc0f46251f3369e32205

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc079944bc8f0864c96018d704d927378a43cf7cb9be3c2bfdf4fa4c069877d8
MD5 51bc78e8fbf90ec58995f39d50c04160
BLAKE2b-256 1903fda8b81aa333a9da3d1754cec6b63ff219bef031baf96bbd9557833b2132

See more details on using hashes here.

Provenance

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