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.7"                  # core library (no CLI deps)
dataprof = { version = "0.7", 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.1-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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

dataprof-0.7.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

dataprof-0.7.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

dataprof-0.7.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

dataprof-0.7.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

dataprof-0.7.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.7.1-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.1-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.1-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.1-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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c6f120d684f2af1385e91885456955550bd10bf25238a7b406aef56d587936c
MD5 0b3ad0d7b31f309eeaacd0b9e6836e99
BLAKE2b-256 e6af77e715f7879baa2cd1580de6f3e765697ad9d9d397dbb8afbe8fe5ffd80c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a7d87501e06bfe9831f874110604497431ef6142207b00134ffd3535a2e8766
MD5 b79f5599583b88beec3927f163584d2c
BLAKE2b-256 9bef71cbca86fb2025e8b4abb6934dac6b9f2b9e50a95bdf7ae599452c288966

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f52fcef593d3097c14f1e74af13ce5d152b5cf6def641cb02bcd93122e1bcd6
MD5 d73e543f04a21f4e0bcc050446936b19
BLAKE2b-256 49a58b62083e2c0f3c38bad49d286a0c6d3009f426c015fe003aec846a2acb41

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

  • Download URL: dataprof-0.7.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b68ae3266e3a9a3473e370ccc7949f9e03210cc574c1f3cb4da9ace4952cd819
MD5 11d56aa8dff2521f4f7eed4dc13396fa
BLAKE2b-256 fbd25bb6b84d1934ada4e6f828109848a3c7a4de786e5416d20d092c10a11528

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e29530aeaf97d3c74c818ef537a874c5f1e9bd21747445abec19a8accef25771
MD5 43c9dae5430724bdaeea2735b85ef6b9
BLAKE2b-256 feab39c7ccfb30d7256a7f01199aa3b4101f0d1a083deb80f6576a740196db21

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c1497bd362bf05f20ef1f3a9d128a6b748c778d9aff744bed9d9084d803e233
MD5 0aa8bdaf3733c3f9741131a76148310e
BLAKE2b-256 fab2a78c8e78acfac452d583a0843d31dbf79ef96320b753170c2c3c81ad3182

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c5492248c2072d733ba2e103127da2aa8ebde743cbdb864810e7063748079cf
MD5 22bb57dd79a5a2306d0e359218533a48
BLAKE2b-256 6582ac03fe0580f7e96307d35a64bbeda23227be46f81167fb6a361552ee7546

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f47304e7f07581755cac5d71eaca0e22262df7c1a73fb44bf3d4a40e0a45bc5
MD5 6eee21d2412148a8a3b32d655ded4e04
BLAKE2b-256 20fa83ed34d99b68aa9d65b3117fbbb471306b6ebfa0b1d43851fb6c0ea570bd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad5534746ed145c70f2a3bae69d7457a5f83168eee20375987bba4d0a548d1fd
MD5 b97aa72b816ba773e7ca28f815e0c38e
BLAKE2b-256 9babccc0b82fde4022f3416733047e02be89802c2685e50c0d3fd29c1a3067c3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

  • Download URL: dataprof-0.7.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0721b3caa99b40d33a3574866733e69f3fa3de9cdf3703692eb6d304ce7ef7cc
MD5 f311c540368875f7b9889d20a8c545c9
BLAKE2b-256 f9389a87477edad991f81812052b7cb1c90519f23c6381a4e8b8a45aec38490b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8baa2c0ec1ac4a9b431b2e402ba9216eb7ff8212c0db7183397af898c37e4fa7
MD5 19cbe1d1dc39b026c5360bef21168af8
BLAKE2b-256 5531b4f0874f813cd43b4babc56b9c0d390e7bf56235a73a6444299d83a764d6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5f33be78987f4cb3e7616f57e71f1c5e0685a04e8347d2c4bccb0ac78e45a86
MD5 d9ccbe7d0c8087ed8a91ce4c9cf8a47c
BLAKE2b-256 329058ca356eb09d282bc2a2beecc5946e1a00c0a3c3c08a4027889b262a4d35

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74c15718f0e19b6d7c69a3b197f8d06941a5ef39334bb1be49b7e6d293fbb225
MD5 e57949c94fc61de13cbc36715328fdeb
BLAKE2b-256 022ddf824c408e9f7ce20215ec391443e3b65335f87521c87a8ce7aca15d9885

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b65ae1857dd32c69fa550342e18bb03f172f408f8f2decb06009312bac3fb37e
MD5 f07803d7670ad8ac30714d3c49942c51
BLAKE2b-256 161dd3d2bd710d4afc5c996bfaca7c6bd93055137767e3753dd5d52c1eaacd2f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

  • Download URL: dataprof-0.7.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e12c7e129ef1656e10e27a29612703f7ee27de137c791ea6c87dcac32226fc17
MD5 ab58ba16b1ed79afcd7e950dc8a369a4
BLAKE2b-256 652161465b9f4ab1408d87e16039121af2373578c40583d9f11f494d1373025c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 874bad0db7e03078c3b8af710c44ceab57541669ab1ccf04d19773bb0f8abd76
MD5 1e35215660f8c759c01063742d7fd9b2
BLAKE2b-256 53635f2be280787689730f3014295952344937669c278d6be42a2a308ee5cea3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4040c442391a5a8f6e82c99c184aaf5ce42d3bc1c8ac102c885bfc0652c7a8d
MD5 3b0e1599a27af850f4b37fd9931a52ae
BLAKE2b-256 2420fc61512cc188f071d253ffe0bc178075f6a0587f19b101b6dff3d0cbc494

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 412a6375492326901ad2f5b44a38c68eeff59265f2ecbcddb38bf49725c89062
MD5 39866af80fcb757ae0857c7e680453a7
BLAKE2b-256 74f564b7cf3056984fb716786cf70eda6ba342e7eb998296cf1ccd8bd07ec32d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5b8aba2134eb66f3d9ed41ad2f9a8cb40ade2449fcda2104c3111e6d2b88aa5e
MD5 c1f2c87138b1ade2466fce2eeb3ac4db
BLAKE2b-256 861f8fa68910f1558288e32f8992cb0b36d4cacd15edd17be325ca750b6876f3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

  • Download URL: dataprof-0.7.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dce6c02d8126f6592b3e2260b7330ab8f88c5a98c395198cc291b907540dfcad
MD5 7f98bd576d50da43ee634762e8a30698
BLAKE2b-256 be14e646f162978ec115bb22797c5fde5ae5ce545f7a5ff5e54cd7ea8704edfa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88541a0e1287f5d27997f68c805b4b9ba7b5f43385707058e06c658bb213a908
MD5 9c23be6380389f27251adaee3c45a09f
BLAKE2b-256 a3c2ee4ceba899450f0a5c16864b830e83692bbb631e5b68f6d9e52e31dc3387

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4361f64a549b6bb798d1c64188e9d4f3eca1ddc73372ec6cfb1686bb272d1915
MD5 6985e09d315a0689b1feedd7ecf46fdf
BLAKE2b-256 362320ff569cb21f188ca47201801da0e6bc11401f4613e9ef2e7c4c27b2129c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b03ff26383b264e7e6ffd86ffb46bb77a164a5cbb0068583739c5530d876030b
MD5 48d6e0128846a14add8cc735d78f99d0
BLAKE2b-256 5ef88519740e18d35234221c2909034ad3f9e2cd83a5fb5558f11685787c8056

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f60fb9eb174547ce8c9b8c45f7eb92ec9b3da714e8d00591e44b9ee606e0fe23
MD5 f8d1538f21922ab69fe33ce8f13cca3b
BLAKE2b-256 e6360987ba07e33e12878babf3c6ce6fb041403f19c497c2c218ca41c8bfe4a4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

  • Download URL: dataprof-0.7.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dfc559b8cf24a0e188ba46154ce29f939b743c42431603cdf9d0142484debd43
MD5 cac9c4d8ae40de2b0ac83cfd77fc680b
BLAKE2b-256 ddaa5fc95abeebeb2ac6cd28342ee2d13380c9de7c1294adf7191f6c4500b3de

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d60965d8b8a87100a3674b5b1e90d91b962e13fb5c4981bd1433c02d8301df8d
MD5 04ae92890df3cf65ff013f2d952b14d8
BLAKE2b-256 a187f8706c564bef074ba1001751f14836a439e6f645e55246a506c1e95651eb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f4405f4f263f224c9d7ad982ea7218c59c98d77058f5eb1cffc3f6baad4676d
MD5 c575bd12569ad5faa7bcc8ed9fd10cca
BLAKE2b-256 6a97328f07d881774f36b478fc7981d3b3fdeff41fc396a0747cf5911a7289b1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e88adca3dfd15f534b870d0abae85e8fc50269faa3efa4dc2ddd43d47be90026
MD5 2ea52e3259c57554dd376fd962ae34cf
BLAKE2b-256 890a6d911251058e06c671bca8eeb853629fba58b9f0d7c2be9be88b4047b3ba

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f0265ebd55046d2342d5db86ae7c47609067c2889e4428337e4498ce9d922cd5
MD5 7812859a95b49ba3575a21341137961e
BLAKE2b-256 94dc0606bb75fd605475a9c5a3ac88cf58ddd6f5925166ad73bccece94b2344d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac5bd21a205d8997e5b57741c9260a6f2f18d683513fa9419c092b04fd5253dc
MD5 4533306818e099970227e4f276e0d07b
BLAKE2b-256 3374d938e77893d45624311babe91b4f8e9e8b40b40d3daa61fdc407f86aaed1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27894ecd3d8fbcf2f94819024b55c0fb474ecdfd41c9643f37dc93b0ea2ba0a7
MD5 4d426576ce41cf4e3b8a6b655d2cf82c
BLAKE2b-256 18cea9a57d1cfe4c728d06cbb287f09f9c331766d429abb14d41771d696e2821

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc1fedffa1dbd533547d3a8aecf62dce8014ef7212803bf865a700654369f676
MD5 b603c909ba7bedbb9842e398a6273aec
BLAKE2b-256 6d1dd883306d31be191001a8cb1dc7ea24ba6c07d37f72bc474d7f38d6aee64b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

File details

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

File metadata

File hashes

Hashes for dataprof-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37c94a20713bf0d30cf25fa4600ab59eceed2bd460024104efce90d190a06fd2
MD5 50e071c6a52d34df11e04759ab714eb6
BLAKE2b-256 8881e48a3c92d70ab87714e2f0cdffd03f7c054985b51532349c2fdd6a65bf39

See more details on using hashes here.

Provenance

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

Publisher: release.yml on AndreaBozzo/dataprof

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

Supported by

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