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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.4.5-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.5-cp313-cp313-win_amd64.whl (969.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

dataprof-0.4.5-cp312-cp312-win_amd64.whl (969.4 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

dataprof-0.4.5-cp310-cp310-win_amd64.whl (971.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.4.5-cp39-cp39-win_amd64.whl (971.9 kB view details)

Uploaded CPython 3.9Windows x86-64

dataprof-0.4.5-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.5-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.5-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.5-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.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.4.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 535e73a9b86d58a0e17d9b5b4e0f69ec119b37a416e84f4f59e3e5d6ee897e6b
MD5 ee6b61e95dd481985c598d8ab72d0717
BLAKE2b-256 a4c9b92ebbdbf335842175bdc8f76e43f686e1568c6277feb53dd8a791b837cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b61594c181dcc3e4e8a5020e627e8c93ca6b0a1d3dadb30c95f392b23a15323a
MD5 1d3299ec798845a5639398b0b8bb9071
BLAKE2b-256 b821a578236649a16e45c9c5c4aead581b808c99ed4243a765a49bb6849ebb2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55c689d5d97ca5449827f076419ae6302e4b19302a65b974461c095b8165bda0
MD5 70fb14a48e2216ce152f399542a406a7
BLAKE2b-256 e32895a7fc6458d5411057fd24fc40e2d9d421e7fd31be13a687ade6b0fec9a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59f37d81132d0dff2911263a5a4a1c1526c4597152a73e2ed80e814dc0795352
MD5 2229d7d7e52ca9f2a94ea4e52ab42f00
BLAKE2b-256 0220fe6b199cfa345702867e84fca73c2fa13777ce9318cec85c6235c7e317dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a801c83e9f19eb365418e480b15f57c9f182906ef0ad8827677e649217d69100
MD5 933d0a633f8e6bab6a27c5951a367083
BLAKE2b-256 42896b670eb3481d0d0b8341344f0eab676a2643c3c6bdd6af8be6fc2a7bad18

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 969.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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6e73c75cecd66ad6e605d5aa14d4512f53c441c767a8bede84849a46e17ec432
MD5 8b935b99c7df1c3013dffade1d3f013b
BLAKE2b-256 4d069d9b94dc0a1cc607be1716dc8ffec18f63591ff6528d093b1e90b27aee1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9605f1ea7771abe4ec7bd180e79bd8b233fb1f359f5d7e6236dc353a31bf3bc8
MD5 a363ab5465d6d9dab156d7ceb37e7c21
BLAKE2b-256 95859afa1d0bdda281d42992871d3e2e9a8627f095b02f47ea8178be223a0802

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a0679aba24913ea633d01078c266be3b87bc82bd36bbf632684931ed7d7d269
MD5 2048e8162069a7848d75253b76ba0a9c
BLAKE2b-256 a0f58428c86a069a5180d09612f5ee12c1ff60ec14e8c7fc70765c2319d77fd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fbe3b000af31a022ec86ad9f17c4fbfa8967438f3b62bd832cdcc09e382f3c8
MD5 b105ca2e1d48aa060378399cab1267a4
BLAKE2b-256 6c0d0a30dea70c6a3d915aa6b1628156619f6df1c7c7d5b7c37f38b4639758ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d8cd95cc6f333391fca264f74e210cdc13bfe553aacfd801e3433a263691659
MD5 f528bed166c85cce035bd0ce3af1328b
BLAKE2b-256 ef53afaa2287edbe8c00f833895ea7f76b8840b991892638520c6e9125747b68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 969.4 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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f170f64f56c8aa05ee44ebe1663f30384f71bb2b5ccc0481826f3a966822bf35
MD5 44bcbce4ead5012f8be22da991c03bee
BLAKE2b-256 cec6276fa4e777f7ea0fab8ab2fbd94213d2afb370a75974a6b565b382463ab1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bc2b0949cd2511903f17de9e376a8ef085b6145be8af9f8f828f36ca54f1e6a
MD5 fab7d4ae344b3b2e67f0b1a3cd81b994
BLAKE2b-256 da7c5c7acb4a4f60f8569891c1d10730c7079dec3a543954cabebf74715ac8ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa826e0c24c11561a674e734be22b03f6f4ba63a8fa71a04e21e978c276078ad
MD5 9e8a40e1927645c6fcc57247fcb17188
BLAKE2b-256 75b7a0a8be9b54ab12d389289bc578b119039f06e9b525514931c19b385b5bfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4397381fd15d107d697a216a94aa82bba2e25b4ed47bbe3302b3a8cadca1c83
MD5 7ee14ef026868115a9660e063f5cf33f
BLAKE2b-256 9a8dace397213e86c40ac1f6f97fb7f855cf763fa2fc35e17e34b63c06c4349f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8cd0b213767564c1d76ca9fab424553e973b688a0a44599ae990e39ef07fd1db
MD5 b9093bdbbcb22252e82625fa37fe23f2
BLAKE2b-256 ba0a6d8e668754ebb4152911797934c6a093028f066aba7000ddc186386b9dc3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.5-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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9b7955383ad70770f3bb6c6f4ceff1c6af50c1fe0fd40ea0a12c8e0c1ea8a0bf
MD5 ab13d18814c2e7e12bd464d861d615e3
BLAKE2b-256 ba8afbef24e06065350bda0e60122839019a0b20a5569eaef41bfe046fec7d3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0aba83e7c0b4802c49290bdeababa718425694259d2bac91d6664f04f5d12a2d
MD5 8daa86e0b78048daf1fdc3858a482804
BLAKE2b-256 9e75cad63ae7628fa5db38a3a998bd615ea5d9f3740a1d9120a117bf89681377

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7e3cc51f4cf0a74eba2216ec6b83547991dadfceab714b6315af398870cf7cf
MD5 e0997ba45bb086a3f2ba0d34cf930888
BLAKE2b-256 2b8d272f88ba19ddf5edc8f144bdbc91442907277db8ea5a303417901fb19566

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52e52038237ab475c8c65c3a9b515b84f55d9e47e1ca00ba72a32668e9a0946b
MD5 bdc0fcedb0b3e277b8d4d4ad44a08100
BLAKE2b-256 f99c569829cbeb0dd6ee1c6a58d2458cfd8719e1ee22828c2aa19b1e42b49396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4dc76481994f478d2a8095e50a618425a46decf7deb74e54e024ac5c704ad5c
MD5 baac1deac2d18214ad4398558729fbfa
BLAKE2b-256 20b0536ef3b7eb60ceb8a31a5da71f1dc928656d2f4560b179394b0e0ff6c562

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 971.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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8e1986f87961bdca88485c7fc6646e540c0b20d08715c4bad8b44a477748df32
MD5 1a3fdeec6f8895341c6ebb41751921b3
BLAKE2b-256 cc9d4dfc53c7a02ce7fa23ea7490cc46815ed563ed3f5255b5f470e345b86c8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b77a08a445f88285fca79bdb353ab5af50163356c00da1281781ef6b1825856
MD5 c8792fb6d45ba1993f503c84727d71c3
BLAKE2b-256 3a895f0ef4e883cf554632ceae06bd70f4fb65cfdfa6f8ebf5f36459fae3e20e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ee60642ddb6a1a29f8c2a2b7fe387bb300ee956846072395bdd74ec249933a3
MD5 ab0f6c4c02d921ebed8ba18fe4a0f468
BLAKE2b-256 fae385b2b2b4314e1aeaab6a45d5b94abae3f6beefd218b01c5279231cdde89e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40aa7d4cf710b005e7fcb2164f0474a56f95d6319ec6e12e0451df3ce581d9cd
MD5 2a4291af47dcc4bf07d767fda98c8348
BLAKE2b-256 6aa964136dc094350769031c965ae5ac7a1e764b3a7436e7fa96bf21fed9ff64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d907bc42fc89a4e95a0b44bfb3d7399adf193a09cf01d5019dd70ce76524d405
MD5 baa7888a184d09bbcff9c0cf3699b616
BLAKE2b-256 7035de7357a6fae71d43b89ab0607a5b3b0cfc3491f519b9fb64b5de859c7192

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 971.9 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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6402b3ad1081750a398bb45c962f67345b8fe5de197a74fef81a7275e13be712
MD5 df08d11cd10c99cc0b4edc3f620d1cb1
BLAKE2b-256 a0e2a27222afa298ee9bc0ab8d1b0aa15b7185f81670e2436f53374fe6b9bd5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 338c9da0f81b311ec43b25cfa0b9f9ca0a0e1a3853b5477cc850344ac037477f
MD5 a365ab1f612f2fe7eeaa1bd401257344
BLAKE2b-256 9855d2c80485d2af94a81f2cfab1dde320e78e0c825b120e67b83a50eb53fd98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acac7e1e80d6a0d0baf051e77093ccb45a6be8e15d2c0fbf3e23c862585ccad0
MD5 891103fe5f76991217d06b2dd6be5857
BLAKE2b-256 f2150462b5f681b59623c1eb63c56f6d0cc179d47e18feac4b86c3a93b2aa431

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d19d629faa2b7a18f9bf765a33d93e9a0fdfc43e68576fee9b5de94f1e636c07
MD5 d75176740b557ae8db1eb93ead3389b8
BLAKE2b-256 1570df1f40abc838fc942ac9f00d491eba74a756b8fb9d69ebb9ccb6b99c3f41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7b8fb6661dc94ccf54e817d5371b0d70168ef301d0f2d2928ccac8a50cebe70
MD5 e7acc59e866f4ac94390f8d581eee7f5
BLAKE2b-256 796f4cbb7983dad674c5569e7a7af679aea54d649aeb9be131d076ffbc1f896b

See more details on using hashes here.

Provenance

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