Skip to main content

Fast, lightweight data profiling and quality assessment library

Project description

dataprof logo

dataprof

The High-Performance Profiler for Large Datasets

CI codecov Crates.io License: MIT OR Apache-2.0 PyPI Downloads


Profile 50GB datasets in seconds on your laptop.

DataProf is built for Data Scientists and Engineers who need to understand their data fast. No more MemoryError when trying to profile a CSV larger than your RAM.

Pandas-Profiling vs DataProf on a 10GB CSV:

Feature Pandas-Profiling / YData DataProf
Memory Usage 12GB+ (Crashes) < 100MB (Streaming)
Speed 15+ minutes 45 seconds
Implementation Python (Slow) Rust (Blazing Fast)

Quick Start

Installation

The easiest way to get started is via pip:

pip install dataprof

Python Usage

Forget complex configurations. Just point to your file:

import dataprof

# Analyze a huge file without crashing memory
# Generates a report.html with quality metrics and distributions
dataprof.profile("huge_dataset.csv").save("report.html")

CLI & Rust Usage (Advanced)

If you prefer the command line or are a Rust developer:

# Install via cargo
cargo install dataprof

# Generate report from CLI
dataprof-cli report huge_data.csv -o report.html

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

💡 Key Features

  • No Size Limits: Profiles files larger than RAM using streaming and memory mapping.
  • Blazing Fast: Written in Rust with SIMD acceleration.
  • Privacy Guaranteed: Data never leaves your machine.
  • Format Support: CSV, Parquet, JSON/L, and Databases (Postgres, MySQL, etc.).
  • Smart Detection: Automatically identifies Emails, IPs, IBANs, Credit Cards, and more.

📊 Beautiful Reports

Interactive Demo
Animated walkthrough of dataprof features and dashboards

DataProf Demo



Single File Analysis
Interactive dashboards with quality scoring and distributions

Single Report Dashboard



Batch Processing Dashboard
Aggregate metrics from hundreds of files in one view

Batch Dashboard

Documentation

Advanced Examples

Batch Processing (Python)

# Process a whole directory of files in parallel
result = dataprof.batch_analyze_directory("/data_folder", recursive=True)
print(f"Processed {result.processed_files} files at {result.files_per_second:.1f} files/sec")

Database Integration (Python)

# Profile a SQL query directly
await dataprof.analyze_database_async(
    "postgresql://user:pass@localhost/db",
    "SELECT * FROM sales_data_2024"
)

Rust Library Usage

use dataprof::*;

let profiler = DataProfiler::auto();
let report = profiler.analyze_file("dataset.csv")?;
println!("Quality Score: {}", report.quality_score());

Development

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

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

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

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 Database Connectors

🤝 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

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

License

Dual-licensed under either:

You may use this project under the terms of either license.

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.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dataprof-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

dataprof-0.5.0-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

dataprof-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

dataprof-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

dataprof-0.5.0-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dataprof-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

dataprof-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

dataprof-0.5.0-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

dataprof-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dataprof-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dataprof-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dataprof-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

dataprof-0.5.0-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

dataprof-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dataprof-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dataprof-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dataprof-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

dataprof-0.5.0-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

dataprof-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dataprof-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dataprof-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dataprof-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

dataprof-0.5.0-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

dataprof-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dataprof-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dataprof-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dataprof-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dataprof-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dataprof-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

dataprof-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

File hashes

Hashes for dataprof-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5241c9baa8f2373c1555183ba6aa47383b52f96efb883a8fecded7514ebecb2
MD5 b10005405832dee926e4232d279f960e
BLAKE2b-256 0096cbcd0f4d748beb4c8a6db046abb260c6be8f117483dc12cd490d32275834

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 280c5f9cbb56e43bb368177a48602284bc731dcf10ca08e02c6dc1b6dae4a982
MD5 86ffe137a59071b240ead47cb146b8f1
BLAKE2b-256 5c9a4c8bf72c01bcdd5f81548dfb930144462f6713648b4b25701f2e597452df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5b02b3b4150b7048b6d2f3e4820e0656f2094f8137d6868f1a26b6957c4a117
MD5 47f580de2af4e015b009ebbd2e31a277
BLAKE2b-256 fd5c7ac0acdd208b10037929efb857ddf75b9a04cd9f6707633d3cc43965b817

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.5.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • 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.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 de1fd0af1db625bfc36e1794af888beaebba06cb92014bab7aad16fa47bdda2e
MD5 21fed57e4db1a84aea4b26cd52832b5e
BLAKE2b-256 1e12f8ba2c8bca909e1a61a74c3adc11078aac0a9e48517af8873abba6fa4ab4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7dbebee2288d70218c74c8954e739b21e29e03ddb2b9fe7ed808a3f73813d722
MD5 be07618df216f89b2b1df5b3486b39f3
BLAKE2b-256 9f50ef7c4405460c0edec3227405d30cdedb73a1d5c7dc11be50fbd262124dba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a803ce243c1ae6819946061603449f90217289aaa252bf57534b75e89056c948
MD5 4c0dfff47e50c5b3444ee5b7500c5006
BLAKE2b-256 3a7da2bb47e04b1e7b3f72693606330d88d2c48853f5dc0cf224019eab83d056

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ac99078d50a5c3ede132675e93676f32c36002280fcade0e08a79745035ac22
MD5 41b942098375d6285dcd3af6d3f28e80
BLAKE2b-256 f34cf22bca5d121feda79904729ec63393669cc92434d6f63fb115d1d46fb6d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7121855625fd885ed4817e95b34a2b4a95d2fd6abf112cf946a7b10ee86a567
MD5 aeecf438da04885a0eef8c6ba20a4ef5
BLAKE2b-256 041c50caddcc26e0dc366c17b5709a6ba0938bb3f4a1b6cc3e088bb11e764818

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4096daa1f7a263a7cb8f50b67b1797daa068f3eb796c7ab83b671d9b38e37e7d
MD5 b7317abf0534a6d4bce1abc47a68cfa4
BLAKE2b-256 db1c26be0b754a3d538ba90a866f4de2857fa99181720c0a207365920bdc14d9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • 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.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 063b4ec8ce7d3b93c51e5aeb824f9e96557be99db18c16fb6334b4507bf4fd62
MD5 f74202cc28a0258740474664444b15d7
BLAKE2b-256 4de285b5010da16c1676178d1b6773ebd2b5d613937f12f66b26b330afd419f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5d1825c9c1fb369717cde4885f363b33e720a6a17d0a101c0605a13aef37c3e
MD5 50224db8d812c6dba5cad8c106c8cfeb
BLAKE2b-256 a8ee92eb3d8ab74565550ba222dc62f9be1498d6cb081259b84764b37aeb1a72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a8c5154a0ec23f402e0bb7f056e1afdd3213d207a92642236f1cb7ed75fbff3
MD5 a5f29737311a2f14f52e864bda8fa3e5
BLAKE2b-256 49bf5da2dbec6b50283db35cc3f3509a90fc473bfaad0e649f2c73bdb365a766

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc7c7966eed24be0a52c8c3e5b680664ba3a804dbc4c41d1ff74eecc8c0ce4b0
MD5 d666aad8cd592c2b2acd7621078e01a6
BLAKE2b-256 8192485921babcde600839d4bd0cde9e32d3ee0b393d074eae762c3ecf0a95a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe678058224a3afdeefcac1ff09e845f49f555dc769a4fd3015fc76aa25b0e2f
MD5 45457b6cf28ce0fcaf35f3f81b970f45
BLAKE2b-256 7d6464b8694266c45d310b3b9c8cfa69dc6ddcc854d1bf8452b5c181e5cd7db6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • 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.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 970c4f156eabe2b9930089fe991bc927e6ed28747e0543c398d5283379e98fad
MD5 0e169a253310cbb336a11f61bca0336d
BLAKE2b-256 8d39448731038fd6a1ae9edd87bde1b1b380da4b3c83358bf2bef22cdcc1a85d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31f6fb70187c6b805157a24a4b8a28e8ed6849cf033d15cbbd0b88b09aa6cb9f
MD5 09d542bb3501a146019330f6a001d493
BLAKE2b-256 d6287b805b8b6e42b05282aa372eb65e45b68d7d1118cbf7d1a4dd3dfef5eb52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34f324521af58ccbbf3d2d0f83d1e07fd661f921c52dcc7cb8c6df8dfa54e225
MD5 fd4e990fae9f16e8653abcbbb81ec855
BLAKE2b-256 0f1fe52723ba711148ebd9a5e287724aeb3149b0c9f5f7c7a350cbedd2b45046

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12d7738fd9ddc87847ef4a7d759fba013a70db936632a7aeae19558f9865b401
MD5 72597ec82f9c2d5bafc024cbdca76b4f
BLAKE2b-256 c3d024da853fcc1c3bc25b6af28b4fb757387f44c0d66ae6163e511aaca97090

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4adabaaffb29e56aa58d93fd892297deb9818085f4b8c9287cc038396b396990
MD5 f5033778db819d625c94e7163a4bf4ca
BLAKE2b-256 9e22bce53af5600675934f04042a99c355e60c57a27aee7ca9a8453225f3c5e1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • 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.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 48727ae032cacdc12b64bb54d2e44eebc227851d9a3a41663585272a7ccb47f6
MD5 eeac2631bb9a4e2fa550ef3b0ad5c791
BLAKE2b-256 c1b56f7370976b046ed03b6acf1fd9a512dd33b45063d7ac134d78dcf739d1af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ee87684e0dfb9f8e581d21479076c559363ef53a6e0e7f7b81fe4e7ed5e602f
MD5 9a3c5bbead8b9770875d8595ce6cd2b7
BLAKE2b-256 c573f172c19539b7de97db6b09d1852e346dca3265c15bcca42b78ac5fd586cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 447156fabdfb8dd30eae457b0ab21f7e82922e5d63ebb62035c82fa0a24ebad9
MD5 dc34e9517231a4cd51ce0eb3d8766fd3
BLAKE2b-256 624acf6005a427ffc364843277b54a69eb49ba0cba17ca6922c4045759d2298f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 577689eeeba6a0b46c130e18ad996192b85290a68b9379786a061bc444130776
MD5 e725e3a7294f2885064f4d16791c404b
BLAKE2b-256 c0ade12ced01e99059f1acd0ef966e65ad2d2ea90901debfabd3af4c92990343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 909c00492ebc0a89367bc059b501d75aba0c8c688d5929a8002f9b368a15fc75
MD5 565dc240586b420dafee0dcfe29a4545
BLAKE2b-256 206afc14e262e123b000872b02cc127e4bd8f78f7981905d6af29b97a5fab6ed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • 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.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 94653f955c68f993e98169c06d44b62d0f67d1305ddd47bdb8c21da828fec1d4
MD5 6b25f92a683297c8b1957162ef838990
BLAKE2b-256 4ddfd52b1755bcd9d411a6ed6cb1a947c1e4e1aabfd8577407fcf24285e5e728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f6161696198d8c09ef0f4d89f8e47885273d25bdd3668fa05e7643448633469
MD5 d10e9246b669556cf65bf348eee1a561
BLAKE2b-256 ba2b1a86dadb1c819760b03fe78d97690370173a799df2607d06963e829b42e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c484df5b91952f25a4b616426536fa25eefe38c6e160bd32191dca97507fd741
MD5 71aec2079e6ae9a1324a46b6bafccb38
BLAKE2b-256 7bb1a17b7b725aa6ac4be2f1a925d7dadb728598b56dbd49145b0e8baec8ced0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65056c96c460675421f8775a3be22b605bec9100978a529356b92e928d6d67c5
MD5 a9f5fd3085e91a6691fa0cfcacf8822a
BLAKE2b-256 b52598c68d08c3d42ffa6d2720108d36dae986d4dedece8e36d1c14c10d345be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03949ca093f58c6a256821c257abb59eefad5d8884f1aa9ca61b4c480ba138ff
MD5 51aa58d00704c5c426fcdbf90e09b830
BLAKE2b-256 d90f21bbd74912e44f62062239ee28c0f6ddf8f630a3af4f48adf70247348db2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e71ce2f502513238684ec22af1f490e4ee822cb2d2115e4e28a5fd61257a60bd
MD5 9d2e5c6c208f4d64432259cba249cd57
BLAKE2b-256 f157cbd7be59e1bdb67c9b9bdaeac06f752469265cd8b023bf7b618ca10d5e23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3aaf83781eb66ed2b83eddcc940f5686a6151fd5387303a3e67539a4fc57232
MD5 93403e6f8632c2e3b188868ff10f92b5
BLAKE2b-256 1efc3939dde7f0e566c40c8ccbdfee8c7eea26e060965f9cd7e5a4313d929ed2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f82ff1a398c4472634d0753051345ef65cb7b2101c41a63ec1b18354043fa4b3
MD5 5c0902e4f364736e5883a02ad090b421
BLAKE2b-256 7e5e741a46f5143a6d9dded8691b32d9b1ed18afc3415ec576e992224c35a7c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6d7f3ffc49633ad4d966ae3b988c144d563f1cfd3da7f6f25c7b85505cd5af1
MD5 badf383f6923455bfa37f5d1a41a7690
BLAKE2b-256 f5bedd5f305db6b8c7924ee322b430ba3565197ee904373b14d9264219fe4762

See more details on using hashes here.

Provenance

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