Skip to main content

Fast, lightweight data profiling and quality assessment library

Project description

DataProfiler ๐Ÿ“Š

CI License Rust Crates.io PyPI

High-performance data quality library for production pipelines

๐Ÿ—๏ธ 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.1.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.1-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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

dataprof-0.3.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (986.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

dataprof-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.3.1-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.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

dataprof-0.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (987.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

dataprof-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (960.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

dataprof-0.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (987.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

dataprof-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (960.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.3.1-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.1-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.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (982.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

dataprof-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (956.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

dataprof-0.3.1-cp313-cp313-win_amd64.whl (816.2 kB view details)

Uploaded CPython 3.13Windows x86-64

dataprof-0.3.1-cp313-cp313-win32.whl (777.2 kB view details)

Uploaded CPython 3.13Windows x86

dataprof-0.3.1-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.1-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.1-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.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (983.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (957.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dataprof-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (858.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dataprof-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl (943.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

dataprof-0.3.1-cp312-cp312-win_amd64.whl (816.8 kB view details)

Uploaded CPython 3.12Windows x86-64

dataprof-0.3.1-cp312-cp312-win32.whl (778.3 kB view details)

Uploaded CPython 3.12Windows x86

dataprof-0.3.1-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.1-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.1-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.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (984.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (859.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dataprof-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl (944.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

dataprof-0.3.1-cp311-cp311-win32.whl (779.2 kB view details)

Uploaded CPython 3.11Windows x86

dataprof-0.3.1-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.1-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.1-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.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (986.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

dataprof-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl (946.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

dataprof-0.3.1-cp310-cp310-win32.whl (779.4 kB view details)

Uploaded CPython 3.10Windows x86

dataprof-0.3.1-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.1-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.1-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.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

dataprof-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl (947.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

dataprof-0.3.1-cp39-cp39-win32.whl (779.5 kB view details)

Uploaded CPython 3.9Windows x86

dataprof-0.3.1-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.1-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.1-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.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (960.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dataprof-0.3.1-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.1-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.1-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.1-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.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (960.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: dataprof-0.3.1.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.1.tar.gz
Algorithm Hash digest
SHA256 eb88c1d18728e637461ccb13274404f887ef79d502f53ffbd248f4a724d91941
MD5 d3d65de4f3f8d38859ee39415638b74d
BLAKE2b-256 a582f1c6ba8d85eef7c4ef289741d2823d86066f4f512f89e111793ebc75dda3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1.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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80d1e74e303be907902d3009289942f741568d16cb3d47ad91d02338baa20d42
MD5 96b9cf9f72789ffcb17e9b42b6a71db4
BLAKE2b-256 64870d969a817479d36ecb87c9ffa49420af657370e1548b6e492ca3eabb4328

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 339f1687ee6414448093121ab417805b46ed816cc06e142aba4a71d8b8d79f3b
MD5 3e032c7253e201de8273e2b718e46583
BLAKE2b-256 0d1e73e6e93ddc244bd03eba1b2214991dd343d97a4ce701fbe92a9a6d49ea39

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc095241276b164c167069c1ce1504d9ce9e91944bcc8175bc31fa5956e73cae
MD5 5f3a5ee7dfb27971e31a4e487c8e5e7a
BLAKE2b-256 f60499d4d4c20a536292b69eb391d29556385937a7addff4b443d1d38f7f01e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 95d268be8fffe656055854e0d6aaba9b93be9ad33d3fa2ffc295a136a73c97de
MD5 23cf6d4a3a768afb5bf2eb8092cfc8ab
BLAKE2b-256 0e5d0ad40d8e50e5309bd3dd5fe24954cec32c5884018cd85bf4b938bc3dbb77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce4cdc80bf30ffac20d304121b049a0f693ccc832ecb7204c5f6139e2f1ac838
MD5 63cdb8726e4bab8a636655a17197660d
BLAKE2b-256 06d06d287460e2a5117e2d4e117da42d3a6f4200778d0ac55cfdde4c8606d026

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11432536fd721ece3cfec7a714de4e422883520ad619351526354119bcaab7d3
MD5 17397589dabee54d4458456d4fb07c2e
BLAKE2b-256 7c71647d47df3f2460f007fe8d5f1da735e7e68999c946ed8f2d216bc643ec89

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 51bbf6ce9650696374cbd806f405e5cac2f90dad66a62250567ccbb76e67bca3
MD5 4c5e096c9982b841a6819ff5f520c5c5
BLAKE2b-256 da09af272fd9730248fa7464bdd8a691c435488585d7a073674ad0f8ab4a5631

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 df4f5228b0fc66e33e9377daace926aa1d9429702d121ca10817031d63db565e
MD5 f532bb96618be3c14c3cc980dc010925
BLAKE2b-256 0f219fa3ce8666923882629b029705399a7d1c1445971a6a6d20629fc1bdbb4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 239a2239bee56fa389c20155e968412df13cf508149bb765e52afc7c313b4cb6
MD5 ac5c91a6109dbaa04c54daa812cc32c8
BLAKE2b-256 4b9d30848ffe1fd37c96dfae3e0e5caf49c6bedef3c9210b79a863f2df137001

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c375adad32006ec9e9f04365c23b862c3d9c9fbb89743d07b9e1a915a9f02bf
MD5 e4a6ea22d452e4edbe6b3e5a47580034
BLAKE2b-256 8bec6b575a038e4ef43de424535f2272ab9bc9b9ebb65eadf1dd0f37e352af34

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88a9aae10e2ba79a6d9da3c457fe56168b918ec13f76a9548195e6131e926a8f
MD5 57a1043e1a06335503c342f985fce487
BLAKE2b-256 b15d5fb45672fe76e5255918585b6ae926ad1b901d1f4b7330c63059947f5494

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d2c940c240ad7ccf0655f169ca41a999168ffc9990db28398e12829079b9a4e
MD5 692c0a8b63fa9a02873c056e68e9c354
BLAKE2b-256 bba9c984b9a0dd060b60ab5a7d8342505ea6028309cbe56238f443c61cf96477

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3bc8c106c840ccc93365a17f6010831fcbb00a6cdc9c3e9dbe1bbdef5e3d6961
MD5 eb380ab5dcfa6a89e57f41987a622e46
BLAKE2b-256 59fb4ced072e285e7bd88d45c46970f38bd48351da170f58ed82c6cdc7e2395e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e93ae2985ceb85c9d3f078fa41568b1b8e6eafd1e772ce552a19beed815566f5
MD5 83b8f47ac8d9eab29b6982396904455f
BLAKE2b-256 29c8a6f5fa1c693bb06dc0ecb6c1cb61b3c001e06f5803a408e7370c63cde168

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03e34b0c194a38b6fa8ae7e87e4a0e652e082790663f5a091a3887dc0e5003b6
MD5 396c019ef2a3d6eb64c1556af92e5143
BLAKE2b-256 40f87485dd7b13db0207316d90d6442f0a526ca54b6a485204fea89c14dd7e1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 994350092008617e7d6762ff6621ef0c80057e4057981082ec26f48e4d2f29ce
MD5 e0028255997b87cdee083b8c988c2406
BLAKE2b-256 5a699664d857f6ec43e47a346899d185b3c7c07f874f0102ac30867a8fadd656

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 14ef2f78ff8f1b2a803998c002cf5f9a880da05e816ca88fceab646c638fc17f
MD5 8b856b8e10da254e5ce576b8d57d0a0d
BLAKE2b-256 0d7b8aa5e993a72538a1d54b5926fba4fd074ace6514b4ecef230b7d1d13f75e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d22b0b3121aee197455dd018bd21d5dd98a80739612bc5453ceafbf52fadaac
MD5 add1133bb387614c1e0b8a667e88daa4
BLAKE2b-256 d1a727cb6dd0421958e4561e0b4c0f71a44ec07209ff07bed3815551999eb4f8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dataprof-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1ced6979fef4bbe3ca659b91c1825ccc03fb0155c139e5292a3ac2f6524c423d
MD5 8ec1c4c88f089c93f581d5793d600bd8
BLAKE2b-256 33491abc219ef0d9893b60ea5aed2812972b53297689c5873b934fa1e31c6997

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: dataprof-0.3.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 777.2 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 42ff071e3384f61abc3dda641fc83277f4c3ea60ac018a8ac27d1fac2c06a140
MD5 5579e3eb98ede652960d5764fe4bb1f5
BLAKE2b-256 ee33d4f1b198507a8d3e81c7cc160c7d5df9768af8db7b0742662cf057e56f18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8f158121dccbe77b86880670bc33b7698dab2306aea466b12a1bc2feb59aae5
MD5 344fd6276054158cdbf38b7db2ccecbc
BLAKE2b-256 64fe4e241dd71158e982add228efa7286c18b4de28db03aaa233bd37d1deafac

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3aed990f90997f723aee07b7276a3a0f24253e8cffdd7a05470ee15908d3729
MD5 78d4668d1061739f5acc015efafb9c7c
BLAKE2b-256 cfd164ff241ac16d3f7971bacce7ea95f0436230940a5a0285f3e5d037c3df02

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f0d1efd7e7ad5c2fa154895b358019f7de1918a6295531cffa98c0ce5c5c623
MD5 dd882359ebf566c9794f05583ed921e6
BLAKE2b-256 26656c19a041da8f6b046dfc85e93f465c4a955f2539b1c5d1784455751eaf09

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c4f66176683b6e4b657af530838f74b6a29ada1f98c33201fbd3056b70ac562
MD5 792d5563fa3e3b31540dcd5b193932f4
BLAKE2b-256 ea56da5fc28e82cf7b3d33cabe8c8c5ff8ac7d55e68641eccfb985868b71c090

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0adb20ebad86296dde55f5d669076686fac2b92dfaa99aea3c6f0329b734c16d
MD5 648fd080f225f4eebef216e3608b736c
BLAKE2b-256 218ba903cf034b6cea08eeeea6cdfd04c4e54f961e2eec7eec65218038eeb0cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f932e39af07cb7071a5898f88a006c598088c95d6fb5f6f75322b391e54cedd
MD5 3021a2cfe1fca7220e1016610e2a33f5
BLAKE2b-256 df711e80b22c4de59e506f32f922e4c3274961f6b417b5413c5933edf2a2664e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 797e48be2dcccf03862fc652606439fe55716c9ef836a6f4165843f39c03d084
MD5 1171f9c655fcd58e2f2ec754dc16d250
BLAKE2b-256 5ccfbf9dbe0f9d9996cb28cab3cb8dde80a1f262b7d6b316d11026383eda6028

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 816.8 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e4a963f4d3c601b5605120f145523c54c2e9ff929828537224f6368e0b7d1d94
MD5 02c0d07251f9e22f135fbb7d9c4093b9
BLAKE2b-256 30e3241397ce721be36a8adbb3b83e9e3522754ee6debfe228ed13f04617f70e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: dataprof-0.3.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 778.3 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ec3bae4144fc8b28f0709c4e5da047c1792b22cbdc7307913d2afbf39802b163
MD5 f2fa24b24c74738e0230b64ad20c64ff
BLAKE2b-256 9f0deda6ff37848c01ca91e2152e1cdcc76aa690756ecfa94e0061fb5a5f37c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 291c6b41b829685d77ec8dbb196a80987099c1a955847318fa3ad3f454d6b38a
MD5 9ede86e8dd657f5137de618fe645bba8
BLAKE2b-256 8b1e51cd775cada9670e9465aed31f6894ef0d987b8563cfc1f3a3a4f3b9562e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6651e6484fdd94fdfe56c74897dc79183c90344acacd8d75ce67babfe6daa8d
MD5 4eaebcd6cc4b7fb259e1b5522a14a280
BLAKE2b-256 7f90ba972e5447d7d71d47cbf6926c1a841f22d4e64890078d0a51c79d15827b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75e42aebf2413eacca1f8cdc2e866110173237629979aad1b82218ed0ac81a9c
MD5 36225db0bee55c1eebf0661065e84cef
BLAKE2b-256 a6c6e9b878f799a900b5d7beab101597505fc9835caa798c1c43a54817c455b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 834e6ecb094138e68ac53752526ef9b787e47a4254898c5e2dc45b3ed6a3b48d
MD5 240bef68a9e9ffbd8e0e4975233dfa6e
BLAKE2b-256 c917f6171ecee95b94eefc53365ce6b1b25d0b30f45b81b30d06d117d0b6936b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a248a6a9b53f99a4304b19aec9544213976aa41715d67406fd561a12270fa335
MD5 a765a946dc86ee79a19bb27f1d3edd26
BLAKE2b-256 c88403db9e6d133342691a9439564ac823a394a7e2c0b87add4552c41b3a7fbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c4ce101331c6771b25e19ff31e1b1daf252b3a5bf78cfb43cb11650b7ee6acd
MD5 db4597ddb7eb11cf5c88746b2047b3b8
BLAKE2b-256 46d619024f3e5a6412935626edeb39380fed41fa911c4aed033d5b550bd972b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2d716f63091eaf8235e7fd776cd3a6efba45569be3a2c36f5f643f8ab1f5f79f
MD5 ee7d67c407f1b21bc6947525d8e79da2
BLAKE2b-256 9e652ba972a50b2899507ae7d297e76b9d7e4cd052692c65a4e6ba49a8cb7dc0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.3.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6e78fcfe08c5c0a18ac0876209a95e80acb372d7314222d0f4c36fe0802d343b
MD5 6ad72972f550a58650c319f0bbc6d670
BLAKE2b-256 92773994507e0ea78a9b288ef55e2225c1a4229a2dd9f53308f61da6d1e56d92

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: dataprof-0.3.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 779.2 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f411d6173bef2dc35437b9e62f9e7439d2c9f3609457802670c05aa6e39af767
MD5 08f111a61e7798aaa5444fec4bc21379
BLAKE2b-256 8249e30c509e2dce6047fa259f43cc1ef2bb34105efdc95210e0fe6b295d300d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e18beb31cd568fd03108221ed74c8ea063fedb0864306640a17436e47587667
MD5 bfa8701787142e9e318aec9ac701a741
BLAKE2b-256 cf82ef63644600fc52703b60933fcf69f1ac44b6021ee7dc089dcefe71eb2fe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7febdeb8f4311cf7414bc971ab970c6de5070320fecce7d183a14dd1862d3a57
MD5 9c6b26427bc34be1317168d71d7cea07
BLAKE2b-256 0d98c32f4c1bb5f12389fff38aa936eafd2005a483790ac568c9c45cadf83c77

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d65cec558302bb0061a61bdd3ca1e70867d04e9218391c9dbe0abb8eb73b85c8
MD5 73c9dea70e6ba071f2295754c96c1ce6
BLAKE2b-256 1387e4faa981c08d0587edbe6e44257c2385952277998ebc82b0888d6a9c55c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a1089108d76b5eda3ee9dbbf85540ea00cc07f94af7a68840cde67d0ad58e7c
MD5 3f22396aae5a31ac9114f01aa2748d65
BLAKE2b-256 6f561fd56f81580f0eb612caf0348cd6845a5f5ee3516f42b0c447f1607631c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd0eefd9b3b69fb445520763f2f3a35de26f60ac5088544a3f48ba9d84fe4321
MD5 af86ac17b8fd83239432cf997866c131
BLAKE2b-256 0b937e80f347088fb7ae98d0ece412f94dca057c16adbdc2426ca150b651d06e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2f5d6f70e3cf37298cdd16f52c4d1fe88fcb738d0f3d2ec019f7a729e6e8385
MD5 559b655c5bec82e1bfd11f904871c933
BLAKE2b-256 c444f4299fc4c0e2ee36967320212b12a76d0e85053439c670b86c5a61bb801f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b4818185145adb4ca121ba5105bf2b3a63721503fb8e0f9c46cc25563baa175d
MD5 0bc630799a858220ad3e47e7f0b82df5
BLAKE2b-256 9fa96f26a6bf9d4c0f481ece20f22c32ab32c9bb3aa584235df3d589d920fbdb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.3.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ec2074b3937c5fbad52917edf5935981491973fb20241b671f1d775c89bcc903
MD5 83876587f8e3822c5cfbaa97a5a6a0a1
BLAKE2b-256 131b8c4bef4bd3588ce56f740de0d103d03f70ed8c29455a3ea65868ce8d6ecc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: dataprof-0.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 779.4 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3a59c6966cb22c5c6239636974e2f0f422bfb04e5f4d806cbdefc945626cb3ba
MD5 4529a77537957b7211142d495b6d7585
BLAKE2b-256 fad8aa53cced3ef53a30aef7bf425afd77eeb93896f14ff1c90bf98661adbb8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38bd9469b078d985ebc754eb53827da561cbc5913312508a00060f263d9ba5d9
MD5 7e815b1a01fa5f418dd1d54c866c5b81
BLAKE2b-256 507aed32f8680783c68bb565fbbc04626677909d3713fd0c83cb442b41f002e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b14a2f67e1f3074426b544b9d8da62de1652164f6083a96de6e8c096890206c
MD5 6c90aa8d9f4834f63f7c45f84fe09cd7
BLAKE2b-256 7214528e6e91cd9b15375bcf00d68209dde823f816068fb98e7fa29e59433f87

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 64b12d09bc9e677bea3ebb88132a8661e118d9d5a3150403f009e51b3562d8e8
MD5 6fc246279faa068344af962b253739e2
BLAKE2b-256 199a606ea5bc52f76e82778c3d69322526926e478d7053cebda498aca6527cf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a9402cd2c50860e7f5d2214f94185c7eb4aa80dab75bb50c41699b325142a54
MD5 a4498b092f5534422b15981d058aeec8
BLAKE2b-256 ab0f707f0c71a030bf3352b47354063c27e0a29735bc1f0970b13d1d8e1aa230

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49d45a22298d9ec13ef68ffc29c9dd1f899122bd99fc3ab7ae9cf796bf6a0ad4
MD5 e0238ed68e2eb1e243fe2bd8d3e747b7
BLAKE2b-256 097b160fbb0bc189fb7fbaef7d0a5a732603955e50060812dd55032f243d52bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 703f54367ba718ff500a83da25aff21c400a491c9477d3d3af7115d4c120446e
MD5 761daa1d79003699939cfeafc4af8355
BLAKE2b-256 8bf04c452a3b60ac1cb8f9f65737247b46e1f4cc8c7a95b17423e64270091044

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03440018e78b755e120e84df40112efb5443b4196c92d14ea12c9546f90efeb9
MD5 ee94534e9232da0d29d0fa28d140c7de
BLAKE2b-256 0a3093688fc41175610d1a27ce44e4c1a01cf1ec56acab27a3216d8e601b049f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.3.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 744b6ce34a8551e19823e4416e088952883968860a20626812d3af20d6162cb6
MD5 d11a4fee93972e60a9f034e42437701c
BLAKE2b-256 7b160265f66c8f982dfb1f2166dafe35ef35f9c1a5605f0214c2159e50f08a8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: dataprof-0.3.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 779.5 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d39df377acb515a71555188851fab14c297c21ab7f24875ec75e4b9d3c28b6c5
MD5 a69e5298f5a07715adb11f867d29772e
BLAKE2b-256 ec34036647475f64080bd34f0a0b7438b0d33d6f5fc3ce674dd4b47c051d0834

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6efdffd75a296c6bd80df105a32b534f8820a73ac7054d69de23d805d70479a4
MD5 098ea124763a9699b832d3538204b045
BLAKE2b-256 d1217870786e50b7a6eff8472113e86503d3a0a23f90d8f639240dc10ea8b176

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f4bfc6d5a180dc76c9a5305a817f45c22b711afdfdf1b459fdfcf1c3dc3f8e6c
MD5 f6690ceb78672b0b3979f06f55bdadd7
BLAKE2b-256 e6834f4c44b77cab26512cc0eb401d8d231d9ae98c1d50ee051ac5ac1d551e55

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbb7f3fb98ee0d8d5a68b2e35d98581402c294f92e23af87333b1e80c6b04a84
MD5 c49de354a482ccff2e9b3f089bdf7f1a
BLAKE2b-256 91fb4b722394d22f82f1015649f228b5097b5ebe396cda7c006e80a6285f321f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eaf3735ffc88b31d0da55d2ebc49b4fed8dfe0c136a19caed78ef8be7797489f
MD5 9b876eb9d7131f8f0ea7ab3a6f59a5de
BLAKE2b-256 c22f21a0c662c5b17c69af33f29a782b4fa1b9ea92b45e7230acd1b7a9e52160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56c55dced998e288af920f44081043f95d537841e50f9ef30a5b9359c6d3ea93
MD5 3add324c6bdc418d291bc9e0405e464b
BLAKE2b-256 aced3da1aeab0f8a77ce3e8e6337dca82846ab32b54d9ae959059859ea46aa5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e502dbe97b10395f408498faf1ad8e2684d29ff9307d701232df9625035bb375
MD5 4481bd067f360728a65e06835e1ff3fa
BLAKE2b-256 9b57b480bd11fbc3a3433b9f10a9cf04b26f3967903d3c5f3d6d78d14c199e07

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 020c082502acb2c548bc4f17a5f33fcd95ee32d8bd2653b42f0065f00b64adba
MD5 7eebe8ba78682cfee77cad016cfbd66a
BLAKE2b-256 a85c0f5d600cd9b61b5195da01b4d0655f8040a65b406965597a0232c9ee32d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8b0809010627b8342287244006b262b8e202a877464891823181a49d9c883f9
MD5 ac90ae4bcdae040c15998241eca7b66c
BLAKE2b-256 e9a799cb4af89aa090ea035b4932222dcb5b393d6a5d96fc9acf1f35fcfb89e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dataprof-0.3.1-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.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dataprof-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d78d77755468881b1654f4ea0bcc4f6370403e994c5f22daa298a6682de700f2
MD5 de17ae15e34358b30972e216729a0d58
BLAKE2b-256 220ace01fd251479be2d257af99a8d29c7b4b232710f1bf1d99339da17a8b323

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76cecfb9c9c33a166099af8e7b2a44ff58fc5a12952bc789e0582980ebc2a640
MD5 52880bd153c98500854bc3b2b6f5291e
BLAKE2b-256 7be5cf012f2ebf3d56347ea0f5a7d39626dfbd9dce5229e1245f0247122524a9

See more details on using hashes here.

Provenance

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