Skip to main content

Fast, lightweight data profiling and quality assessment library

Project description

DataProfiler 📊

CI License Rust Crates.io PyPI

High-performance data quality library for production pipelines

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

DataProfiler HTML Report

✨ Key Features

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

🚀 Quick Start

Python

pip install dataprof
import dataprof

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

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

Rust

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

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

CLI

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

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

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

📊 Performance

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

💡 Real-World Examples

Production Quality Gate

from dataprof import quick_quality_check

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

Jupyter Data Exploration

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

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

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

Database Monitoring

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

📖 Documentation

Guide Description
Python API Complete Python reference with examples
Database Connectors PostgreSQL, MySQL, SQLite, DuckDB integration
Apache Arrow Integration High-performance columnar processing guide

Additional resources: CHANGELOGCONTRIBUTINGLICENSE

🛠️ Development

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

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

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

🤝 Contributing

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

📄 License

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dataprof-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

dataprof-0.4.0-cp313-cp313-win_amd64.whl (923.0 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dataprof-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (946.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

dataprof-0.4.0-cp312-cp312-win_amd64.whl (924.3 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dataprof-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (946.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

dataprof-0.4.0-cp311-cp311-win_amd64.whl (924.4 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dataprof-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (950.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

dataprof-0.4.0-cp310-cp310-win_amd64.whl (924.5 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dataprof-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (950.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.4.0-cp39-cp39-win_amd64.whl (924.7 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

File hashes

Hashes for dataprof-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 601234ff02b0ed3c6d6233851c3fc77e0bcb96621123e2e38f41d94f58fafe04
MD5 fb6c1ab6abc394564e3f340683d13912
BLAKE2b-256 10ac02f85d54a56c42d864373e84f56be28f1875681ced6e4cc3cd81aaf63704

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ce21134a602c5597caf57358438cc2b047372a2ba60854a486b4979149d112a
MD5 abaf9c1cbef2eb9ba351d20c2ef8b45f
BLAKE2b-256 224f1792c3fbd3aa0a7229d5cd1cc5baf836b03855f3768ada5eaf96dd914bc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f95866a032504555a9632d1f2a3d37774634d2b53381bc2a052b42e2752043ab
MD5 2e2862ac6ebd3b7e60bfbef2b1bed699
BLAKE2b-256 e341ee6535345cb81a34c396b642c339bb27f2a167cfba628c48c5da3816df59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ed64b6b040949cb7e5bef35100f98d139f2abc8b825d7a378a0f14a724f6448
MD5 d22b48808f0b9150b1604b78831c94a6
BLAKE2b-256 079669974ecea1c83832e7371dec9789ffa9b6868aca58cd3e241f3cccffe54d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a6072184fe8bceda768708aa9d87b3f9eb4084a284fe26d3202238f20cc87d1
MD5 86f2f55f9c255118cbc53363816db14b
BLAKE2b-256 f8fb0d7078d7dcc478df366cb940b48d0a8c326bdc5a9bdf46b9ffbad8888784

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 923.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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 648adae1a4c521006f637d6c0391979cf9fcc21b26ba3f64b7b3350971a9c200
MD5 af06edf3f05f41fb3af41fab92cbf4c1
BLAKE2b-256 8ad99ee3abfc8f047b54714298fd1d1697deaeb8474f3768812a32c2e267a5f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e2ac9c1c7846577614736d3262a5a92d21ad96e0a9b2f7fce2edbec130a7267
MD5 11433cc1d79d6375decf0eca3ced1d33
BLAKE2b-256 1aabc2e6030dd304ef713106c6c5517fef32be97e40cbd5cb3e9b7cc9241e596

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b428e6502e7e611d2a4c1de1d93e90803d498ef7341bb551f29ae7d0cb14cf5
MD5 ea99098ed50c44212145f5b8b7ff3f51
BLAKE2b-256 3ca9f9914168671213bea545c8bfb6b3b43e0ca9ef196f8b41195ee47c80026c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f560467522aa8be2f36a1df41e121d94881c3105bc51976363a502b65a45408a
MD5 1b9392247ac8bb742d5f7f355c837e60
BLAKE2b-256 4e8b466989000eb4da9f6efc5c5e5c065810eddb257031311dc72bd3c68b86ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 340de7a6c7f5be55d57b346e6aae16e24556006c4fda05e33963e5bc944bbd06
MD5 535368b18694fdafd724b8fb747135ed
BLAKE2b-256 b0dcbd6be8efb2922fd0475e8a011d9eabb77308976e2e1ad82bf54fc3a7200a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 924.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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f7a82eb4d819e9791b53ef14728d341ea195a3211c59145701db8d92178c6aa0
MD5 568df1f7fe1b914541030ef6970a51a3
BLAKE2b-256 c13eadc385c5d0871e4ed4f45793f8f25e4018bdc31c7f3262f349510fbe8dda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 309d99e78425ef6289655368aee800461296f8800faf89f68a4f34fc65c468ec
MD5 25ede176847df0f95219bad17042348f
BLAKE2b-256 9c9b644cd4ff3cbad4ec5a79fdf3da25ee5fa4a7b807e9e88ae65156496827b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac91843765ee01cb0e7a3f6e60262197e6a8c1f0f4786ff6160d4aa76fe081d0
MD5 2e995938669e82bd7a1bb66a355f9ea1
BLAKE2b-256 df94e71766d6d9cfd11d102385c52cc8db260dceb2b4ba863e299998d11d9c81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ae6ba6f855edea44c9f85edcb5cece5781ac42a5196772c580f630d4dac2ec0
MD5 05fad521b8f8e4dc548db25de09ce94e
BLAKE2b-256 fa14f48e6fa53ca80bf39d44b95830c3938198bb4c472cb46fbfbc3d41651ad4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ff1da66b9ca820445defb1064c34599134e11b8ba873d82bc7fdc4e76a6bda8
MD5 0c15fec5a8b4a43bc52afc3c4ccf1dc0
BLAKE2b-256 274e0fedebb772fb130346475235131ea478bb7d47820005903ae1eb9710b346

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 924.4 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b60d44488beaeaedd02cd01684c4df748c5048f2626a7bfd7de772c7c2f6d1e2
MD5 925d0cbc9d82845d835d499f66f97d4a
BLAKE2b-256 7318dedecd92a5ba6695a74f7f8d46d44c9f13a0e6088cf2ccc64cece6262a04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c040386e70bb0fb8aea66dac1ca45a12995187c046f2c55fdd3e94d07ccf436
MD5 aa3c436e0c31e81eba4501342eba21c0
BLAKE2b-256 7a2611393ba1ca7e86ae1b7dfdba5bc5ea632f4523805520069b6cc4a278c74a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66d3a62768576daf49a58305ddfc09830d87f34f3a81b02e5fabd01a1f3da6a0
MD5 cf3eccf59e80b55e0ce9511d45dcf211
BLAKE2b-256 a3c95dc00e8c2fa600eb9793bae94c610e5fffa98df895dd712a8d740583e924

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afc19bf0ea91b04d5d6ecd1d0432540a108c32554d9922b3ac18bd35794eae17
MD5 fa2f60e437a1fc7afdc1bb54c54e158f
BLAKE2b-256 2c64707bae9de524f27a8648ce82ff052de470d9affb63a90748c45b46147a92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 464b42302f71fe4aa3a622410c1c6b93081ecbf88f25fcc297693a3ad32f0a18
MD5 3548f1c86d9003bcc0e50f108cbf9c34
BLAKE2b-256 f90704a7b3471806cd9c2b4b91f6423ff39f1af01366b430f0403bedf447c919

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 924.5 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cef7a70b036f85d6fef0ce9f41de1895987de66c59d61e3da1ee025471a1af3d
MD5 6c7dd69a98f7b935fac4f539561428fd
BLAKE2b-256 3d8448f91db2c35933dbe24d639faeecd3aff4861354090dbca340d01c55803f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c57cbca81f77f96a14960f92df3d17068247f3b618e0a2ea2d978500c11c079
MD5 f4812202774fa4cff0fc269e3da1f2dc
BLAKE2b-256 5d0f7f3202a96d2dc67867cde9de926674dcb69b871273977e6e5d47611ba0a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9523926967ca54d9b6c8d12c4beedcc8fffde8eccfece7399e350f2edc428409
MD5 76a28097b284d34a04020d7766e7f987
BLAKE2b-256 3d45d099c6ffc92e640d1fe161c14ad869fc5ab412750291ac3e5c17abfcfaf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ec56ac1868a592d6b3bec20663020d81934b3c2cf379d855bb37123728fe543
MD5 f20c5d25106c3e07606256c639c07301
BLAKE2b-256 80dd1592c23070c2821b1ac2acaad2dc8ae84d7757ba429c17242381929e7b0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 432a29d8295dc93f6ad40c97fcdbe920edacd12977df625522001d9ee4489810
MD5 e57aa14a6a7e43bb4ff01358b5008f2d
BLAKE2b-256 0f2870381d0a4c88c469db46b5f068429e66e602eed56d392e13573e4cba1cf1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 924.7 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7c52ebb03e01aa64917b3cf367f9c6b9cb40efc483ef21ece1c2beb3dc164b33
MD5 a00b74cd7ab5ad314b572f72935ce1ae
BLAKE2b-256 c192ea10672f49ff0e438b0c8a91f72045b68ee0264d7944b481295a161440be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ab8cecbb1d6d7d0afee6a862c3d6f7444fce977999c76136e84dfc928c8e991
MD5 f765e6a94f7bd1a71f52680e13854c53
BLAKE2b-256 335529290ba844e847b2144edc093775a3ba3f86ad1b98552ac84c5677f09c2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2673977b6279888735326afeb9ac232a27ee83365731f466b94019b6c041afcc
MD5 59f6481205c585120f74dd277a12b66c
BLAKE2b-256 7242bf24c082c52aeebacb09658dac16e333563145732b0d869503d755083042

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54971ee651c86efbfc2243ed0fc2ef8c49b65bbc6f2b6f1031876af80e701ef6
MD5 d23d83414caef088296b24b130e51338
BLAKE2b-256 36f3da2b9a1859001d0f9318feb963534cbd430086b4ff9a3bf4f11d32259b8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f8d6fe01b165e3b54cdb6b7374d7ae212e1040a583c1a2e26421f47da644a36
MD5 1fcdd46ba166368877d3b8bfa9fc8ec0
BLAKE2b-256 5b13c23abf922a6b47750bf7a80e202cc116827fb91196827de66d18f95bde15

See more details on using hashes here.

Provenance

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