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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.4.53-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.53-cp313-cp313-win_amd64.whl (922.2 kB view details)

Uploaded CPython 3.13Windows x86-64

dataprof-0.4.53-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.53-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.53-cp313-cp313-macosx_11_0_arm64.whl (995.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

dataprof-0.4.53-cp312-cp312-win_amd64.whl (922.4 kB view details)

Uploaded CPython 3.12Windows x86-64

dataprof-0.4.53-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.53-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.53-cp312-cp312-macosx_11_0_arm64.whl (995.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

dataprof-0.4.53-cp311-cp311-win_amd64.whl (923.5 kB view details)

Uploaded CPython 3.11Windows x86-64

dataprof-0.4.53-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.53-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.53-cp311-cp311-macosx_11_0_arm64.whl (998.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

dataprof-0.4.53-cp310-cp310-win_amd64.whl (923.6 kB view details)

Uploaded CPython 3.10Windows x86-64

dataprof-0.4.53-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.53-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.53-cp310-cp310-macosx_11_0_arm64.whl (999.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.4.53-cp39-cp39-win_amd64.whl (923.8 kB view details)

Uploaded CPython 3.9Windows x86-64

dataprof-0.4.53-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.53-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.53-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.53-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.53-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.4.53-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f095c2040d7ebd602f6728c919715716a9602af48dcd576c1d5586e458fa08aa
MD5 13ddda0c5ac9fbf094db30dd8afa116d
BLAKE2b-256 737a37c3909e0809c7bab02e85dabdf42b92f3a4143924893e32bdf439900a80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27af65570b7a62e5a4819ddcfa107d0f37232b54a434537ce3148fd1c8dc7d31
MD5 5d5dfae83614f0371e679bbb7c934ad4
BLAKE2b-256 b3e1d92a436212b94ed05d7290c758f5794e2a6757b6c8a1eda95981346da0c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a8255437b2a7888f3d1e15861da6f73dff61b87e8bb1f2f80f0623fdb03217c
MD5 e8412d0cd998daf46598a1b4c5f1932b
BLAKE2b-256 877760a93cf93956e00e034d26987448db22a7f28d346b2d46732d9483865389

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e550a2d3f0b9f976cea51a0c7131f708d10580ef3c3d39360f0a485aca0ff0d9
MD5 73c1d761cd83dfc292f972f3a73658a4
BLAKE2b-256 ea87426da2ab7607a066ebf715dab7f4496c93e3cbb26b2420377f11b06c0a65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b2eba15372d2accf346b321a34d8fc0458d59bb2b77472df69912aa46547b75
MD5 19e024f5ac2d52e1967b0c789ba039eb
BLAKE2b-256 bcca98e705537ad37465faf6c6bbe18d8be1c2799e9fc225c2ce80bc0bbe2034

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.53-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 922.2 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.53-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 003f2a4a7e4fd9eccf95ea4080656b96607c2b55a2f6b9091312add82e894d26
MD5 e4cd799620d3f5c34b3599f45d00b15e
BLAKE2b-256 032adc10b426c2c0b8b3dbc6a70cb50618a1a19c1ca4e54512dad14ef5432497

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e9d74e9191a08fc8416868e8b1e29ff1fd4f8ea04acc5e08ddbc077a7304d2e
MD5 55f8f94dba6822b3856142301b0c26b2
BLAKE2b-256 35d9dff573153b93b094c0bf5f2b1f524fa6532791a29e8685498dc7523838a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c343938d38ae949f5d9970e3b2eec0b29bec3bf843643a50fbed918fa336482
MD5 3f5c828784d207a9f917eb150f448436
BLAKE2b-256 2b5f95d214f7a8ee22b5b73cb7fedc9c66ecb4579ebea5f66ce14ddddeaa3a4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 420e01dbd54ceb350e16e2c7e3c6ea123aecdf01e2d4bcc08e9a9a760768cb07
MD5 2ca3b1ebdb5c4a6d0e96512d59b8e494
BLAKE2b-256 e88a59d471eb31696c812f925ec06d179ba400b0b1a3a93dff337460d4970ad9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f191d8ca37b2a8f8db2d7236fd184c695db50411709f113879ec67008a9b4715
MD5 479afe38707edfb0c6d08cc274e44c9b
BLAKE2b-256 bfa21cecb76fe5cfdc0a2e1f71569f7fd4734728273182b9751ac5e51ee0a304

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.53-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 922.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.53-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 361c8f65b8310ea34abf316bec63eb6ad16bec4d2381f0a59e192ebef9f934f9
MD5 5080539c846f7d36ecbb7f072b564732
BLAKE2b-256 038802bae8b3032f2d540ac6abc2b220051ab77d8a29cbf0ae944e3cc0b1dbfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a11d6c59eaaa8da65efb5c0cd627ccf38201c17ce0b2b27e19f256eba36995f
MD5 9413c7908ff772812d3bf58d2d1ae063
BLAKE2b-256 5bb3e71a2b96079c8d63856a1d5fe38befa01b44f9e3520285627a9e6e3d956c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6448b8cfcc997ba26c74003c0b68194ab087c7bfccb1125b4f267214176be63d
MD5 d976ed60c331feef7f17dd30e2d5e992
BLAKE2b-256 5b80fab41f6fdc2790c53c367474f05ba8ed8afb8f94db619af31b46a4fd6fab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25eaf34a4787cb0c229cee3983ad93b74f02d0ee9778b07dc201a11c4eb52a68
MD5 c5378f0b604b3728b15a70a7d9c36a3d
BLAKE2b-256 85aebb33e718f0898decd99b19935a2cc3c02e217b206b136af753cf86c572ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9d2a91bc9e093923f60934b97db41e706f10cb53db40a1bd97338c972222131
MD5 ff5ed97d48dde647f0d66b971e193532
BLAKE2b-256 faae390eaa1dbb41e7ce6a9c9a2b215e20749e2cff1dca5e04d7327bcca97c5c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.53-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 923.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.53-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d48e5dd8b01d17961027b381650c67fca7f62621afdf437c5e1bd4c022b6588a
MD5 cb423e6c498fc91f83894e51af14fe8a
BLAKE2b-256 3ec67bca2d1beb046760c2b748a68631c0ff6c470d3103d3dfc7350ac296b35c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ad5c4aa4473cb1660ada9dcce06ac95079b327f2d30d85b61ba4f0a0f92ec39
MD5 b99a3524c6d902b06ed1da7481511d9c
BLAKE2b-256 9c6704b26a933b89fc20fde5b95aa9e3daa89eeb1afff26e1da989d3c203241d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08b897cebdde42f95d828fce506a4163adf67521d79830c7a200cafdcba3becb
MD5 b1930d436e7ccfaf46325d5ce911a860
BLAKE2b-256 0083e58a6218edf1a8f8b5992a2b90ff77ef4d06a90e101836dbb2ac2a9a2d63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5a7574c31dac5189743c61b391ba1a1530cbaa93b556189a9cb917c08726c21
MD5 7109aa96f8c74c5575a9aefe87dc6c50
BLAKE2b-256 bc0d5716ebd0b6165e871ba95e73955936172d34b4e6f17fa772f29c1cccfa45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cacb250859f5438362fba5831c4a85b14a01697b6344728ea2dc5d889630ed07
MD5 32444df3afc496440f03194fea1dfa99
BLAKE2b-256 3c4923e70fc1597192c9ccfdcd16de3c406f8e850ebbf94b7213c78fb7b07337

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.53-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 923.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.53-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 082dbb05a087df23fc76b684e2ff133c105d01169f0eb98b4aed624a70930b79
MD5 c86a18d6a2c623e5530d737d5b66b4b9
BLAKE2b-256 e39cfabe91536aca1334965fc8eeed85a2f608e2c811584329d216623f5bc85a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76f82067cd67ce13a642a56229e93fb96b94cca6098248101f9da3491d6ff8f6
MD5 ee6bb368713e42d6bd8945dbdd505bfe
BLAKE2b-256 62cb99257731b8e602962fdec2097ae312877fc4b2425d234a47b97d7024cfbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a93ae9341fa0e8ee501fbd9e7c99b6a55de0f1473fcfa0ac93c52cf8b6b8663a
MD5 ad91ad1b39cb6a1d53aef2a4bcec49ea
BLAKE2b-256 13ab9864c818d9365e43c44926baebb1892cd8bb45133479278380ebf05f8ab7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ad1b1af56fd775b3eedbcc4c7e0cb1c3b759e9875faca598c07cff3dfdfe98d
MD5 104308e058b2a1d7ce1a65e10fe667f9
BLAKE2b-256 036582d745ae5b4753202df6d20455f6b0942d7ad6e95b9aa2a08c9b1f0e0f06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7c7c7b54e92e60ef61735c6c26e678eaf1719ecadfff09795029ff4f2763d05a
MD5 818c3d675d3796ccc2d35eb227619b23
BLAKE2b-256 501bd7171ea97ec47a32664731ef004f307ee1c5067bac633739eabc0975efee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.53-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 923.8 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.53-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5182a987f9b384ca0fd0d9ae0158beebb3079884a6a0ad00c8c4b01d71593c81
MD5 1cae19fa2d32fdc507f9291745aecdb0
BLAKE2b-256 f86c584e2a0cd3667a74bc90b69390f11e9847ca852e8e2e9dbbd77fddda8639

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad66e63bc2e424910632de03f041cd20428d8d67fe05b87da852f3b1843d119e
MD5 c3794d082daab7f6de4e2df8c6806577
BLAKE2b-256 6a99dfb09062f37a8cb6e8b1b100dcb9c4fa2716eab52472afc48cca83df36a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 777af7a8ccd3946bc5fae0103321adea84d9a817ac06e65e547b77ec1a095dad
MD5 b909311e0ff43de768822a2a48802146
BLAKE2b-256 c761f2d501dacda62be9f4848ff02e663e7804b5b7ca2226ce937ab72cbe5cbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fba8b686fb390af80e94e4442720e0df2f922649d31435d31fa2f7b0e0e405a
MD5 bd2706c428b69fe27ac7cea8c38eed21
BLAKE2b-256 7d529b835c595d775fa62f4663e10363b8fc0bd4aa943b1674f3589b7e3f1870

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.53-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 476bcb17536f0392639b4ff3bf020bc5021b2bf0245ca734108db0d978252123
MD5 5f63b575387ffaf7cad491a192e86273
BLAKE2b-256 209a02e83db9025a47040fe98c5610b89dbb2e12bcb14632977d13d0eff9db03

See more details on using hashes here.

Provenance

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