Skip to main content

Fast, lightweight data profiling and quality assessment library

Project description

DataProfiler 📊

CI License Rust Crates.io PyPI

High-performance data quality library for production pipelines

DataProfiler analyzes datasets with 20x better memory efficiency than pandas, handles unlimited file sizes through streaming, and detects 30+ quality issues automatically. Built in Rust with Python bindings and direct database connectivity.

DataProfiler HTML Report

✨ Key Features

  • ⚡ High Performance: 20x more memory efficient than pandas with Apache Arrow integration
  • 🌊 Scalable: Stream processing for files larger than RAM (tested up to 100GB)
  • 🔍 Smart Quality Detection: Automatically finds nulls, duplicates, outliers, format issues
  • 🗃️ Database Connectivity: Direct profiling of PostgreSQL, MySQL, SQLite, DuckDB
  • 🐍 Python & Rust APIs: Library-first design with comprehensive bindings

🚀 Quick Start

Python

pip install dataprof
import dataprof

# Analyze CSV with quality assessment
report = dataprof.analyze_csv_with_quality("data.csv")
print(f"Quality score: {report.quality_score():.1f}%")

# Profile database table directly
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

# Basic profiling
dataprof data.csv --quality --html report.html

# Database profiling
dataprof users --database "postgresql://user:pass@host:5432/db" --quality

# Large files with progress
dataprof huge_file.csv --streaming --progress

📊 Performance

Tool 100MB CSV Memory Quality Checks >RAM Support
DataProfiler (Arrow) 0.5s 30MB ✅ 30+ checks
DataProfiler (Standard) 2.1s 45MB ✅ 30+ checks
pandas.describe() 8.4s 380MB ❌ Basic stats
Great Expectations 12.1s 290MB ✅ Rule-based

💡 Real-World Examples

Production Quality Gate

from dataprof import quick_quality_check

def validate_pipeline_data(file_path):
    quality_score = quick_quality_check(file_path)
    if quality_score < 85.0:
        raise Exception(f"Data quality too low: {quality_score:.1f}%")
    return quality_score

Jupyter Data Exploration

report = dataprof.analyze_csv_with_quality("experiment_data.csv")

# Quick overview
print(f"📊 Quality: {report.quality_score():.1f}% | Rows: {report.scan_info.rows_scanned:,}")

# Identify issues
for issue in report.issues:
    print(f"⚠️ {issue.severity}: {issue.description}")

Database Monitoring

# Monitor daily data loads
dataprof daily_sales --database "mysql://user:pass@prod-db/warehouse" \
  --query "SELECT * FROM sales WHERE date = CURRENT_DATE" \
  --quality --json | jq '.quality_score'

📖 Documentation

Guide Description
Python API Complete Python reference with examples
Database Connectors PostgreSQL, MySQL, SQLite, DuckDB integration
Apache Arrow Integration High-performance columnar processing guide
Performance Guide Benchmarks, optimization tips, and tool selection

Additional resources: CHANGELOGCONTRIBUTINGLICENSE

🛠️ Development

git clone https://github.com/AndreaBozzo/dataprof.git
cd dataprof

# Quick setup
bash scripts/setup-dev.sh    # Linux/macOS
pwsh scripts/setup-dev.ps1   # Windows

# Build and test
cargo build --release
cargo test --all

🤝 Contributing

We welcome contributions! Please see CONTRIBUTING.md for guidelines.

📄 License

Licensed under GPL-3.0 • Commercial use allowed with source disclosure

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dataprof-0.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

dataprof-0.4.1-cp313-cp313-win_amd64.whl (928.0 kB view details)

Uploaded CPython 3.13Windows x86-64

dataprof-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dataprof-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dataprof-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (946.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dataprof-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

dataprof-0.4.1-cp312-cp312-win_amd64.whl (929.5 kB view details)

Uploaded CPython 3.12Windows x86-64

dataprof-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dataprof-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dataprof-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (947.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dataprof-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

dataprof-0.4.1-cp311-cp311-win_amd64.whl (929.6 kB view details)

Uploaded CPython 3.11Windows x86-64

dataprof-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dataprof-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dataprof-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (949.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dataprof-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

dataprof-0.4.1-cp310-cp310-win_amd64.whl (929.6 kB view details)

Uploaded CPython 3.10Windows x86-64

dataprof-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dataprof-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dataprof-0.4.1-cp310-cp310-macosx_11_0_arm64.whl (950.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dataprof-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.4.1-cp39-cp39-win_amd64.whl (930.1 kB view details)

Uploaded CPython 3.9Windows x86-64

dataprof-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dataprof-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dataprof-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

dataprof-0.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

File hashes

Hashes for dataprof-0.4.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 533f81385c2fb4b2480a4bbef94d8babd318c2532261394ef66cd5a7bc35b876
MD5 11b9ffd7713f13e86d689f3abc141b19
BLAKE2b-256 76eb8895f6b6f3a30932d70a48ab84222685dffc03f0133452b5eaf9c1e9575a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2efe87f1f0159463024c82a34aa4a37925984204f360a74cc06aea517eae636a
MD5 636eb5cf6f2969036b7b63e4c41b044e
BLAKE2b-256 5d9cedd41ff617c429006f19db6782e95dfc56bcc9551976561d99a4b3101a4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12b4812c0e2eac37756d12d27f8caee4033f41b8320cf8d10a8002386a69e3fa
MD5 f7403a5ba5275f66adee19dc9a266a14
BLAKE2b-256 008a41d800e1e58aa11d5e122675cd0721781573eadbfb8572e0fab1a7308d7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.4.1-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.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd9318e7a604cbd1abc8e1dc83e700a9e62928ef0bcfa73df0583cf07db399f4
MD5 4954288f25bdbd7ffbb1bf8bcd39c557
BLAKE2b-256 7bd2ef28987118772430e234e6d0522d98db21d7e6eb7ae5bfea543ea099c68f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33a622ae2d12e018084052c8f771f910f66c74e7d30a28cc1619177ab9d022f0
MD5 fe047779ee210f5b553b3f7f96add4c3
BLAKE2b-256 e131cef8c87d654a2c483fd663394efa0417b75b6c84cd5b0a3a6856a456acd8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 928.0 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cd75786e2185a55d1db1ad3584f8fc3cb2b20795b4908f414e2cfd3e76649e75
MD5 3c69d83cdbfe8f47e86dd8442f1b9b3d
BLAKE2b-256 826268abf021c0cf0c56e32da67546fe43b50db6038234291fd66d46b9f1d96d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ba64bb439b85c5765025f4c4b3d55ff0eb4a846fbcf612a70eb60ed9474094f
MD5 84861b2c3155ef0b79ef67669c5ed161
BLAKE2b-256 f43100fedd409a904e3eb88f8a48dd309045e2cc2e3497814c5eca0461d1a5b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ff6dc10e75edd7110a89d69ec740b7d6bad257a61ab047ba03962cfac2f46be
MD5 9e83e1c24b672b294e756eb34ab757ac
BLAKE2b-256 79b830a46a08ad00db4d467242b7e64c4253f9fa42337b89cb3720689dcf1c04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d8cf3bba57bbbfa0c8693dd66d5078e5b7a35b7e5496af9682f70047f12e976
MD5 8bd82e945ee0e984a2f8a3261ec52348
BLAKE2b-256 91d8a956a1d36f32965779deceb9f492bd91081ff9fda473b3d99c317b32515f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94027c1c895af6ac64fefea18b29825de579a60ba794d24c88fcf19284308786
MD5 c664dc81242b47d3cd643cc149711bda
BLAKE2b-256 c0edf633e6a8b44d1424562b8641d37668b79314126168758290949f5fa89deb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 929.5 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2c2e47a52684087c17bb67b215e432b02a4458d94198ac4e89f954f9a319b445
MD5 1cafa1969a945f8b32868208902361a1
BLAKE2b-256 49a8f5c4d0b94e901aa2b9a70545b7492f7a059b6abb32477b85e6c6d14a2fc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5328ad6160ddd7b01426d6b9b09c7931f3db8e19cd70b67d36d2ebb8bb69d30d
MD5 e0cb3f8a05e45c30b3625f47e21d97ee
BLAKE2b-256 7cac1382530db1d50ee5b615eafec8c5199b3942f1c92b75df2dc784b6420238

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6714c9afc99631a5c16a2a2651f697f1f598a0938e723b5628128fa4152cf62
MD5 6802dcc9ff3159e2f88826e7d32a754e
BLAKE2b-256 b8fcc6e5f7df26fcb994168ac8f734efe7ee502e4f53ba22e0fc2a65d97e3f42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd6decc1305021da2ea9a153c7718af0afecc419614f3de9988178e3eece33d1
MD5 e783231023e2ec016e59268cdfa491c9
BLAKE2b-256 19eae7f53c50b2e8113ddc5901e246cd183959569ec5118362c643da5eddfc36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4050957c091d945c842930f3cf02ce56a9f41153dd29f0ccb61dd438f4b5bc1a
MD5 b236db2accbd1c9c1631dc33f17d3024
BLAKE2b-256 e546a43aacdff5118fdaf05bc0fcd00483c95e865320c707b7b8ddfc45f42b61

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 929.6 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0477bd75bfd14260596d488ca3ae9433bf58224366cac3740f026a9a02a65da5
MD5 5d2b6c4bf957c0f2b287b1878229ea7e
BLAKE2b-256 bb6e23c43ad7f38b7d1480936851b9f7ea320cbdff56bf450eef21de6530e158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf444d2a26b5baf83b0bbcbf69956c459e1ef16f743cac1c422983b73a63012a
MD5 875f490f42db55049f795aefd12e1c37
BLAKE2b-256 544cee09caad996371a19d82d0ac8bc16be62ad2fc7275ba726ad1932c432306

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 114354752c0ff42f455ccdbcd2a19f611b029b9d20fe2cad29becd89a39f9582
MD5 7c721c1a9a7fdd2cfbdc233b079098ab
BLAKE2b-256 61b39e785f915a9dd19b793522972506620f5aabdc66c823ad850f0ccabd9158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e475648f8a865fc348c5879e9cb4755d55385080cd347e8d6efd44620c6df17
MD5 8e463dfae03741cfbc51ab5f344b6b44
BLAKE2b-256 598c4d3b95b93473fea08f5c9dc0916f0d89a440d2d0609f0299131d0bfcfe4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8957b604fbeaed256581ae06c9946cc29f97131f21775c2dd85bc686533ec3f4
MD5 bc434517b0997334503cea9e92d7df7b
BLAKE2b-256 e5dc74281253a9b312d57b18053b4b4e393420fc35aa3e616be0ef162ec19290

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 929.6 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 42f1a778af29203129451d06f648caa8d8edc226482e8fa17949a4a3181e345c
MD5 9da1c843b502edb2b59ad0c8db9b7742
BLAKE2b-256 5dda776bf8f77743b5f0e8e364c942e6b01856b6d3f0dcf47dd88df65809cf7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fd474ac707fcc807caa1a1e87b39fa3b8df7c9b089174367bdd9bdf2e3b93b6
MD5 4219e4a003b4565d7614bb76e6be52dc
BLAKE2b-256 5b0a4831bfbe5b7a5bd5c7a3d96835a2fda6cba345cd92a95840c4a20e16d748

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a4ad052b8b6f04bb96e4d7c116f5fc643db35cf23d0a1a51569b1f21023734c
MD5 f4b5bf2c2dfd10cd11fa785d84a14329
BLAKE2b-256 126a4a66d8d85e65fb056a3ac9e8e11c70cded8f0c9a683bbd517300f14f6bfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb43840d2a9945df522ccddc4387a248b762fb5ecbe5713dda073a83be688c7a
MD5 1ce602091d2fc82abba8ba077e2e4682
BLAKE2b-256 aea2ba9df98e97eb37634d0e10093bab3ad911a4be6d1a8a2ef0d853e5edf9e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4e25ddc3c3cf9232bedbb97273a1e071a3b09d841e700c0220009dc54ddd6ad
MD5 559e3e5295d1cfd2aba4e89a7c5ff993
BLAKE2b-256 8b2c829536beb8919dae51ea2fb5d94a18b5d094d3b422be13c2fdece6c623e7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 930.1 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fbe776dd500af5c20960632f616045872cfbf190192d9835adb4b107cf968a7f
MD5 8c873c4ad73d0d22fa00c3447372d4eb
BLAKE2b-256 0c2d3e073617b96d92461fe340b53ea1fd417121bcce098f5671f50e869420f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b64833213978070aa961d66067802e42a3eae510c3b655fe25ca805be95a26b7
MD5 2f75d36ef828a03921253d988868cb8d
BLAKE2b-256 a284b7f68d12bd90feb726fd007929b92c2dc3494abaac4064d105336ac25ff6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 478acf79af8fa968a4d214400138fdb41f1735765f63ab8794ba76c756e55cef
MD5 704adcaa0b594d0454c8b072aab70854
BLAKE2b-256 1cf22d172b5c36e2d1b7d6c7fefb94716219b6639689ac3305b87f721b24c95b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22f77e8952cb469bb2f3b212d80c7a129cc54925bb3e28bc90a19466a4204f19
MD5 6a22b63b4568b8636d6d11feac6ba2c3
BLAKE2b-256 9f9ba9451a1c3cced72dd976bb047a1fda14cda94da73c8d185da420348353c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90401761d791f4abd67178a7773c3d10233fb0e761776d203b55fa4ba139d0ab
MD5 4e5194d85c73e86de05f7b7d3b10f496
BLAKE2b-256 d925fdaed555b570a7d612b3823c96ede80bc938ac406de15d65ebe6d09fb7ff

See more details on using hashes here.

Provenance

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