Skip to main content

Fast, lightweight data profiling and quality assessment library

Project description

DataProfiler 📊

CI License Rust Crates.io PyPI

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

DataProfiler v0.4.4 delivers 20x better memory efficiency than pandas, unlimited file streaming, 30+ automated quality checks, and NEW: comprehensive ML readiness assessment. Built in Rust with full Python bindings and production-ready database connectivity.

DataProfiler HTML Report

DataProfiler HTML ML Report

✨ Key Features (v0.4.4)

  • 🤖 ML Readiness Assessment: Automated feature analysis, blocking issues detection, preprocessing recommendations
  • ⚡ 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: 30+ automated checks for nulls, duplicates, outliers, format issues
  • 🗃️ Production Database Support: PostgreSQL, MySQL, SQLite, DuckDB with SSL/TLS and retry logic
  • 🐍 Complete Python Integration: Native bindings with pandas, scikit-learn, Jupyter support

🚀 Quick Start

Python

pip install dataprof
import dataprof

# NEW v0.4.4: ML readiness assessment
ml_score = dataprof.ml_readiness_score("data.csv")
print(f"ML Readiness: {ml_score.readiness_level} ({ml_score.overall_score:.1f}%)")

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

# Production database profiling with SSL
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

NEW v0.4.4: ML Pipeline Integration

from sklearn.preprocessing import StandardScaler, LabelEncoder
from sklearn.pipeline import Pipeline
import dataprof

# Step 1: ML readiness assessment guides preprocessing
ml_score = dataprof.ml_readiness_score("dataset.csv")
features_df = dataprof.feature_analysis_dataframe("dataset.csv")

# Step 2: Auto-categorize features for scikit-learn pipeline
numeric_features = features_df[features_df['feature_type'] == 'numeric']['column_name'].tolist()
categorical_features = features_df[features_df['feature_type'] == 'categorical']['column_name'].tolist()

# Step 3: Build preprocessing pipeline based on DataProf recommendations
preprocessor = Pipeline([
    ('scaler', StandardScaler())  # Applied to numeric features
])
print(f"✅ Pipeline ready with {len(numeric_features)} numeric, {len(categorical_features)} categorical features")

Production Quality Gate

from dataprof import quick_quality_check, ml_readiness_score

def validate_ml_pipeline_data(file_path):
    quality_score = quick_quality_check(file_path)
    ml_score = ml_readiness_score(file_path)

    if quality_score < 85.0:
        raise Exception(f"Data quality too low: {quality_score:.1f}%")
    if ml_score.overall_score < 70.0:
        raise Exception(f"ML readiness too low: {ml_score.overall_score:.1f}%")

    return quality_score, ml_score.overall_score

Database Monitoring with ML Assessment

# Monitor daily data loads with ML readiness
dataprof daily_sales --database "postgresql://user:pass@prod-db/warehouse" \
  --query "SELECT * FROM sales WHERE date = CURRENT_DATE" \
  --quality --ml-readiness --json | jq '.ml_readiness.overall_score'

📖 Documentation

Guide Description
Python API Reference Complete function and class reference
ML Features Guide NEW: ML readiness assessment and preprocessing recommendations
Python Integrations Pandas, scikit-learn, Jupyter, Airflow workflows
Database Connectors Production PostgreSQL, MySQL, SQLite, DuckDB with SSL/TLS
CLI Usage Guide Comprehensive CLI with progress indicators and validation

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.4-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.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.4.4-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.4-cp313-cp313-win_amd64.whl (969.0 kB view details)

Uploaded CPython 3.13Windows x86-64

dataprof-0.4.4-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.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

dataprof-0.4.4-cp312-cp312-win_amd64.whl (969.3 kB view details)

Uploaded CPython 3.12Windows x86-64

dataprof-0.4.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

dataprof-0.4.4-cp311-cp311-win_amd64.whl (971.5 kB view details)

Uploaded CPython 3.11Windows x86-64

dataprof-0.4.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

dataprof-0.4.4-cp310-cp310-win_amd64.whl (971.7 kB view details)

Uploaded CPython 3.10Windows x86-64

dataprof-0.4.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.4.4-cp39-cp39-win_amd64.whl (972.0 kB view details)

Uploaded CPython 3.9Windows x86-64

dataprof-0.4.4-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.4-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.4-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.4-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.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.4.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 950267eeea9e50fb2a2fad86b0796ac3674d5b226f64edd9cdbfc0376fce4976
MD5 3394dc3ff9e0a1e74c46acead27abea7
BLAKE2b-256 b5d98f4b6ca9cee1b201d26d1ce48d49b50289ccf8200dce72c4916e62530b0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36ad031ace45f17563dbeab99b1b0f8bd2e929f55f1e5ecd6c100eb6b77d2f36
MD5 f1702b596d70023c44e269458b03e9e2
BLAKE2b-256 462d9e6cbf0144698ccf1fc9eca0edfccf1576b57d650798028911e620c3bf57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e3ac7b4a1f5295f19af225b2170b27c48c15b8e6675f5df7d6fe36200a1cdae
MD5 2506a1922bae80f233b3c6286e379c92
BLAKE2b-256 f39354b7a42d08ec38c167c99a63c51e5ba2e90720ab69b1d50300a23d97e14b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f652854175da524b5e47e4d698cc470d7d43791c080ce0e785a2f7c8460d79c0
MD5 72c64cc57c4843050a8626be8c013b16
BLAKE2b-256 af8e85b40c652c4389a23287e68ff6570670a4a6ab63a71c9e4f8978e51223ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 406cba26889046bf22c2d753902b050f0fceed649e98a66c1e57720f6ab456c9
MD5 3a97efc02778157737ff9ac6e833637e
BLAKE2b-256 18f57ae319dc88993241dc480112c863fcd6ec620503726934f324e2ac71308f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 969.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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e9fe9b0e0718aed00bb544822033ca7a8a77686d2b4dbcdf6860b0c48049c52a
MD5 096a3228b88d45b511d9966ab5da0688
BLAKE2b-256 8b89e9f4264f840e0cd40584cc793bae7d0ebb3b612959d678cbfaca8f97f4f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be0a258975b1024df375cb1d32426d0c5c400dabf2e3b8208a293287d132fd2b
MD5 723a77e6fea12eff84d90e5e29aff664
BLAKE2b-256 f7dede883791f96ca61e1d72900fe7dc6994c4eb0f732a97a8d3c24a7b671aac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee59b2238a624298cfa2ce215abe181e1f5e2ec1a58290df8efc714b69a6247a
MD5 0b77f5216aa50bee0e51a182d3ad87dc
BLAKE2b-256 f2d29b1898d29d8feadf613cb57dcfe6cdc61e04e137f8bf86cd0bdc98676c55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37c58b523cc6aae4c0147c6f2f2f1601cb075e1e2cbf913f90c956cfcba18809
MD5 365e0986a6e9370949d198db42fc4d0e
BLAKE2b-256 6519f828edae608c1120ecef8194c5e2b3a304b275d8be8b2198878b79159827

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a915b5fdeadddb053e0b3e7a820c08729e4bfb24879df461d51c0bc0ba983de7
MD5 49b4467f7b56102e0d6947a8f892b550
BLAKE2b-256 bc978f38ff9e2add5d4140f30f946e2b0bfce2b145772ec8ac48a554c4f9b4a4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 969.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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 46741e7ffd30483c2f0314b719a2cec0a748216b43b5fa55623d8b45169fa1ae
MD5 cca0bbb08a1d7f699851f58e454db8f5
BLAKE2b-256 30516b79b5af583af938a2bb34164e60b641ee92cf6a579306669979136b6534

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e82e7e661fbd919fa73ba42fd0271fa0e11a9f030c558c351bf09de0ec4defc
MD5 5b008523a22d9e3621e68825811b345b
BLAKE2b-256 2adfab6bf9976b6a35f974ecf37697c2a86739aafaa713dfd8a496acb3bef08c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fc4479958b80c7bbbb2ede7dd7dcd2c9e009f6bc7bf0a661f6139dadb588ab8
MD5 303a1ce24d25a75cdbfa7c352904b700
BLAKE2b-256 921d2bb31b33d4b7ded1d37a83ec5d561ecee7d3bdc9407de08b79ba82fd2171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1164ff3741c3693b0cf71a557e5ea78b1c63d65c2c400c1d78c8dbe7efc1d7d6
MD5 62df0d966df228151caab7e3caa95343
BLAKE2b-256 4f198fcb35aabaa395b2a4d25d3d9362b67c01002d7c046292d9996c3aa770a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33e3ef3d4f2978b00db90dce057c06153d276f6bd465953f2b5585d625e5a6cc
MD5 06ddf963b8fb8325716c64be56c118bb
BLAKE2b-256 7e52ac9e27c1d9072b447e5a4c114cb56d02bb0a2f25a55e32390a8690898005

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 971.5 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c4c20bcdc7df5b11db092534daa414b15c6dd6a54809f1ae548cd21443ce78ba
MD5 34082a7ed9ff2d5c55aa2e9f37bbe60a
BLAKE2b-256 005cf2298948c8346e15a702680c122de4999a96c9d33696f20eb75d00c15c05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e2291e4a62907dae37f03cde8e1cae16f83c0e8187e88fd6fc94496777f7756
MD5 388a9340e35eba2c2be430c0235f583d
BLAKE2b-256 6aa7b127663db2674b0e16697a16fac50609ca37bd0fbd19cc9a2f85369c960b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 125c9cc24f38390ad3321bdb03020ba80ca48cc09c4aaf186d3d342cf49adbae
MD5 032872c35742f732a7e32149b6abdaf5
BLAKE2b-256 f71f6c59928f3a2f9bfe1b1c316bc27b3682fb46f0f6f4016041eeec0af61bd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a62ec1d17cc16f64bc31131b8e6344bb25e97dc34e1914ae49ce55b4603a922
MD5 e1124271afd92cd9d832b47744f59398
BLAKE2b-256 f5a50d3669ab2366835593d29b54ffd963ba6164ef0e45be6c7740719c5273c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80b033ef3eca9a89e1e538b885bee3f79c3a08a0023e1fd77c655798912f1c31
MD5 9bea4bdac4b3d269e94b8555ed7bf81f
BLAKE2b-256 84d3fe111c7274f2735850beeaccb645f892d63e1e3edb22570c5643fd631ebb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 971.7 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 794aa58dc2892b755ec647674c692c6dabb77d8d4fe3ff34647aaa69ffe4d8c9
MD5 7313c64e2caca9137d14363a50f58e2f
BLAKE2b-256 ca3e96db519406221db0bf9ac35941ad24ad8f02fdcb1584d9dff2ea4b462ca7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 557f1ea5e7d1aa6df5f9d8130c2539008f109f21f129570f4b5e36b7d2588bbb
MD5 6352150af8488b00ed8cf31e94720930
BLAKE2b-256 da2662b12152e84d5a5c416dcd57fec6e733c3301659cc770a12878ca3742659

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 961bcfbddd7c85da2205aea093006ea50d31605b2b84173ed4f55ea7c50401ca
MD5 a201a8653f495480c9153db9c1c92600
BLAKE2b-256 efb2d3a4c98759e2254d3f09d7105552c65cc95cda9705da03875d6aa7adaf94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 784706bf153d407db51c0dcec77f39642c3b993a95894c7e2c7160c3f9d64dc9
MD5 78a05294886a03c4dfb338aaef431aa2
BLAKE2b-256 13a1a95d55a831c7c3482353bed924aa2a7c6fbd6ebbe23d408859cf4d35796e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 37141a7cbd06d3202765c8411448dd8378feecea17ae74ea590c1502b8ed08df
MD5 56f6901081728b2903ee1452c7164992
BLAKE2b-256 75c5f8219232b973fd536bf99d8962898a19f298ba9f622ef7cb1b5b92118052

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 972.0 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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e7f9d3738de29ef52dce04b281f70573431f38f53b5ffab036c9e2b17b5c6749
MD5 be71df1465d7f361e1f58bbbc1d02e73
BLAKE2b-256 ff0140e0b775bed7eb3810056dd6994dbdec80b094db7f01ff442bb11257661f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 498d58a892c7c2a94c0cd22bc41b3f44cf8f4aac92fb93acad81f0bdbd10548d
MD5 691e6f9756794c9da9fb49884c5525dc
BLAKE2b-256 6419986d9cbc7eae64ee31d6022e417a17f238de2c1576c20a934653856a5800

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dbbbd93b73c531d40937174203898226c8409ec2fcad956a13bf09e5cf2f5cb5
MD5 720a6c722abd52ff4fbcc1cadbac4904
BLAKE2b-256 8a7a126e5775b4fe71e91c9b33fddedf75aadf88976484ebd32d64c3a70fd279

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a3d92bf5edda7a7e9413c6712ba10a1a20740c215af8c459d68de7d799228fe
MD5 28ab6215d9918fd48d4fa7e25fb667a7
BLAKE2b-256 f4fc2c1e8d8dc17814bb102ac59ed11fc84268a40bc3d88f8e818e0a35be0d38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 501471e0c8cc8fbfacecf51dde2d33817b1483fc92572a3131f05798fadb8fb0
MD5 ccfe19298e23127e7a8940fee4f74e49
BLAKE2b-256 97f394df83c2375413a127d2f896305f889656474f10be99b61091e528478fc2

See more details on using hashes here.

Provenance

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