Skip to main content

Fast, lightweight data profiling and quality assessment library

Project description

DataProfiler ๐Ÿ“Š

CI License Rust Crates.io

High-performance data quality library for production pipelines

๐Ÿ—๏ธ Library-first design for easy integration โ€ข โšก 10x faster than pandas โ€ข ๐ŸŒŠ Handles datasets larger than RAM โ€ข ๐Ÿ” Robust quality checking for dirty data

DataProfiler HTML Report

๐Ÿš€ Quick Start

As a Rust Library

cargo add dataprof
use dataprof::*;

// Simple analysis
let profiles = analyze_csv("data.csv")?;

// Quality checking with streaming for large files
let report = analyze_csv_with_quality("large_dataset.csv")?;
if report.quality_score()? < 80.0 {
    println!("โš ๏ธ Data quality issues detected!");
    for issue in report.issues {
        println!("- {}: {}", issue.severity, issue.message);
    }
}

// Advanced configuration
let profiler = DataProfiler::builder()
    .streaming(true)
    .quality_config(QualityConfig::strict())
    .sampling_strategy(SamplingStrategy::reservoir(10000))
    .build()?;

let report = profiler.analyze_file("dirty_data.csv")?;

Integration Examples

๐Ÿ”ง Airflow Integration
# Quality gate in Airflow DAG
from dataprof import quick_quality_check

def data_quality_check(**context):
    file_path = context['task_instance'].xcom_pull(task_ids='extract_data')
    quality_score = quick_quality_check(file_path)

    if quality_score < 80.0:
        raise AirflowException(f"Data quality too low: {quality_score}")

    return quality_score

quality_task = PythonOperator(
    task_id='check_data_quality',
    python_callable=data_quality_check,
    dag=dag
)
๐Ÿ“Š dbt Integration
// Generate dbt tests from profiling results
use dataprof::integrations::dbt;

let report = analyze_csv_with_quality("models/customers.csv")?;
dbt::generate_tests(&report, "tests/customers.yml")?;

// Creates tests like:
// - dbt_utils.not_null_proportion(columns=['email'], at_least=0.95)
// - dbt_utils.accepted_range(column_name='age', min_value=0, max_value=120)
๐Ÿ Python Bindings
pip install dataprof

import dataprof

# Simple usage
profiles = dataprof.analyze_csv("data.csv")
quality_report = dataprof.analyze_with_quality("data.csv")

# Pandas integration
import pandas as pd
df = pd.read_csv("large_file.csv")
# DataProfiler handles larger datasets that crash pandas
profiles = dataprof.analyze_dataframe(df)

CLI Usage

# Install binary from GitHub releases
curl -L https://github.com/AndreaBozzo/dataprof/releases/latest/download/dataprof-linux.tar.gz | tar xz

# Basic analysis
./dataprof data.csv --quality

# Streaming for large files
./dataprof huge_dataset.csv --streaming --progress

# Generate HTML report
./dataprof data.csv --quality --html report.html

๐ŸŽฏ Real-World Use Cases

Production Data Pipeline Quality Gates

// Block pipeline on poor data quality
let quality_score = quick_quality_check("incoming/batch_2024_01_15.csv")?;
if quality_score < 85.0 {
    return Err("Data quality below production threshold");
}

ML Model Input Validation

// Detect data drift in production
let baseline = analyze_csv("training_data.csv")?;
let current = analyze_csv("production_input.csv")?;
let drift_detected = detect_distribution_drift(&baseline, &current)?;

ETL Process Monitoring

// Continuous monitoring of data warehouse loads
for file in glob("warehouse/daily/*.csv")? {
    let report = analyze_csv_with_quality(&file)?;
    send_quality_metrics(&report, "datadog://metrics")?;
}

โšก Performance vs Alternatives

Tool 100MB CSV Memory Usage Handles >RAM
DataProfiler 2.1s 45MB โœ… Yes
pandas.describe() 8.4s 380MB โŒ No
Great Expectations 12.1s 290MB โŒ No
deequ (Spark) 15.3s 1.2GB โœ… Yes

Benchmarks on E5-2670v3, 16GB RAM, SSD

๐Ÿ“Š Example Output

Quality Issues Detection

โš ๏ธ  QUALITY ISSUES FOUND: (15)

1. ๐Ÿ”ด CRITICAL [email]: 2 null values (20.0%)
2. ๐Ÿ”ด CRITICAL [order_date]: Mixed date formats
   - YYYY-MM-DD: 5 rows
   - DD/MM/YYYY: 2 rows
   - DD-MM-YYYY: 1 rows
3. ๐ŸŸก WARNING [phone]: Invalid format patterns detected
4. ๐ŸŸก WARNING [amount]: Outlier values (999999.99 vs mean 156.78)

๐Ÿ“Š Summary: 2 critical, 13 warnings
Quality Score: 73.2/100 - BELOW THRESHOLD

Quality Issues Detection

๐Ÿ“Š DataProfiler - Standard Analysis

๐Ÿ“ sales_data_problematic.csv | 0.0 MB | 9 columns

โš ๏ธ  QUALITY ISSUES FOUND: (15)

1. ๐Ÿ”ด CRITICAL [email]: 2 null values (20.0%)
2. ๐Ÿ”ด CRITICAL [order_date]: Mixed date formats
     - DD/MM/YYYY: 2 rows
     - YYYY-MM-DD: 5 rows
     - YYYY/MM/DD: 1 rows
     - DD-MM-YYYY: 1 rows
3. ๐ŸŸก WARNING [phone]: 1 null values (10.0%)
4. ๐ŸŸก WARNING [amount]: 1 duplicate values

๐Ÿ“Š Summary: 2 critical 13 warnings

๐Ÿ—๏ธ Architecture & Features

Why DataProfiler?

Built for Production Data Pipelines:

  • โšก 10x faster than pandas on large datasets
  • ๐ŸŒŠ Stream processing - analyze 100GB+ files without loading into memory
  • ๐Ÿ›ก๏ธ Robust parsing - handles malformed CSV, mixed data types, encoding issues
  • ๐Ÿ” Smart quality detection - catches issues pandas misses
  • ๐Ÿ—๏ธ Library-first - easy integration into existing workflows

Core Capabilities

Feature DataProfiler pandas Great Expectations
Large File Support โœ… Streaming โŒ Memory bound โŒ Memory bound
Quality Detection โœ… Built-in โš ๏ธ Manual โœ… Rules-based
Performance โœ… SIMD accelerated โš ๏ธ Single-threaded โŒ Spark overhead
Integration โœ… Library API โœ… Native Python โš ๏ธ Configuration heavy
Dirty Data โœ… Robust parsing โŒ Fails on errors โš ๏ธ Schema required

Technical Features

  • ๐Ÿš€ SIMD Acceleration: Vectorized operations for 10x numeric performance
  • ๐ŸŒŠ True Streaming: Process files larger than available RAM
  • ๐Ÿง  Smart Algorithms: Vitter's reservoir sampling, statistical profiling
  • ๐Ÿ›ก๏ธ Robust Parsing: Handles malformed CSV, mixed encodings, variable columns
  • โš ๏ธ Quality Detection: Null patterns, duplicates, outliers, format inconsistencies
  • ๐Ÿ“Š Multiple Formats: CSV, JSON, JSONL with unified API
  • ๐Ÿ”ง Configurable: Sampling strategies, quality thresholds, output formats

๐Ÿ“‹ All Options

Fast CSV data profiler with quality checking - v0.3.0 Streaming Edition

Usage: dataprof [OPTIONS] <FILE>

Arguments:
  <FILE>  CSV file to analyze

Options:
  -q, --quality                  Enable quality checking (shows data issues)
      --html <HTML>              Generate HTML report (requires --quality)
      --streaming                Use streaming engine for large files (v0.3.0)
      --progress                 Show progress during processing (requires --streaming)
      --chunk-size <CHUNK_SIZE>  Override chunk size for streaming (default: adaptive)
      --sample <SAMPLE>          Enable sampling for very large datasets
  -h, --help                     Print help

๐Ÿ› ๏ธ As a Library

Add to your Cargo.toml:

[dependencies]
dataprof = { git = "https://github.com/AndreaBozzo/dataprof.git" }
use dataprof::analyze_csv;

let profiles = analyze_csv("data.csv")?;
for profile in profiles {
    println!("{}: {:?} ({}% nulls)",
             profile.name,
             profile.data_type,
             profile.null_count as f32 / profile.total_count as f32 * 100.0);
}

๐ŸŽฏ Supported Formats

  • CSV: Comma-separated values with auto-delimiter detection
  • JSON: JSON arrays with object records
  • JSONL: Line-delimited JSON (one object per line)

โšก Performance

  • Small files (<10MB): Analysis in milliseconds
  • Large files (100MB+): Smart sampling maintains accuracy
  • SIMD optimized: 10x faster numeric computations on modern CPUs
  • Memory bounded: Process files larger than available RAM
  • Example: 115MB file analyzed in 2.9s with 99.6% accuracy

๐Ÿงช Development

Requirements: Rust 1.70+

Quick Setup

# Automated setup (installs pre-commit hooks, tools)
bash scripts/setup-dev.sh        # Linux/macOS
# or
pwsh scripts/setup-dev.ps1        # Windows

# Manual setup
cargo build --release             # Build optimized
cargo test                        # Run all tests
cargo fmt                         # Format code
cargo clippy                      # Lint code

Development Tools

Using just (Recommended)

cargo install just                # Install task runner
just                              # Show all tasks
just dev                          # Quick development cycle
just check                        # Full quality checks
just test-lib                     # Fast library tests
just example data.csv             # Run example analysis

Using pre-commit (Quality Gates)

pip install pre-commit            # Install pre-commit
pre-commit install                # Install hooks
pre-commit run --all-files        # Run all checks

Manual Commands

cargo build --release             # Build optimized
cargo test --lib                  # Fast library tests
cargo test --test integration_tests # Integration tests
cargo test --test v03_comprehensive # Comprehensive tests
cargo fmt --all                   # Format code
cargo clippy --all-targets --all-features -- -D warnings # Lint

Quality Assurance

The project uses automated quality checks:

  • Pre-commit hooks: Format, lint, test on every commit
  • Continuous Integration: 61/61 tests passing (100% success rate)
  • Code coverage: All major functions tested
  • Performance benchmarks: Verified 10x SIMD improvements

๐Ÿค Contributing

See CONTRIBUTING.md for development guidelines.

๐Ÿ“„ License

This project is licensed under the GNU General Public License v3.0 - see the LICENSE file 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 Distribution

dataprof-0.3.0.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

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

dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (986.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (986.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (960.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

dataprof-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

dataprof-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (986.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

dataprof-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (960.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

dataprof-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

dataprof-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (981.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

dataprof-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (956.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

dataprof-0.3.0-cp313-cp313-win_amd64.whl (816.0 kB view details)

Uploaded CPython 3.13Windows x86-64

dataprof-0.3.0-cp313-cp313-win32.whl (777.3 kB view details)

Uploaded CPython 3.13Windows x86

dataprof-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dataprof-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

dataprof-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

dataprof-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (982.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (957.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dataprof-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (859.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dataprof-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (944.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

dataprof-0.3.0-cp312-cp312-win_amd64.whl (816.6 kB view details)

Uploaded CPython 3.12Windows x86-64

dataprof-0.3.0-cp312-cp312-win32.whl (778.4 kB view details)

Uploaded CPython 3.12Windows x86

dataprof-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dataprof-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

dataprof-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

dataprof-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (983.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (957.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dataprof-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (859.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dataprof-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (944.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

dataprof-0.3.0-cp311-cp311-win_amd64.whl (817.7 kB view details)

Uploaded CPython 3.11Windows x86-64

dataprof-0.3.0-cp311-cp311-win32.whl (779.4 kB view details)

Uploaded CPython 3.11Windows x86

dataprof-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dataprof-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

dataprof-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

dataprof-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (985.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dataprof-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (861.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dataprof-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (947.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

dataprof-0.3.0-cp310-cp310-win_amd64.whl (817.9 kB view details)

Uploaded CPython 3.10Windows x86-64

dataprof-0.3.0-cp310-cp310-win32.whl (779.5 kB view details)

Uploaded CPython 3.10Windows x86

dataprof-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dataprof-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

dataprof-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

dataprof-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (986.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dataprof-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (861.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dataprof-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (947.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.3.0-cp39-cp39-win_amd64.whl (818.1 kB view details)

Uploaded CPython 3.9Windows x86-64

dataprof-0.3.0-cp39-cp39-win32.whl (779.7 kB view details)

Uploaded CPython 3.9Windows x86

dataprof-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dataprof-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

dataprof-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

dataprof-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (986.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dataprof-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

dataprof-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

dataprof-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

dataprof-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (986.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (960.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file dataprof-0.3.0.tar.gz.

File metadata

  • Download URL: dataprof-0.3.0.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dataprof-0.3.0.tar.gz
Algorithm Hash digest
SHA256 3f6c3996d0d11c649d111e065348590ddd8dd1197b0fb6f72f62fdaba725e607
MD5 fb024ca002149c20370eae12a77ca215
BLAKE2b-256 61026838dd732abbaec24e2030834487156acb86f07ab967636b91a549a8f382

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0.tar.gz:

Publisher: python.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.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cccf0d91c7767e56b7d0eba87eb84aa3fdec0543fe2e545025cbd1ecc1bb5b4b
MD5 2d980eca1eef6e2950dc3c80a910ee73
BLAKE2b-256 bd5d7ac9ab00b1f13f9580264c75d003e16f28f9c54fb51dd50c2a3bd7b0197c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.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.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 652bf4f056439eef45fbc0cc7f21160c60e1f4a089a172dc6d626f6a5f10ec1e
MD5 19a6bbfaa0334a04cb86af73a6c058fd
BLAKE2b-256 ea94aad1b45c1375d9ce3d31527c789b5ddf46e755e7a3a0062df51109f8b1ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python.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.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 945478f3a8de4af353f6819c7cdb40fd354da9b9be312eb185c1d521abdd506b
MD5 625d9b3362c5dfbe2a721ee5e2d1c981
BLAKE2b-256 100fa0551a0f9ac7b8cfbffc3ac1bc995614d3accc2cc83366626032948d96d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python.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.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b3414128855acc5dc38bb87178687f471752ffb11a8a5641328a9dd8eba4e28
MD5 49ac829574c09a7828b756e3185f9cf0
BLAKE2b-256 7cb9bae3437c567b99df3087be45e4bf95c9de21f529d7905c8fbf55d0f68143

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python.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.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adfe419cb96479ea1ea5f2a937f4f0dce9b273f06d55ee6d3bc353d6a7d9fb2b
MD5 93e85569a9b0f400d9cfbae7116c0bda
BLAKE2b-256 089b433755e862b00abc2559f1fc18820ba155c629427aa8050e81fc74e28871

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.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.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c54f403ea6fdd709e16b7f23c12fd7c5912ab3d68f0726cb1aecfae3d92c282
MD5 480b5e67eb9e0fabd513fbea583872b1
BLAKE2b-256 9a3c1fff4fa3a5caca9adc5bc90ce236a5ef0fc723ae73f6cea2e5ff317e3562

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.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.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7fd1fa1bd8f45dd42a9dc0f8b46c4368faa0592b2a35ae9110879e86db95dead
MD5 8d8da7d12fc8b194cf419571f5e08813
BLAKE2b-256 95c25a11456f8792e06981511c8159abe03b990c541a5de4e59da0851447c6ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python.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.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f980ed5105eaeb6adf6b08a603a64ebbfb6b1482b33d23aad5d4f6976bee170
MD5 4869a3cf9cac3babe144dd60896d30f7
BLAKE2b-256 d09fdfd46e4ce2697eecd89b891b849b8137f755a31072dc7fa0dd500d255fe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python.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.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99c36b3ad4ca08dce42d206efc2a6779cb69666de80457c83bce1bf45653bc34
MD5 005f72093d811d37e5a7edcb04b4bb63
BLAKE2b-256 094aece7f322737d5c1a92d610e1cd73e5024653881c4308fdc83eac6b7edb39

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python.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.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0e17a3666ffd3e9a9528df534e74c37686d25102e7692849f3ccb65735356cc
MD5 761565a85fcf300b2834c1c17d7359f3
BLAKE2b-256 03c694b9cc902f1352f0906edacc947aaa3891742bb884cae55ba8efa50050d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.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.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b29d829973e5b7aaab6d831ed5ca576740f94885eb0e666856eb2b0849849e1
MD5 b019dc101b1085fea575fb20982953ef
BLAKE2b-256 16289bc651cdd1e8399e1da423f3acfdc201e5e5b21824874a44c31b1d3ff59a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python.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.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a6feb0e020c6335b0b68deb1b620a3501bcc4b76a04003e09178790be1f0ce2
MD5 b4466669073511cb36a5197b40cd6410
BLAKE2b-256 5dd0817ca0f3711913217217c37a115ee9017c4c5b7d4e78e66b4c0c650d5b93

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python.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.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4774d188c857b5e427bf2679df8900e05e6f84b6c151fcfeb37d71f1341df71f
MD5 8e82fa3fce1d50ae312882ea94463b9a
BLAKE2b-256 64326ce5ec802e95c3fa00ecd22cdc27aa5eef4fa11e458503562aeccf5fad74

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python.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.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e009e2a738976b870bbf3efaf192d23d09dc1d4484a7a1867865e0030d49c21a
MD5 c4e3df79c9df810121527d148e8c5722
BLAKE2b-256 75081d2c89bdbfa8069da812a3c74ca6a9c52f3bc315c62310eaa809e926e463

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.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.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bdbcf699d07c1662e326fbcda10b716282a0cd13ca9ed406674455eed340f5cd
MD5 c7e526a6796037ed4cb98e2754a1d260
BLAKE2b-256 9423736c96e1c3effc49cbcc75f7e464f9f525c0d448388f6fce56a8047a8d42

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python.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.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d910d6272d131692cc446768b0994074d3888aa203508ecd6b0f5d432f80c30d
MD5 7b965bff846f19d2ea14178a90fa0305
BLAKE2b-256 d0d78cde4ea179888c0a544cd7ce4377b8f588b279a80097f4e775ed8ccc959d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python.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.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4548386590462cf19914220fb94a8c16f70354865de940791580f4c439110759
MD5 1be194c526b8ba129f9fd18af5cc7c8a
BLAKE2b-256 34a65f5c7f0bdd2fd4cecf320ec2bcb18e9821cb90bd55c8777483e4f219fac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python.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.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f503a280c2d78f7a60059c358d08a305c1c5c0334055d7444a370cc8c75b0f0
MD5 3e833ac34719ddd00f9c629061cb8781
BLAKE2b-256 d2bc6577a26adc6ff98a2b4e3ffb318cb957be6abf9413ec49ca1cee39ee81c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.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.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 816.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.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 68549d9e6d36b88cc702452c3806a2dd38486466ec3d3ce43131703b3b762f26
MD5 cbd61233e967864da14831e11c5c752d
BLAKE2b-256 ecb6e2f4ba89c8bda93c5aaefcc09d2f95cb05f9e7e98ce32a5271fd6120339f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp313-cp313-win_amd64.whl:

Publisher: python.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.3.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: dataprof-0.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 777.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dataprof-0.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d45ec6edcdfe69df3dc78cb63d3eef9096a4b66963546c8898400bc023c34968
MD5 ee9d0fffb7d582f22df7094c6d321eda
BLAKE2b-256 678a4bad802f189136d4e922aaea37ca67dd0c2ea8c81cbf53b95bbe760b684b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp313-cp313-win32.whl:

Publisher: python.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.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63ef4078f884151eac8326ca121a6c303359b0f5954d778572d2e2d21a97bfd6
MD5 572ca2f20412175103527cea83b8b306
BLAKE2b-256 aa106a42b77a2018917d97eedad02f177ac17caafb30206406dea5f5d1b93111

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.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.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6d4e6ea8ae4afb11a3025e6f26b87975459aaf08cd1d3ead5b0650bf80497f1a
MD5 2a7a4667b4c72467672acbe859d9d250
BLAKE2b-256 2496f1f458f6645d0a2a225b0f8bbf7b9b9640646fc8704f3acbcc37022545b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python.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.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b07c4c0b7322392e8deaec2f17b6d1dc8c1ce18025d7da776048867b3b80ae0
MD5 7647bf8e3b8e6f52cef2430fa7174a04
BLAKE2b-256 d4e1735088d67e75aef3e1d7986ad93b2547dcd9f59d7ae9a598e57a0fcd423c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python.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.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b00127234da1912dc41eff101b062cc95d192db7bf27d2f257712bc47e11fe7
MD5 6841332b4db0063e0cab2d196a210320
BLAKE2b-256 a8075f8b1b6124e7dc034b34ee1e975f3331b753e93d482b4717216f98b2ef7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python.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.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c038e5bd81f7f2831bc0d95d7a53e989a37fed99284df0df1dbee8eeed3a3ebe
MD5 9b8d4180636dd9bf0fbc1cda62c52fd0
BLAKE2b-256 ae2350244dac258c62748f7f71bab01210802d1c30aee1be4018570c4e05c769

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.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.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dff4affa7bfddef724e3033381fcfcc41dbe435406d9b2f2f5138372058c5495
MD5 9c0062feaf151f40f53a33972da534a8
BLAKE2b-256 07a19f31567eb8705db78bf8f6b9449ca88c3e179b18868378976ae92b1ced6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python.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.3.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e92c04b4aabc3ddf202b627946a3c396caf6b1402177ef954014831a616f6eb2
MD5 9ed044bdf3c66c938a59f000edc3c9ab
BLAKE2b-256 fe999639a06a501e2461ed93fed2f8a4690ba31948f8aa94c966ff1a8df1fcad

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: python.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.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 816.6 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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 70ccab08a87f71fe72833a3058ac3f5d0bb6642b622d360dcc307b2c8143191b
MD5 c28ac36915ad2d4dfaf1c0c58f5e98b7
BLAKE2b-256 10eea03ed71357dbec416bfe6656fa71cba7b49b07bca00473c917e9d56a7611

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp312-cp312-win_amd64.whl:

Publisher: python.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.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: dataprof-0.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 778.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dataprof-0.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 08280403ee69f022037d43e1485d8a2aeb496f3fa7249cb80af8a9d521ff7494
MD5 d614caf4c797a6f1f08de7d0554c1b49
BLAKE2b-256 352f686dd9a086ba8bf2dfd6b2e5330ea8301ee365df03ba396f231fae8cd993

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp312-cp312-win32.whl:

Publisher: python.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.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d635bcb3b7485ce5b2d9736decd6f22ea4251d3d85b53c12e96e0881dbf4ab7
MD5 7303de69ab1a0e27e98bce041a47b3da
BLAKE2b-256 4898bca8f9fe531bb033d8c298df3fe481dc2dfc016ce2ee5e49761850097c77

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.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.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 158e01573d9db13a8fbca35759fe029dcc6b0736b92620a15fae5747e62c1b71
MD5 a84c7fe59c29ad0bca2692c4722ce3e6
BLAKE2b-256 96aa7707bc3e302f254a0f8125a5b35ac6057efb725e3f6e177825a90e089777

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python.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.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ad8e6e7708d7dbece85876b58cf4404c0665393f3565c382afbd65bfb28a03d
MD5 992c356ce1ed9b8ed94b4020eb5bbfba
BLAKE2b-256 add9d7696d87f2491635b0332a49b423d0aaffefbe195f4c6578199e1ad14c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python.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.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89baea97624fa376b9e13642f35ab1195a2dcdcd17b7c2aab33cc942f5e802a3
MD5 a63aecbee18eb556cf04ea164075cfc9
BLAKE2b-256 1518a11aa9497fde7e8d522751185943ff9e53da9c6d872354c872a2ae9e7214

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python.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.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24e4f5e7f0d658a0e347f49fe56bd2cafad0767ece0af453de9b82981fd5c5c6
MD5 729f761334174272f87bdd707a54c0be
BLAKE2b-256 2682b6b223ca899fc383a53995dd73c2e158f475cd56cd89b1b3f0a9daec5cd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.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.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 798c3fe1c15120e6515ee1de84887a1ef66dce8209c105eeb28f3f88bef30602
MD5 d63f17bac32e74f3942f4504829b0f08
BLAKE2b-256 7e6fdcd563b8c03fd0a38e3d8cf5db227fa79aa51489f91c2520f198ed87b061

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python.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.3.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0ddf662ccf38a3ff0bb600e103b6a012506b1421b1bbc56cf9f04cdb36157943
MD5 ea8d0c607aed2409923a849742f6a68f
BLAKE2b-256 a2a90faf727c188d2c5f88a399addfbb66d3ba9a1685e9fd5dc4c7f434dc11e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: python.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.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 817.7 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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 276c04ac610936507c4597d35fa26c2986b1a02f7beb5464baa244a409ec207b
MD5 5de3f5f514fa346d1a0a80a52cdae799
BLAKE2b-256 6af1a466b2b5febe04574a7aa0f09f8eb817ac0222423aad8c3b1f2281b1f978

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp311-cp311-win_amd64.whl:

Publisher: python.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.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: dataprof-0.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 779.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dataprof-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e5534cb8a973df62bbcd9db51773e7de3f24818c3d14ca85b861d4473ef17c06
MD5 ba89550ab30c7a6d84b9afd85e26a506
BLAKE2b-256 f399aa378cdd37a9607e1bdbc6e7dda4418f12256d87ce8c3af85cb9dfa137a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp311-cp311-win32.whl:

Publisher: python.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.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24b6df6a223725d4d565d01752157ab42df548258b807d03997c700b896dc2b2
MD5 9698a943d6e2f0a7771f0ec8ecafb44f
BLAKE2b-256 7ecdcc2c6ed4e78ab66879fde628eb96f600a130e14402340eaa13f12c7918f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.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.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b74f96e5af42a26b527d1297abcc6e6aeb587a51f047e9fdeab47a670344de0
MD5 64c63657a5645b353c6b3da327088d99
BLAKE2b-256 6f12e2c7e2738d81bad2f8a66ea478f82af6d8e9507c6ad9f729de1ff647a579

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python.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.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2908c7f9a58cdccd2d89e6a39362290f0d711a0f7644c4c2f9fb0324807ac6ba
MD5 e226ebde8aa26fe8b8398063db121a7c
BLAKE2b-256 2641595ee944dfce9fd9815003f86c7e67cf2c26188ea4bce750393456fd10b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python.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.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce360ec7246bb3bbb8ef928f747e1784f30cb8a7aa6c0402604c8cb90879c49a
MD5 86c7ef3a5e17e633f26cebdd721da6ac
BLAKE2b-256 b44cf141a3f5d10304f68be9390ab9111edf2af275316660de75ecaa2f537bef

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python.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.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be069287b184a09bb87c4ef25b89b13df2ca2f750d0a9b67faed9f212766eb5a
MD5 6d3554de7b613d9ce118ebfa84ae7c84
BLAKE2b-256 b7c263057ab3a492c641e49c976125fe60ae5e23588465d898fd8f0da1d3ce36

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.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.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d6d7d64fbfed48730a2b7da6d0da78114b05bf3b7175e8a5c26dca6f4ddc1dc
MD5 27b6812dc87e376c5b270380ea9341fd
BLAKE2b-256 62d129ced384746a2fc3f7ec1c5a86801084b86116365cc03752347d1882f2bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python.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.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 269401f2106ccbb9cfe8e68d4a2c3b564b870e8ca8e151d0b56bf294210afbc6
MD5 49fafa5668ef5ec711fd349f469c3d2d
BLAKE2b-256 f155ba6ea66c6821972cd55f3329011ba3cf15f40039f9c4725f3677698e89b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: python.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.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 817.9 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.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 33d50db47ff867c0a76f5983facc95dd4451baaf1d2e187d9648dce65db25ba4
MD5 4cf8b7baefae171fccc71bc2300c184b
BLAKE2b-256 ad75144706fd5c25bf870442b5c61423750ffdc8f6f5db9839f5465c2e6c7b5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp310-cp310-win_amd64.whl:

Publisher: python.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.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: dataprof-0.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 779.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dataprof-0.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1256c6522979a6c657405415bec77325a8c1a376a09c414679c92d64e58eb709
MD5 aa47ea105ec573fe1a5fc4882b4dd8cc
BLAKE2b-256 514413f7ca96ffe4a7da965aa86aad0a1d402ee22d22b066e5fac1d0cd21845e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp310-cp310-win32.whl:

Publisher: python.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.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98e6ed590b3cbaf5cceec796709a024f9f7360c2b87ee0441779767f850ee515
MD5 27c93a6e6e6e2b34f354bbc9058e5474
BLAKE2b-256 00cb3c059f89abdcc079935e173bb9b72ec1b480a97a7c784086c886e02afcd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.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.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 818cc2c43510f2f9f4f0dfb363b225e162d40f774480e1ec9745684315c7898e
MD5 872e9d4d3188ef52db1dc42c08126064
BLAKE2b-256 7226bbe726867a0e450489d5759b707a2b1c9a6791345dea84721aa5c2256b64

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python.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.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd9855e0c2305afe2b0e2502521739890a9bd6481c50a86ccefc63fe79d062a2
MD5 d68588c3895bb6aff89f9add05ea14ec
BLAKE2b-256 7ef1687a0e56c9458557f7e00d17de2c1a2563452b6b568f5bef8f6294952f2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python.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.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3937d29669d42c374e66c7abb59a6708233c0df85301549e1336d42157244cd
MD5 614db07c0e77cf0971419c829d1b015a
BLAKE2b-256 f977999469edaeee667086f8d3b88d5b0ba810c42843cbaf9c0c6399a847fa8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python.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.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d46a0cddcf8c35c1ca014da1af6d587b099a03fc55b69ed49ef73e4aa1a1276a
MD5 6e5037c519d71e3e0f47816ece26fb84
BLAKE2b-256 e15a23aa76cdb1a72799816397233a048aa04793ed8a3a2e0749a57e0b4d325c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.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.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06d0d943c98752dbbe376bcd10a2c4b14e356913152652ba6c79adf39393041f
MD5 1617a5eb5f59baa9e085e919df89ea1a
BLAKE2b-256 02d848e2628b058606f507df6e2d292ffe02745b9298e7ccb952848f2205d992

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python.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.3.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 310f0cdf1ef4b7e9ca6eb6eb6c2c2eec950042e734e9fff69b9e80b94a9d9faa
MD5 c4b56fafffa97e3844315e22eea1a61f
BLAKE2b-256 84ea377c6d741bb7638118187eab1f4a53de25eb7d75150dbe3e23fac00dc74e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: python.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.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dataprof-0.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 818.1 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.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 678452ac209690e4cbfd198d2c2eee8229f9e0e281c8a754eedb90fec009c201
MD5 13fce7e9e3f68ed169c92e1a7071fc33
BLAKE2b-256 0e6e691ace81b9ca0fa6543968cdd21097c909d0cde47641a18cae47d989759b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp39-cp39-win_amd64.whl:

Publisher: python.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.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: dataprof-0.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 779.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dataprof-0.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c52bdf12c23b31fe9a7b5aa90038e9d1062963dc733e47b174c4c2f7ea17a5a8
MD5 273313a381d226cd98b4f87884968c88
BLAKE2b-256 83d720811a5ebf4dd232732f5e21bc6a90b1819b186da6b9c1bb45a89babfa39

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp39-cp39-win32.whl:

Publisher: python.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.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed2b543a57c78cf851c58d6eee9472879d16210df800cab695cb851ea1140c45
MD5 6aa3dcf3943ca927afc476003eab4fff
BLAKE2b-256 f7bed3ba48cefab0754cecf847726761e9bf40da3cd8f1064c79a7a8f3164a18

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.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.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8610fcc7214759f7f54a256198651d42c3be4b7bc7bee7bab0bd3119d6ca6d6d
MD5 4d238c1b2cbc43301b2dbefe2726dc46
BLAKE2b-256 9019c237a788e7b9b2a96c5cc6d224b2ed1a8767f3c6c16db8c876e7392bc687

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python.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.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c5c7ad79770420fa767e460d168bb9562841a5e071eeb3e3edbb8106cb1426f
MD5 d1c878451787f594083ed8cae76959a7
BLAKE2b-256 9a3f74ca4086c98f424113cfd6218b24f0a2e911e5f691069a66f119fe810d93

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python.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.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bffd5888e2b9cc53e9a247214f2bb9d390cefe25f16b8a17ab1bef9b7b5f2a91
MD5 d28ad530858beda6aadd19097474a291
BLAKE2b-256 1be3b3a7c8bdf3b41793995dc94dc0694ff8195d09911d7d0e4814409122a4e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python.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.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dedcfa7a15f0816e891dc349f16a32f3e64f675875de33a9604224c7519ef608
MD5 4915dc89ca49721cdd6ddbe21331108b
BLAKE2b-256 a8f9604a70aaa13a9dd929ece55a7ae67c205289608659e4e23fd29adfc065b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.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.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd6ce972426534fc79a348501ccc55cdab483084274a17313a545d443fd822b4
MD5 aae9c9e4b762e52d4bd9cf867a46a3db
BLAKE2b-256 c82708aaa9d8f10259e854da5c8004e70b3af4b54a6e965240e7d04673eb77c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.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.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 78e32cfc20a7c1032c70bc64e364b378bef7f05db582c8c7527a090ca7a0d4d0
MD5 aacabe6b7779cc4d459165929f5548b0
BLAKE2b-256 5a0c8a25d556c2674abce257b7c5e5635bb606c3296c47df4696baa81f4f8a1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python.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.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 faa329c152b91d8a5637d5cc39f1ea3e03e67f2b66b0544d7c072450c9bfc9e5
MD5 5dde7bec54579572da5115f47076fb7e
BLAKE2b-256 30c7f19da5cdccb7f920df7108b45062fb9d0075d1945048180e94a82bf61832

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python.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.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b10b2ead95eb2d9f4f1878d4689fc2a455f34dcac1556b2eb40228fa4b033ad4
MD5 c53461bac1c2a14fd95ec5b5d034bc28
BLAKE2b-256 91e985e806d4ea0ae36731caf3a4829aba1ba07867f73830704238e403c02b2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python.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.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1947098f2788d829f24fb9f6b56adaf460c5ad3c26d6c7c3c1d34f028dba04a5
MD5 f4fd1ea9666380433dd0b1bc8b970718
BLAKE2b-256 050944664106723c4f2c02ba7d4bf1a3cbc31f6b34cb94a3c6bf0a646d53c839

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.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