Skip to main content

Fast, lightweight data profiling and quality assessment library

Project description

dataprof logo

dataprof

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

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


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

Highlights

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

Quick Start

CLI

cargo install dataprof

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

Rust

use dataprof::Profiler;

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

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

Python

import dataprof

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

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

Installation

CLI binary

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

Rust library

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

Python package

uv pip install dataprof
# or
pip install dataprof

Feature Flags

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

Supported Formats

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

Quality Metrics

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

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

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

Documentation

License

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

Project details


Download files

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

Source Distributions

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

Built Distributions

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

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

File hashes

Hashes for dataprof-0.6.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2ad97883f780a272326ae0070f868daaca5b8c77a261423b9665b7a3a39480e
MD5 d885d2b67978b408b29aa0755e5ab4cd
BLAKE2b-256 8c3219fe1cdb74188a1b92cd65d114f4b9339cc48295b4935c264cd71bcb5a2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 829f6830ab3982eef65df731c9769835e137bdf4c21a91fbe0d1565e49737e9a
MD5 1bc0eff60bcb32639cb5a09ed56fecbc
BLAKE2b-256 eb80232194c6fe33eb8293a007475242ff81f289bd3850949a1f7a18875d3190

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62ab8a257d9972820d2247fb74a143870c93400e9efd62373558bfb11f47c981
MD5 31a226ad4f08435b8d9b6f66a57855d8
BLAKE2b-256 f0a8360cd24d1a5c096d5eba6a97dce6b203cb9f0e679c4eae573bd72f1fd3a8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dataprof-0.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5d98c881a7d7aefd7905853d12985a77d3cdd9e8f49580091e4bd4ebda258208
MD5 7e47a59798c082e1a5375d16cea29049
BLAKE2b-256 7d1319f503c0cf1c391ef1d1fdbeed9b978964fcf6d075cff3c2266fa0f0547e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca11df31cec2763695146566c8856aa9f79d29d9d851d817a0b3cf359b1f1d6c
MD5 56a36d57e7481929a382a656067f3abb
BLAKE2b-256 cf15fd39cf03c07fa9ff569aaf5ca1bac8afbacd185b3439eb7ba7d1a22bfcd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5553a4af0ed1254f430d0ade2c4d0ce795a41beb0246165a1494a99062deb700
MD5 c0117e6b58e2f841a7586603bb6606ae
BLAKE2b-256 12f78cf7fa4258917e1ccda7d7f107e9774f031b02205314c8c2ec7e7dd3cd2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f21db94897cd8fde107458c513b12ac125d3ba94d04c83738fc46bc04fe15b7b
MD5 fcd8c32d74071dfe22800cad5319dfec
BLAKE2b-256 8c1f2601fef49f95fa9b0a26d22c6410e669546fbb6e76ca1a44eea9bbf5c26c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c9ab3bfb3d6f7699eab19d5461c7b312a19d506b66db676bc09b00d9f0fd88d
MD5 9f90ffdbcfc8d11f4c0634cef5e58702
BLAKE2b-256 71f3d75a3add454242592df0e2c0690f63a6a59e183a0e02299408ad8c4837e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70527183cf51e9e9bb38d51bb8b389289a3942e211d59211ff7de374730b613d
MD5 b2ab17a20ebbd71ee5d61fe713068c79
BLAKE2b-256 979d0c6911aa78396d142b2ee886245565611e8efaa9fe39de6536833723c49d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dataprof-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0cfdfb3b360718bc2042e6f0c4da41388c7eec1e153b3779cd6c074b47c9a7eb
MD5 b961df920ff4a4513151e6a08f17f3bc
BLAKE2b-256 46f0592e5cae3d72527bdaae64e8941537d6a4930aa10f83a057ad3a686937a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f67da0905dd157d8d0742a571a43125d1a80e231cde2f75b74f44aaa547f8870
MD5 482e7ede3d72f1df7a01694a0e916a3f
BLAKE2b-256 77ad19adc0c4a8188a1960d2fda79e8d8e50aafc902e10e3f0c80873a6e877d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94b6a411a2be3ea89bdfaf83f2ce3b84a06d2931dc592da0b3ae306addbea737
MD5 14da197fb0998ca9c3e1d76f62042d69
BLAKE2b-256 c29430f26a5d4748d7567d5dab307738e90b16a37d2cd76f98b40796a07d36af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fb553639340e046740f3a6b8c9b53a1c22c4c7c3beca4cb3b93d27576c068cf
MD5 c5e9e121ea199e414ce8e92472375357
BLAKE2b-256 51bbeadd121e01b4d7a91546e90f86caa05b0167d48168a50501c32029a028b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db384c16f27a98436acb7601ae28d406b0c792628715db9a4715d8e50f61e512
MD5 46d83ff71ec1934de19522f3f08004bd
BLAKE2b-256 6114739821e9640b9d6f27c0969c7744b9f8052b51353927e9bd65513cd8c2fd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dataprof-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3feba83e500e6855630516133764524bea055d92c83bab002f0acb52a6acdd70
MD5 63ee8642d3eee64997f25e8c8f55dccf
BLAKE2b-256 3031fec5339d02fd4f1a2bf53cb1b469934e69345778ac076b6a976a36c71468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3465c987dadfccd8cf9b5459a99d33543d1c6c885463a53c96faff0b003b45b7
MD5 ccec9e124b5b7d87b377722c7316520b
BLAKE2b-256 794d2231896c68b54ce31b78d9e43a7982e33cfd36736cbf6a93e1ea982fa206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28a9cfc77921c242ccba3f9307b45e51dd17853aa76aed2e3f01987a428272e5
MD5 85ce9eb56f6dae960c7bd3452b5dd2d5
BLAKE2b-256 5606b3b2776f7da82a8245088d8dc1941384649748486c38c6dfe75fe032cbf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3620c8a118b3a46a39ec66bce3cc6e104ab77e7766cdfccf719b45e190882a55
MD5 1491cec91da3ed85ef4167d341ad604a
BLAKE2b-256 14ed39cfd8ef7773569e7a2d36cbbbbb45442ce3b0d5acc4135270a328a4eb2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78d79c52e35fea62dbaaff5b724760570a8ffc01208c6c30fd221f7eb927c8d7
MD5 4ff3b4e461d25cdb13b52fcba8e058eb
BLAKE2b-256 5e7099338242309984976638b8e84d3c66be67b7ecedbbc8bf34ed8ac9ae87a2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dataprof-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b149dd932e96fb19e27cea1765fe69374176ea4b83e3e2b50bf36152d56d335c
MD5 9df58bc884fb22519c9fd1b556dded1c
BLAKE2b-256 fae1cafb641b61e48912c4ee4a049b5156c76197aec9d5cf0eec3d10794708f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f475ca2f2e1df8e89565aaf9a984b79a506d859070a73782d09de9fc69e86ab
MD5 6641eb8ae72f1bda9e66d95a0393780c
BLAKE2b-256 ab3e026ea9f3bd1a861cf7be47a7e8d7aeb2653983de04a71546b1f88de8ea74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ede9c1445d2e836e0676a65420761c662e6b46890904154d9c1bca98dec4bb3
MD5 0e1cba00bbb1cfd7d11a5f06ba36eba4
BLAKE2b-256 445db3f81da561cf783c4cbd796232168008cc9c6c83bd42169d6153925b4373

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ac866e74477a240f12f4b4de699ddfa0cceaa0609d9427161e5e8713858034c
MD5 4ab79aad11ae28759468e8afe50a49c0
BLAKE2b-256 d18366fcc21e9c9231aa806750b472074e777f66bb0e8343a0ee0c5a21cd70d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3148a2897e5ce00c452f968c2f9eee7f4a96da974fddce53ce3267f10b79d6af
MD5 6be331caa3febba4b0dd7ce234702e1f
BLAKE2b-256 8bd4b25ef324bbb7ca5b9ecf7b13eb009a20e81b0492aff4ced3bd4b51c9e597

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dataprof-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 934e053e9c526e77d0447c1ad24a3ffe7a421b35d3dc006cccb462313663cfc0
MD5 b4517fcbab59032aefa2e158dc969604
BLAKE2b-256 a84173677bcdc66b745a3f4c7c840ca97727786954cedba78c783cbb4a8a15b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c42457e76fae07a7257d740a6d97dce2bf731ef038c3cc3a32a9314370dfb78f
MD5 56fcddf47479898c7ce13c00bc380055
BLAKE2b-256 fa9a3c3e4e8e37e898674a4b8dbaf8105e4636e6d601c5fff92e43ca8f8f2878

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68deb3de2b639daeef5b8b12a2820dd45f6c5090036d336c0381de602aa7c5f6
MD5 4693e1f1c0896aa2c52f6935f64e4ff2
BLAKE2b-256 d1cf3e6f024f8de2da85a4a30db3119612168c52ca5c92c9c7461a96f3df1665

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcc3a7c0dd62e57e091cff3471c63864ea66f3692f81c2ce84f810769079d234
MD5 b1b827535658f78e4f6fe9ad2dc2d02d
BLAKE2b-256 212a97ed9e8b0f2560506090b7e1b02e8d3ca07a910fbafb60639b3e660e5a98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71992f33c3c2791a891c12cbf06b2317f2d1b6ec1d43e42440193bd29411974e
MD5 8e46e4df7ed7f37f3413296d1789cb0a
BLAKE2b-256 eebb1268c34348222fd617ae968e68de5ed682282e63422ab44ce2c1ec472246

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f38a557ab2d87baf7f1ffcde7b504e75162b16ec129fc5508b3dfb5fa06e81a0
MD5 3b5e358400a5c82f49eb103b926d84f1
BLAKE2b-256 33b3089e0c2cf412ae28577346bd5d2b2c100cfe846d20018fd1abfb86b48689

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2730fed04bf16f8cdf2052d25da99f0044cea67e3dc10eac384f856b85698dc4
MD5 bb8de799bdc5ed92c6849be8a96c3610
BLAKE2b-256 55fdfeb15baec4b276a7f68a2ae00afdae4b9954acafd93f534767f938ac0af0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 555d751e945ada3751df601337bdf5783c51b0b939320d6f4403d14782952f84
MD5 34d5cfa69344bac2ad89e44736012620
BLAKE2b-256 7e57fc2afaf48b6c723397981d90ed500301800d772e875b45c87789f1d6c07e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c79228ea671491a1bf033cfe4605f7a39f64617f7c42b308b772f8005a2eb4b
MD5 e1b0d0c28579f16999d9d50d3d07d5dd
BLAKE2b-256 ff50df64c77969dfce3559bb39f7ef7bc881fdf5409494bd41b0b8487af9af86

See more details on using hashes here.

Provenance

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