Skip to main content

Fast, lightweight data profiling and quality assessment library

Project description

dataprof

CI License Rust Crates.io

DISCLAIMER FOR HUMAN READERS

dataprof, even if working, is in early-stage development, therefore you might encounter bugs, minor or even major ones during your data-quality exploration journey.

Report them appropriately by opening an issue or by mailing the maintainer for security issues.

Thanks for your time here!

High-performance data quality and ML readiness assessment library built in Rust. Delivers 20x better memory efficiency than pandas with unlimited file streaming, 30+ automated quality checks, and comprehensive ML readiness assessment. NEW in v0.4.6: Generates ready-to-use Python code snippets for each ML recommendation. Full Python bindings and production database connectivity included.

Quick Start

Python

pip install dataprof
import dataprof

# ML readiness assessment with actionable code snippets
ml_score = dataprof.ml_readiness_score("data.csv")
print(f"ML Readiness: {ml_score.readiness_level} ({ml_score.overall_score:.1f}%)")

# NEW: Get ready-to-use preprocessing code
for rec in ml_score.recommendations:
    if rec.code_snippet:
        print(f"📦 {rec.framework} code for {rec.category}")
        print(rec.code_snippet)

# Quality analysis with detailed reporting
report = dataprof.analyze_csv_with_quality("data.csv")
print(f"Quality score: {report.quality_score():.1f}%")

# Production database profiling
profiles = dataprof.analyze_database("postgresql://user:pass@host/db", "users")

Rust

cargo add dataprof --features arrow
use dataprof::*;

// High-performance Arrow processing
let profiler = DataProfiler::columnar();
let report = profiler.analyze_csv_file("large_dataset.csv")?;

CLI with Code Generation

# Generate ML readiness report with actionable code snippets
dataprof data.csv --ml-score --ml-code

# Generate complete Python preprocessing script
dataprof data.csv --ml-score --output-script preprocess.py

Development

Prerequisites

  • Rust (latest stable via rustup)
  • Docker (for database testing)

Setup

git clone https://github.com/AndreaBozzo/dataprof.git
cd dataprof
cargo build --release  # Build project
docker-compose -f .devcontainer/docker-compose.yml up -d  # Start databases

Common Tasks

cargo test          # Run all tests
cargo bench         # Performance benchmarks
cargo fmt           # Format code
cargo clippy        # Code quality checks

Documentation

License

Licensed under GPL-3.0. See LICENSE for details.

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dataprof-0.4.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.4.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.4.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.4.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

dataprof-0.4.6-cp313-cp313-win_amd64.whl (929.1 kB view details)

Uploaded CPython 3.13Windows x86-64

dataprof-0.4.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dataprof-0.4.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dataprof-0.4.6-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dataprof-0.4.6-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

dataprof-0.4.6-cp312-cp312-win_amd64.whl (929.3 kB view details)

Uploaded CPython 3.12Windows x86-64

dataprof-0.4.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dataprof-0.4.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dataprof-0.4.6-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dataprof-0.4.6-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

dataprof-0.4.6-cp311-cp311-win_amd64.whl (930.3 kB view details)

Uploaded CPython 3.11Windows x86-64

dataprof-0.4.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dataprof-0.4.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dataprof-0.4.6-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dataprof-0.4.6-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

dataprof-0.4.6-cp310-cp310-win_amd64.whl (930.2 kB view details)

Uploaded CPython 3.10Windows x86-64

dataprof-0.4.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dataprof-0.4.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dataprof-0.4.6-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dataprof-0.4.6-cp310-cp310-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.4.6-cp39-cp39-win_amd64.whl (930.4 kB view details)

Uploaded CPython 3.9Windows x86-64

dataprof-0.4.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dataprof-0.4.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dataprof-0.4.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

dataprof-0.4.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

File hashes

Hashes for dataprof-0.4.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69bed773f3ae146275c5f3ba319c2f6849326df12e925596c9ec4f7a194d36ed
MD5 119909258d46fd04011348f784001dde
BLAKE2b-256 8b674771f28f148b1b2e9c319cf0bdacf461d8b91ed5309807bc58b82d84e88f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 878cb3b215ef7ff0d104c88cdb65840d52503dd32707e76c03a4909643a08ef4
MD5 5210df743aba3ce725b4e9fcf21c9ea0
BLAKE2b-256 b71a1be8a94da95a6f92545978df26dbfa1f28e80bd943ed77717be89f162380

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.4.6-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.4.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.4.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32599c59fe976418957a138b959b29d105a6743227d174ce73ce7848bd248118
MD5 bf9294aa30ee711efb73d5018671e1ff
BLAKE2b-256 d46284e48f7ec457e5ac0f5976e9bd263313e65871d8d9319b7b6e4871115e91

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.4.6-pp310-pypy310_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.4.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.4.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f649f26c108ba51286c664199945d9df2ce2db877215e54b8c2667001ec25b3
MD5 289862e4aaa8aa604bc73fba78304bc4
BLAKE2b-256 0c0f64eff1c8ee9442d4d3ecb27b0a651c70cb0097f18f7b545fc5a059c7fba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.4.6-pp39-pypy39_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.4.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.4.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b87990e694c74d885a19d550a0600ef832459f51eca34b452596af7e27c013a
MD5 525a91e0d22143689086687612f5e4b9
BLAKE2b-256 82a9f0f3bf843e1302ae0c385e0b52ae5ebdd8175f2819ac1afd4979b6c90584

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 929.1 kB
  • 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.4.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5e1a5c9f53da23a026e31d659bccf355518ceffb61146bbce10dc76de43e5f46
MD5 aa383ed656bbf413d7a9bc768ae759e2
BLAKE2b-256 6dff3b37c77d22a3d1e1122412a024e6db832894689346346685f3b0faaa7d86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8019468d83cd5cd82a7f712a09a1c4e24a34a11074508caa3ce8cfd10df9912
MD5 670ec314a2671ba5192b59ede44c1d04
BLAKE2b-256 604d8bb18aa7858c986b7af33077ae43fd3b286d2967bc2fde22652de2aab140

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 afb5407e50b4a50b1be415f7a0574975fa761a5103739b065b0d6b4b354d045d
MD5 3cf7ae531dad2cb00c532edecf7bee30
BLAKE2b-256 a27d291f59943aaa91d126cda0574cd8e9049ef11476c82edc390f5f8d229cf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aaa05864b15dc428d0f6e0cb082aa91ce08036ead35c6003fbf6d8f77b914973
MD5 07d283982caf4e18c8d73ac040ea38aa
BLAKE2b-256 89993e423974430cebedfafe151c71c4728a3baa18e5c849c5953c9300770d5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c3a4e55647a3e0e8280eb5290640c5125ee506ad135a854af625f91eca304ba9
MD5 e00b7a8a3a19ab2642be6ba039800b38
BLAKE2b-256 9d2e7889e90b1366518508b0c124b0f0113f2646e2740830d8c12ea6ea8a1020

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 929.3 kB
  • 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.4.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 855c8d072312602d57540f18f8158f8f26cfef0c6d50e2185a0d031f603498b4
MD5 125772fdd6b99e380e038b6cf48341f4
BLAKE2b-256 4fde1770cf3c37ec2b8cf557fdf02ae27a029188a60d953d32adbce02692e446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7f64f47645acb7769a0aae9a1785eb6ed83f4deb52e43043de1f21bc1eeb943
MD5 a5f75429a68bb0509baf41845e54f16d
BLAKE2b-256 1e505e984bf59aa5cd45cdbb5c9436982f17629d8216183d0b5b47c5828484d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 162086262a3ccfe857540d751dd3fae49c0cf68d9a81f204db07739623653707
MD5 02d61b9db42e3f4d90613e125b3237fd
BLAKE2b-256 c449876b3efc3c926f97dc3e2485e719663e84d05cbfa7809e5a1f0b92ac49a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4af37fcc30fad9d19c25d758e7fdb54c5c37b1950ea21398e34e4eb408e673a4
MD5 2a1e36471e75ab131d4a40a27122191d
BLAKE2b-256 7d42b62f5260814e8872272526a04d02669e945d15068c3977e75974a0c27796

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fded68582347d07b3c8717e8c3d8ba47621e4d0648f4c454477becbfc52b3340
MD5 377bf685204aff9a154961a998d7148f
BLAKE2b-256 99b1a807104b36265a024c253507157cacd7d2398413c3798e716f23273dbaa1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 930.3 kB
  • 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.4.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 54733a91557c110e25e1b8edd517879b6ce5b4620101a244080b587ef59a373f
MD5 301828fdb710e36bf45237a3ac5f8e8b
BLAKE2b-256 ea68c953ab084d4011bd652644af703598afd6db2ed16c20e30928f0076bfb14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6ecef10be22e26f01e379517c25f07ee34e9e777025913d80c750433fbf4cd6
MD5 31cf6a4cde842ba5e37ed4eac074b516
BLAKE2b-256 ec8d47406ca1860e96164c588b36cd41a5296808519c61cd6db1a2fa5ac3037a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13aa3615aedd6b98243ed7d349a166e31d545204bd10a5e515c224c9ad6ce68b
MD5 3ec9c2e643fe06c5bffb2c6e265a1168
BLAKE2b-256 09708ec6667deaeb7894faa738966e0ec7133db860cb7b448e22d8c011e70c98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2e0cf314281ef3f3561a8c6585f8e68d3d63d61e1968ae16f04ceb9ee1c6e02
MD5 a29ad76f60ba3a63c242c9c5326833f8
BLAKE2b-256 5a1851865d2eed90bf2cada204c12e9313925f7d874f507c9d4f84286ddf8f1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e5fd05cde3faffeddbbdd5b10119078de0c6f083534e4423c382ebddfb6831f
MD5 e375b73369305c7e92f095bb28502049
BLAKE2b-256 a4374056d584b8350b823c412ad3fb037ff35c12a279e4636a0c6d7b175a8301

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 930.2 kB
  • 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.4.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6300b6138cc3ec87bf6afdf4445c91668bc0d7991758e5cfb3ac1432748407c4
MD5 76a808ff8f0e3bd0bc2eca81291f0ba2
BLAKE2b-256 7d7671dda39f87957e22df274fb5ed85a32fcc9d37a21694d68da2273c8d84f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96cbd726cd62cc0e1c83f99b190b40ed6bc4bb76bbfe19596021a711f773bff3
MD5 dc51001b9756ec58818abc92bdeb7384
BLAKE2b-256 f210313e115907441f4202d3c010f70acf2e84e37314958270e90808966191cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b632db0720b607e7e7efa25791e45d0488087860274246de237d4a83f21da183
MD5 ae5a38c8e1f2db5b500090a763a806f5
BLAKE2b-256 89bf19fc3d562ec92cfdac714cba25f57b46e628aba06c58b9d9fdc5a0b91697

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 450685e6f4f3f29a8def4ffe3805647859725687524d82a4591a2da0851feaa1
MD5 844dc29d57adde14b27bae9b24828ca7
BLAKE2b-256 94df909a37f4fe15fd38face1675884f06eb4f3f047377cd799e2d58cfe88e8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85535025ed68e8435f7d75a4a74e946af30cf16590548468382c516e34bd81fb
MD5 85c8c2686bcc6a154006b5fdc31ba468
BLAKE2b-256 7214481ab6f4ad53000c4c77e7184dbde12fa8abd6349fe2f8168f72775f964f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.4.6-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.4.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.4.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 930.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dataprof-0.4.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9f82a480d16a03a63db763c52252d93c495a20889ba459596cf885cbcb016b44
MD5 f5badb43559208d88468d786e945fdd3
BLAKE2b-256 a607caf8e53b204241883bcf544fb9bb227c9ddd7c359ef65df5d27f7b506d0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc2bff959e3eac6486f4c90f328d11bbd7724b27a9c25392752a303c8110dc22
MD5 4edf4e8c8caf38f47d50b3746c36f498
BLAKE2b-256 7cd294bba37c569702335c75cfa070458b0819aec7fab7d6113a34d66b3d7064

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b85b95d0631fce7605f587f604b6f9bf52497ef2b52cf6de07524efad0d5859d
MD5 0345d9f3e21266560451d0b933a303c7
BLAKE2b-256 079ed586f83176061645a7d4a192580c368b4254451b40e19e9800b8a948217b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06fbfc959a97592953000c3d190650654117b2fe3293ad801bab0502f87088e2
MD5 964d70cfeba8fded5dfcebf8be3dad31
BLAKE2b-256 0057b4e4668fd2dc8c9523e9345e7b0e74c3c784a6718aba7f9ed68582504d08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 559fa79088b16bac4d44f42c92f8f00800fbab23930dcb3941ddf8e24a4f8ae1
MD5 58197ccadea92c0ade8340c9b2c1469c
BLAKE2b-256 473bfdde5cec2cd00865b3b62e8161e290e335c10bd638aeaf1a4977667f3af6

See more details on using hashes here.

Provenance

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