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 and Python library 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.

It is built for the first ten minutes with unfamiliar data: find sparse columns, unstable types, duplicate keys, stale timestamps, and suspicious values before they turn into pipeline bugs.

[!NOTE] dataprof is in beta. Current releases ship a Rust crate and a Python package. The historical CLI remains documented only for older releases.

What dataprof answers quickly

Question What you get back
Which columns are thin, empty, or structurally broken? Null counts, completeness metrics, and schema shape in one pass
Did this feed drift or spike somewhere suspicious? Numeric summaries, outlier signals, and range checks
Are these IDs really unique or just pretending to be keys? Distinct counts, uniqueness ratios, and duplicate warnings
Are my timestamps plausible and fresh? Future-date detection, stale-data signals, and timeliness scoring
Did parsing silently go wrong? Type inference, pattern matches, format violations, and source metadata

Pick your entry point

You are doing this Start with
Embedding profiling in a Rust service, ETL job, or batch tool cargo add dataprof@0.8 and Profiler::new().analyze_file(...)
Inspecting files in notebooks, validation scripts, or data apps uv pip install dataprof and dp.profile(...)
Profiling streams, remote Parquet, or database queries Rust feature flags, or a source-built Python extension with async/database features enabled

Start in 30 Seconds

Python

uv pip install dataprof

Pre-built PyPI wheels ship the base Python API for local files, DataFrames, and Arrow objects. Async URL profiling and database helpers remain opt-in source builds.

import dataprof as dp

report = dp.profile("data.csv", metrics=["schema", "statistics", "quality"])
print(f"{report.rows} rows, {report.columns} columns")
print(f"quality={report.quality_score:.1f}")

age = report["age"]
print(age.data_type, age.mean, age.null_percentage)

report.save("report.json")

Rust

[dependencies]
dataprof = "0.8"
# or: dataprof = { version = "0.8", default-features = false }
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);
}

Why it feels modern

  • Fast first-pass signal -- surface null pockets, type drift, duplicate keys, and outliers quickly
  • True streaming -- bounded-memory profiling with online algorithms for files bigger than RAM
  • Multi-format by default -- move from CSV and JSON to Parquet, live databases, DataFrames, and Arrow batches without changing tools
  • Two polished entry points -- a compact Rust facade and a Python package that feels natural in notebooks
  • Async-ready -- Rust async APIs and opt-in Python extension builds cover stream pipelines, services, and remote Parquet sources
  • ISO 8000/25012 quality assessment -- five dimensions: Completeness, Consistency, Uniqueness, Accuracy, Timeliness

Feature Flags

Feature Description
arrow Arrow-backed columnar engine
parquet (default) Parquet profiling; includes arrow
async-streaming Async profiling engine with tokio
parquet-async Profile Parquet files over HTTP; includes parquet and async-streaming
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

For the leanest Rust build, use default-features = false or cargo --no-default-features instead of a separate minimal alias.

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

Start here

Integrate it

  • Python API Guide -- files, DataFrames, Arrow interop, exports, and optional source-built async/database features
  • Database Connectors -- PostgreSQL, MySQL, SQLite setup and connection patterns

Understand it

Historical

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 Distribution

dataprof-0.8.0.tar.gz (378.3 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.8.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.8.0-cp314-cp314-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.14Windows x86-64

dataprof-0.8.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.8.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.8.0-cp314-cp314-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

dataprof-0.8.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.8.0-cp313-cp313-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.13Windows x86-64

dataprof-0.8.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.8.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.8.0-cp313-cp313-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

dataprof-0.8.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.8.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.8.0-cp312-cp312-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

dataprof-0.8.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.8.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.8.0-cp311-cp311-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

dataprof-0.8.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.8.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.8.0-cp310-cp310-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.8.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.8.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.8.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.8.0.tar.gz.

File metadata

  • Download URL: dataprof-0.8.0.tar.gz
  • Upload date:
  • Size: 378.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dataprof-0.8.0.tar.gz
Algorithm Hash digest
SHA256 a0289e3588ead0462090bd243e833c692eae0c0c892e38c4c3f5734039aece31
MD5 4a28aacf1715e7476826f7c8b035e60c
BLAKE2b-256 ac97abd845e1fa006f4d5b42e2e042dc712c57c830dce65c266528981e6aaae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.8.0.tar.gz:

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.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7b8d93ce55b4543dc08d8c1a4855a0ebb580be3a27b19c9e38f7cb2d1aefe13
MD5 fd824107cdf42caa5eb973d05436e4af
BLAKE2b-256 cf24a382ded3797d79cfa3280cc93553b97be101a5ce9f70dfbb2487de2e7d32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f71f621123fdf2415d95200c92c20687ec27f04f9b42ecdc3cb384f28fc4f213
MD5 3855ac3e9390f9e7e2be654e44e69bbc
BLAKE2b-256 a570453eb506c2253731d77541070297fe121568810e83f68df81bb06dd0a46d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9bd7e3068dcacac3cad8fffdc5b9ce6ca4235c3b8153a6d4c044cf29cd9bb18
MD5 c8aa5387cb725eddd1c57c8d17bf6d75
BLAKE2b-256 f0d4d6603d275781111a3803a811d8aef9faef191a79d6181bab8504a44597a4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.8.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.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a969e2db067b0e60a902c0f4f58fd3625e79c56761ad5a532c464241873e1efe
MD5 947bee631d56e7f6e252c26df4b81a39
BLAKE2b-256 a32dde6f9a8631de7e2dd24742b638c3b6f46d976b0b9d9455abbe04066f4c91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43793f478b780d15c3367866a178613368eef290468fbb74f26f2126c27bd1b1
MD5 7a76ea1e53eb8005cbe30a168e04dbcc
BLAKE2b-256 b4fb0fcb7b560f7e524928ea372e0038b8efbec5c774656afaa17cac10e5ea22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc02256a360fd6f6bfe37d3b73fae443f9b1447ae92db619225b6173c61cb9cb
MD5 becc56acdca7707730f0d088d9767b67
BLAKE2b-256 c7c5937bd788f8a2673840a89311011bde7b7a3d5701eaaaa9fbd81f77d5c465

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d825a3e17d926e859bc29b290931f5df605bab604c0c6c239d18e26f8f0ffb6c
MD5 846cfb13a271c7c525a9a84911fe79b3
BLAKE2b-256 c112f4517e180f0abb8bb8118f44463f7dd3c7241859199d12d46260049bd5f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59d7b0c89bcaca2a184f1b610579558f6b28a81fe0fc8ec7e64f14fe6e1abd7d
MD5 921667b8ab9478b45f59abfc64d1a746
BLAKE2b-256 2b4c95532f5b1e0d28902e49a56fd02b1107020b1569d6b581a9089df886f9dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 929355ccd7750175d949e58ab070ab3953ccdc0061b24c6af5f7999519a52eee
MD5 709ecd3251ac3786f10384bc8af379b6
BLAKE2b-256 87d45847af4fe95b44740487e9359b949786eada1429b637cfc145d5312f3c91

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.8.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.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8c85d13954366c4e6a7651e6f7562a38d6825cabab8bc2c42db362e0872aa57f
MD5 bb2b7ee0057339c3c740438724f11577
BLAKE2b-256 7cfa2385570deb263482b69ae7334d2701a62b476d75cdeaf5b218609d98522d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c42c50419e0174e82e41f24b2593044c49662360dbdd6fb61e5609b068e2b50
MD5 844a88cce8876c79fae6191710958ff2
BLAKE2b-256 a005c80d8e7d54aeb0cc8d53776ea8070974b70646289f8d41ad5f5767a2250c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33da0688dc3f8d5525ff48fa92c0e7568598ce60287932aa566d89f37c785c2a
MD5 99b5511aadc9f29c0179fc63ddb59bce
BLAKE2b-256 32f97c4fb63b1bc04ea09d5d5448b8a5f27deb5cc25b846fdeb928a5e64df65e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c2d18e3bf2bf80961851de418691612a454a3739a8ab0f2714330a8a4953dba
MD5 122108f98a172323e8545c358778129d
BLAKE2b-256 c50de9f28a86a790dd17b47a1d6a1f6bde9f135b2630f9732f7705a55ce0fb71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c82ed802d1cdb70136be284fbcebd598e23d4fa6844f27303c79f34b8e9ebdf2
MD5 8f3f14907837d7d3d9ffbfe37b6aceea
BLAKE2b-256 6e53265f23a6399545083bfba14f57fa8304bdd71590606eda0a993cd46b600c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.8.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.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 295d3d266efdc274f16dc07060d81d3d53f8da781af993231d9c0914e0429c83
MD5 062ceecca8c49af8d262e5bc26328ef4
BLAKE2b-256 8a322a1833aafe3d9fce6679f68dc4f6349a75bb4f22f1a6df08f7880c11cd1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d55c0296dcd202a881707add83fdf17db52e1c6826f8681d40a5192d6f337c7
MD5 7e11edacda695cf92efce0d29c98e810
BLAKE2b-256 c3d7a72155fc196898b6582b97ac116630cd4b98a70297abbb000352bc5bf1d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99323986420c19e7ae5fbd0682c0cef6f7e30da320636482fd3f91fa3f4c282e
MD5 b00acfe267d474ee5b5ac479d9cc137c
BLAKE2b-256 71a51841552acb292250924294057f0c5221779cef74d4fb757e41c01ecf2138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0dead98c3f1a8e0248fdf5caaa3e671aad16e694466e987b75f9be0f6a935954
MD5 0b1f40d19639cf337b7226ebeb966109
BLAKE2b-256 6018628a5dc093572c79645dc6e0219523a3c6b54b5d08c313174436df4b64cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3deaa80d457d7aa3753d88d758c215bb62e694c4cfc0b2a21b157be241cb5377
MD5 82e88d920213506705381544cc94b1dd
BLAKE2b-256 0861ce1a203b88926815132ffe7ecdd90356b689a0f638f7581cbf7a77f68259

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.8.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.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bc4a0bfd452ee948b52fd886e98bee3022d8bcf2bd813afae79021f7c7a2297f
MD5 3293e9f76c814fa2564db510a99854c4
BLAKE2b-256 93228961506c51808289448610848c2712c0f2dd658d4e52b5f2a92986e27392

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1abedbf4d664fc64e68c0ac5753d811812be59e5fa4f6ed582d88363695c0e73
MD5 6489ea121cc55f8680687ca1bfef6f2d
BLAKE2b-256 9d27ce75359b8dfb02f8b679a9248f12f19d7896cd4f8a8abe9c4131804d3331

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a074b67ecb780534c5ca00fd796cdf20e7d7177ef523db832feb251f5dc40ecb
MD5 5069776fd471c4f415a7dc88632b87e8
BLAKE2b-256 b3db0afa07d12f3039729ef04bf0b73ceaf68f0544af542af61b2055c2fe791c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3aeaee233f62a8f018a5b52b8b1f52f35649a503b8239e0577680af692ca4f32
MD5 c53f9c71d55e1e5a8ddf2a9ec5a6c9fc
BLAKE2b-256 2189ef9cf2317022f8fe1943ff37b70a00da80a7d3bed517d6852f3b7c2c037c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 32b895507ae0875511337f6153483fa4ea24adc3028dc909216d7545437078a8
MD5 93a88bf97d0d5b5f93cc31579bd7ff54
BLAKE2b-256 45f4e9d901bfd3182bbf3e41ff15cd129f48536d7f1591a0acd1dccc7bd30336

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.8.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.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 74eacec6e590a8dbd318fd748592cb56152861d85de897114b4900f9b893eae8
MD5 e531659385609f252d57e2b8d8395b42
BLAKE2b-256 398409fc557cbc5b0ec137f9ea53602160fb1d6794a3e8bc6339ae16b89fe225

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f099f360cb166fb2c9f52a417ab85b61f8658d796c505011f32bedcb22c4c042
MD5 a1388e363514f0c5c982036835c405d2
BLAKE2b-256 df9e76d26c166983f7bb77d800e990612fdd2af4238c04f3e95fac23ece401d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee8aa34e91bd380296b44f7f61f51cd65f138cfc54e527fc18c289847292361d
MD5 fe91ef60b756635d21a1b84dbe85fe14
BLAKE2b-256 576e382e2c1323c16bef92858de9cae4da7af1b2f383d76c6bf64d89b4ea45ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32831c1fcc7cf9ca03e09225753fe175c529bd22bb493f2991ccb739e7a0d701
MD5 a9cdb75e0c1ce19b4df2d41bdd4b4447
BLAKE2b-256 a8d6223a37270e6fb5fe9f8a378a3f7fd474d0c73d64b5806b507bb412a97e64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d8212a55409b1410343566c0f23740897dd6e62045e5798bcac84c87cc40b6cf
MD5 bfb6943247fd3bf6731f5d1cea0241c4
BLAKE2b-256 5246fd759ed373f3c6044689d7adc39798001587dd7496ebad67a58e40dfa235

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de290f27370c6f051bd4d2f67a09f49e07d729c968fe60aaaccac81a493dc84b
MD5 f7faaed2f116c4e25f2250a4a2d108ee
BLAKE2b-256 d71c92e34c3bc687efcfbc2d6a649195cce0c96d78ae6d8bcff4411b94d3e2f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e732562b1aebb11167bdf5e4a71df37e17acb27047a82d43bc726ea8ccf8876
MD5 5c6183df810f10bf7162ad95bc0909d5
BLAKE2b-256 139930d10a1646f2f67dfcce68cd57851d1089720a10191629dc442d73e7fa64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 430b2459f726cd24a9a57e60faec2e7766ce4b116aec6a5e4e0da1a6b3f6c810
MD5 ad633d69c1531ff34e9f0d4019faea1f
BLAKE2b-256 57e75a1398fd899e7ebb81e9e05dd13b00031499361bd75e79d60a6580b30ff4

See more details on using hashes here.

Provenance

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