Skip to main content

Fast, lightweight data profiling and quality assessment library

Project description

dataprof logo

dataprof

Fast, reliable data quality assessment for CSV, Parquet, and databases

CI Crates.io License PyPI Downloads


20x faster than pandas with unlimited streaming for large files. ISO 8000/25012 compliant quality metrics, automatic pattern detection (emails, IPs, IBANs, etc.), and comprehensive statistics (mean, median, skewness, kurtosis). Available as CLI, Rust library, or Python package.

🔒 Privacy First: 100% local processing, no telemetry, read-only DB access. See what dataprof analyzes →

Quick Start

CLI Installation

# Install from crates.io
cargo install dataprof

# Or use Python
pip install dataprof

CLI Usage

# Analyze a file
dataprof-cli analyze data.csv

# Generate HTML report
dataprof-cli report data.csv -o report.html

# Batch process directories
dataprof-cli batch /data/folder --recursive --parallel

# Database profiling
dataprof-cli database postgres://user:pass@host/db --table users

More options: dataprof-cli --help | Full CLI Guide

Python API

import dataprof

# Quality analysis (ISO 8000/25012 compliant)
report = dataprof.analyze_csv_with_quality("data.csv")
print(f"Quality score: {report.quality_score():.1f}%")

# Batch processing
result = dataprof.batch_analyze_directory("/data", recursive=True)

# Async database profiling
async def profile_db():
    result = await dataprof.profile_database_async(
        "postgresql://user:pass@localhost/db",
        "SELECT * FROM users",
        batch_size=1000,
        calculate_quality=True
    )
    return result

Python Documentation | Integrations (Pandas, scikit-learn, Jupyter, Airflow, dbt)

Rust Library

use dataprof::*;

// Adaptive profiling (recommended)
let profiler = DataProfiler::auto();
let report = profiler.analyze_file("dataset.csv")?;

// Arrow for large files (>100MB, requires --features arrow)
let profiler = DataProfiler::columnar();
let report = profiler.analyze_csv_file("large_dataset.csv")?;

Development

# Setup
git clone https://github.com/AndreaBozzo/dataprof.git
cd dataprof
cargo build --release

# Test databases (optional)
docker-compose -f .devcontainer/docker-compose.yml up -d

# Common tasks
cargo test          # Run tests
cargo bench         # Benchmarks
cargo clippy        # Linting

Development Guide | Performance Guide

Feature Flags

# Minimal (CSV/JSON only)
cargo build --release

# With Apache Arrow (large files >100MB)
cargo build --release --features arrow

# With Parquet support
cargo build --release --features parquet

# With databases
cargo build --release --features postgres,mysql,sqlite

# Python async support
maturin develop --features python-async,database,postgres

# All features
cargo build --release --all-features

When to use Arrow: Large files (>100MB), many columns (>20), uniform types When to use Parquet: Analytics, data lakes, Spark/Pandas integration

Documentation

User Guides: CLI Reference | Python API | Python Integrations | Database Connectors | Apache Arrow

Developer: Development Guide | Performance Guide | Benchmarks

Privacy: What DataProf Does - Complete transparency with source verification

🤝 Contributing

We welcome contributions from everyone! Whether you want to:

  • Fix a bug 🐛
  • Add a feature
  • Improve documentation 📚
  • Report an issue 📝

Quick Start for Contributors

  1. Fork & clone:

    git clone https://github.com/YOUR-USERNAME/dataprof.git
    cd dataprof
    
  2. Build & test:

    cargo build
    cargo test
    
  3. Create a feature branch:

    git checkout -b feature/your-feature-name
    
  4. Before submitting PR:

    cargo fmt --all
    cargo clippy --all --all-targets
    cargo test --all
    
  5. Submit a Pull Request with clear description

📖 Full Contributing Guide →

All contributions are welcome. Please read CONTRIBUTING.md for guidelines and our Code of Conduct.

License

MIT License - See LICENSE for details.

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.4.84-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

dataprof-0.4.84-cp314-cp314-win_amd64.whl (945.3 kB view details)

Uploaded CPython 3.14Windows x86-64

dataprof-0.4.84-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

dataprof-0.4.84-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

dataprof-0.4.84-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dataprof-0.4.84-cp314-cp314-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

dataprof-0.4.84-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.84-cp313-cp313-win_amd64.whl (945.0 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

dataprof-0.4.84-cp312-cp312-win_amd64.whl (945.2 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

dataprof-0.4.84-cp311-cp311-win_amd64.whl (944.9 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

dataprof-0.4.84-cp310-cp310-win_amd64.whl (947.5 kB view details)

Uploaded CPython 3.10Windows x86-64

dataprof-0.4.84-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.84-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dataprof-0.4.84-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.4.84-cp39-cp39-win_amd64.whl (948.4 kB view details)

Uploaded CPython 3.9Windows x86-64

dataprof-0.4.84-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.84-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dataprof-0.4.84-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.84-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

File hashes

Hashes for dataprof-0.4.84-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d3fdfe89926dd95bf8ad21fa97ef5b1cd122fae49304655c01dbb0e7eb4c7e0
MD5 512df76f79784275dab7a651dfcc0cd7
BLAKE2b-256 88ae870430b7f485708420143f6aebc54cb738f10e25c9538a67e0305f7156a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae6465f0b9b3416a31326281d097d16d737ebc022b771a5e871d76ec620e4e13
MD5 b0b61613045a079370b3bd239426f071
BLAKE2b-256 42d2099a11125e39b82ec207a58fff3ebd20c30c720963433479c01447f852e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.4.84-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.84-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.4.84-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40ca0c84a3747a7a050d5ef6a3d1eb85312bdbff0aa50f199e2a49119b74bcc2
MD5 e298e023b8d124f7d5bdbdecdd1e8b9f
BLAKE2b-256 195f7435a981f001129d049716084b40b4073ba19f72c805804b37496433634f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.4.84-cp314-cp314t-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.84-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.4.84-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 945.3 kB
  • Tags: CPython 3.14, 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.84-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7115a5337ba306ce1a55ae0fcf8bbd5f4328c93f0e6eb1faf39bbd0c6171020c
MD5 f33b63d26106e43f30520adcff35b1eb
BLAKE2b-256 f6884dbfdc7edfe57370a7e3bcda118ecdc79c41221b0e0c58b506b45396d375

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.4.84-cp314-cp314-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.84-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.4.84-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eaf57f3d8e08da032fc3ae9b5bb320d7a1e031b2d7763f6a4e59ab6f2ca65e74
MD5 9058e396b7a2fdb5997137f0d122934c
BLAKE2b-256 ccff760128619a702274b367511840fc6e5a60d73e5a02c4c68a15e7f8df387b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.4.84-cp314-cp314-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.84-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.4.84-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc3b925e379fbfc8c5be4166ecc6f3f271af625d8e9c4a0375cf9c19eab35d62
MD5 3a515835e443df4246dffa1a03da4610
BLAKE2b-256 2d3b0dfbfc613ef1e7817c9184de1f0d20d4b2e6e3cf160691eb669314e1d599

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.4.84-cp314-cp314-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.84-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.4.84-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eff0872802e6dca4b8144da1338fea1a4ab499f1824395cf90f73085f43e2f8b
MD5 457a2f3f460a02ce4e7fefbc6e1a2794
BLAKE2b-256 19dd7e391961e56434d588d9fe1bb2ac6cbf574bd0d68d9cbd743c89398c593d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.4.84-cp314-cp314-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.84-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.4.84-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 55515dce89bdfcec098d109889276f5ba45bcc6cc032ed2eef2aa0ca72626dce
MD5 a248ba4c234c6f7d1ae07af154c99cb6
BLAKE2b-256 d778061aa386d19357798dd30126b06e2f788e23063d63287db4d00f518ce270

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 904b503a185c25eee8a513e0b5366ab1f90fc07127c609b408cf20f9bf7858b7
MD5 921267b665d7dc087440ba831ddbe53d
BLAKE2b-256 8a131a6acec1c3ee3337e2d01b9833759882944bcdcd60cbabfadc9600ee6800

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.84-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 945.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.84-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 95d10297d2d80e52e3e3135c80c3d3b32f9b80d79015f241b217270c7c833b98
MD5 243c1474fcc93e2e8c742a5422959f30
BLAKE2b-256 9ef1515521323fa0d4d876c9c87e8bd4b5020ba08416e3896d74b17b4f5fc5b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42292e5e701573b79c06103c0c79b2c0e6b71c32ce925ffabf80460ebbf8c1d2
MD5 34619bce233115706667a942133074c8
BLAKE2b-256 08c2b9cd113d09c8a10919e84f638a7b6d16c51bd86a64bd4b13ab01a253e712

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 250ec62e4c2ed38a9a258ed70ae89c728ec01d00b840bcef03bbbfd5fc6d3cdd
MD5 9e4c0429935a8ac16aea95eae37842b4
BLAKE2b-256 8867f43ab574049f3671e931b26ccd421d80f33926121436e4a2c402cf2fce9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccd2e5e907e68c4835fc935e4d1c24ad2d69cf8db13bcae9fb065b1d9881c11d
MD5 0a786a26249d5a15638a152280980280
BLAKE2b-256 6453fe3c8596bec863c8ac89548b021cbe1a84f90b4bca2e8933a2cef2352da1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9994f354b3e518b2ca235e17ff01060bcc50c942900e6ea43b01bebdc06cacf7
MD5 a6d9b228ba947ca4b301deff8cec6128
BLAKE2b-256 992569340c0aca61d4d65abe347433b86bfe7aa07ee8ac599c3eb6f0f0c23615

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.84-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 945.2 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.84-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c7abb33404d2a05b467e972b5c94526b8839e590e354b46b99501adce5cd74b3
MD5 442aa444946d3694b71969a77eb9c5e1
BLAKE2b-256 1f4b85f418f2d642bb33aa012d4d615e2e53b07b4b2445379f521b622ef29bae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 886a68ac4b59f1b2309faafad839668d2a59df0f78b535e0e47a35422e822ecb
MD5 6d1f547a0945006fb2860442b12e4de1
BLAKE2b-256 d1485a9aba3442eb6875cf151c562265a962b12b5625841b886611f4d0a42e51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 958156bda86f81fee1602518c86f3aa782b11962bd3ee81556029a723e34ce6a
MD5 709722c3ac17e5064a72b408b78b2a56
BLAKE2b-256 1dfc5734459500b2ad5938ec15c2397d3fb08864739e6a242e0644916b82fb0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 119025e7edc03753671c81725638a456008cd76d694a9a400f4d239bafd97b85
MD5 45162d3b105fbb4cbb2bbf9f65e15ec4
BLAKE2b-256 44e077990eab0b038c0a95c68ec094562ecb3c4b774b32c3752719acabe4c225

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c549a03d7a4d19715d13d5a231d49e0f887758843129dd4a5525d0ed2eec4b22
MD5 d2e02868b9686d387a024dab4674b03d
BLAKE2b-256 919c886ffec3a3dba9c16a5ed3f77caf095c3e72f9c66badda6eb7ce757b66ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.84-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 944.9 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.84-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aaf9ceb5351802e20f51357f5c0dafaba7322e4697392d6ca89022a7b8958208
MD5 2e85c5c73500e25cf30ee90ceb92e088
BLAKE2b-256 72ac2ef1bab41dd6795cad3a2b466b29ff453d8c13b3b59831dd264b4760b972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe2c30f92f829b9aae7f1f451c7a3ebbe05b60dbfeb038829de5e3adab2b756e
MD5 b8b9b87738ecb739aaff5fac08e6dd09
BLAKE2b-256 694c47c558034aff406cd5f9b055cd1c8989645378f4e1743982e19f681b1c6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c01e927638cfbeff278876292cdc69ae9c3075e671389643e09cf6984089a687
MD5 0b80471f97c308ba66863d75bcde9e97
BLAKE2b-256 3ff091b8521aef598b657d14bf1dd8a5bfd930294e1d5f84cbda7d68f0bc0936

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d2223caecbd69e8a2d1dbf480ea5e7868caf967b729831308f95fc74dd86ed3
MD5 bab1642fe7c6eb896877c6743380121a
BLAKE2b-256 73a46549e8ec7b56e6452eb204eecb16519c1f7c1d2b860d62863124eeb9c9ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f35bbe4c7586f656bb44943d3d327b6910c565576a07f4d3f02177419ab72b6
MD5 78de4e085751df2ee0f786e05c7611aa
BLAKE2b-256 aa8b016b79d5210ce8be81d5dbf282cdcb4dc353dc4c7e474bf4a85389a02aaf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.84-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 947.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.84-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c31a61a660874df21b641e4e66f12d83899d28270e3922e39f655043075193f5
MD5 a4c6a86b7c902c0628db3cc805b8a3e6
BLAKE2b-256 5cd85135194e20c1577976a5b9a82a0265922199cbf5e115ab975e21512f17af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df7d34495859f1c8e14c368b6c07515ec68dd8543efa74e4efd555b5eb6c97db
MD5 a9ecddf43d1f8b43867d469c4e7d309e
BLAKE2b-256 e328820010b2d45f66071240368e1bcb71817b9b63a195282d31241079039a3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4af0f84dc77acd0720d079712b31d90333c8c7bf0ea96cb7bae94eb59477582
MD5 a0ab934a170872b125f4a2abe07683c9
BLAKE2b-256 f68add04489b531436cf2e1100b436e85c3590f601f537946a466686a05ca81f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc00b564eda6746a1684d9fc5eb147b96b7206a6280cf13f817e097d8d18b91e
MD5 27a326777912eb89dd3f7ad11368dd1c
BLAKE2b-256 126a1797b8c570a777ee061993ff973d87cc96a621941572e00116c9ed3c38c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 962fd49cb44100d3785bcb33d372cce4c9162e0d6c36fa8c38b0713baf8eadaa
MD5 1d82e4160645cd837f9def298241c54a
BLAKE2b-256 693db0d0cbe5907865ea96e3fcbdbbbe99ec01490817d120cf65153833ca702a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.4.84-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 948.4 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.84-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1ebd34e6a313e2d34f24c37f945c3a8af2c3f077f3789329b80b88434f2025d4
MD5 e24c7cbf464a6059cc0ea13f57eb3c14
BLAKE2b-256 6718eb2f71a7058e2df393cf635a4ac45c99ea1983333c81f0d6017622ace555

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f64ccb5a6e1b397d3dc993839110886a2ad90f2581b3d8758385da36bce85d3
MD5 29beb2befc19f716edf2df1051c332e9
BLAKE2b-256 9025d7c8c80fd20d3b8139f8d724d14a99ab65442a8c319d48a11570938e5757

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d1ec9efb9b6f0711964048d189335a07651032e0b11f0520e491e9529c7522b
MD5 15fc4eea7799a0e2583b525ce2660cc9
BLAKE2b-256 4095d07e649dbc4fd0b846213a70272aefa13f74d3cfdc0465f45313366afc61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 910f734c6c0bd057f92b2ae9381870de892028cf74774e9e2b2cf01701898149
MD5 5386aac82a85657a3b479e700774322b
BLAKE2b-256 526409f10e75b31079e4a830f11eea620e16a6b7d438aa8c2d051953e1ff8a0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.4.84-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1643900933e238e08999449217c479f0eaa18d74a4e987315bdc78f743c5bb11
MD5 02e1872af2fc3dc67204fcc5b58f7943
BLAKE2b-256 2398a3156b9c26dbafe8f3de34801f8eb06bc7f31944e311ed2fbd6a6d6690c6

See more details on using hashes here.

Provenance

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