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 โ€ข ๐Ÿ—ƒ๏ธ Direct database connectivity

๐Ÿ“ฆ Available for both Rust and Python โ€ข ๐Ÿ pip install dataprof โ€ข ๐Ÿฆ€ cargo add dataprof

๐Ÿ—ƒ๏ธ NEW: Database Connectors - Profile data directly from PostgreSQL, MySQL, SQLite, and DuckDB without exports!

DataProfiler HTML Report

๐Ÿš€ Quick Start

๐Ÿ Python Users

pip install dataprof
import dataprof

# Analyze CSV files with ease
profiles = dataprof.analyze_csv_file("data.csv")
for profile in profiles:
    print(f"{profile.name}: {profile.data_type} (null: {profile.null_percentage:.1f}%)")

# Quality checking with detailed reports
report = dataprof.analyze_csv_with_quality("dataset.csv")
print(f"Quality score: {report.quality_score():.1f}%")

๐Ÿ‘‰ Complete Python Guide โ†’

๐Ÿ—ƒ๏ธ Database Profiling (NEW!)

# Install with database support
pip install dataprof[database]
# or
cargo install dataprof --features database
# Profile PostgreSQL table directly
dataprof users --database "postgresql://user:pass@localhost:5432/mydb" --quality

# Analyze with custom query
dataprof . --database "mysql://root:pass@localhost:3306/shop" \
  --query "SELECT * FROM orders WHERE date > '2024-01-01'" \
  --quality --html report.html

# DuckDB analytics
dataprof sales --database "./analytics.duckdb" --quality --batch-size 50000

๐Ÿ‘‰ Complete Database Guide โ†’

๐Ÿฆ€ 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.5 Database Connectors & Memory Safety 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.5)
      --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.5.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.5-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.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

dataprof-0.3.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (987.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

dataprof-0.3.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

dataprof-0.3.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (988.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

dataprof-0.3.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

dataprof-0.3.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (988.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

dataprof-0.3.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dataprof-0.3.5-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.5-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.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (985.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

dataprof-0.3.5-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.5-cp313-cp313-win_amd64.whl (816.7 kB view details)

Uploaded CPython 3.13Windows x86-64

dataprof-0.3.5-cp313-cp313-win32.whl (778.9 kB view details)

Uploaded CPython 3.13Windows x86

dataprof-0.3.5-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.5-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.5-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.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (986.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (957.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dataprof-0.3.5-cp313-cp313-macosx_11_0_arm64.whl (859.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dataprof-0.3.5-cp313-cp313-macosx_10_12_x86_64.whl (944.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

dataprof-0.3.5-cp312-cp312-win_amd64.whl (817.4 kB view details)

Uploaded CPython 3.12Windows x86-64

dataprof-0.3.5-cp312-cp312-win32.whl (779.3 kB view details)

Uploaded CPython 3.12Windows x86

dataprof-0.3.5-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.5-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.5-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.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (986.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (958.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dataprof-0.3.5-cp312-cp312-macosx_11_0_arm64.whl (860.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dataprof-0.3.5-cp312-cp312-macosx_10_12_x86_64.whl (944.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

dataprof-0.3.5-cp311-cp311-win_amd64.whl (818.4 kB view details)

Uploaded CPython 3.11Windows x86-64

dataprof-0.3.5-cp311-cp311-win32.whl (780.1 kB view details)

Uploaded CPython 3.11Windows x86

dataprof-0.3.5-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.5-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.5-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.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (987.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dataprof-0.3.5-cp311-cp311-macosx_11_0_arm64.whl (862.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

dataprof-0.3.5-cp310-cp310-win_amd64.whl (818.6 kB view details)

Uploaded CPython 3.10Windows x86-64

dataprof-0.3.5-cp310-cp310-win32.whl (780.2 kB view details)

Uploaded CPython 3.10Windows x86

dataprof-0.3.5-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.5-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.5-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.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (987.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dataprof-0.3.5-cp310-cp310-macosx_11_0_arm64.whl (862.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dataprof-0.3.5-cp310-cp310-macosx_10_12_x86_64.whl (947.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

dataprof-0.3.5-cp39-cp39-win_amd64.whl (818.7 kB view details)

Uploaded CPython 3.9Windows x86-64

dataprof-0.3.5-cp39-cp39-win32.whl (780.4 kB view details)

Uploaded CPython 3.9Windows x86

dataprof-0.3.5-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.5-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.5-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.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (988.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dataprof-0.3.5-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.5-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.5-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.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (987.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

dataprof-0.3.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: dataprof-0.3.5.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.5.tar.gz
Algorithm Hash digest
SHA256 e3a8f62eb423cf2c2584e3a6b855fd3e3219cb9ee1d34d160f41785f7232dcc8
MD5 0e9fb5900c0ec093456e6caee9555cf9
BLAKE2b-256 210fd5a72a033d866ba83f1d68bac8635455a101a1697013f04aee425d4a3de9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60d6fbdad0d5fa82e9b3f2868eb2276a6e411efcce3f4530962602ae5930431d
MD5 9d0e19188b68c19137917e995c2ec449
BLAKE2b-256 6dcf321c3f18feff0ac8ede02f0f5e573578e0e2a57d5ce3cea71687bdbcc69d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f1fff659ba4beadb725af0463d83d882d7f05c9adc72f90e612bf05fccbf569
MD5 d06170aca3a787788274f44d2a180f11
BLAKE2b-256 03c1d8ab2b3622a49a71b685390ca8b215aa8585eff8ab86d7e77a863dc3c9d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5665ab3ce69990abf8724f99766a73181dbf598e48398fe3a9bc14e6c0257cd9
MD5 ed217d5a2e7501ed509f527ba0bd25b2
BLAKE2b-256 1c60048563721871c2fba96a9ad22f7a59be8634327fe321f668b27cc8b1bac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 72948384c42842b918c1e1e3f388aa814870094b65346745e0b236e300a234f2
MD5 df4fb16dd0985bdaac94c7d1be5d04c4
BLAKE2b-256 e6d1e2bb60a5514b5c0b11074a1e0febeefa43c4c1917e7338673d65e18b3124

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b42d4588ee118cf8b730233d78569c65b3c1587322aec8b61fc759ed186add8
MD5 e008d5f442be45c733e56fbf53fb6619
BLAKE2b-256 272885ecae9e0a84e63609ac45f1d33abe2f4d75f009a59d7136b2200ae0a39f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a58d8263021c58277ef70e70368d045076253f531591220c0a027398fa2be6c5
MD5 85d196b8df6be70823b4bd929f4043c4
BLAKE2b-256 888492e6ab8d3bd12a143894c5666feb167183bd4dba6ae01b6a08180711cd36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d03c63c1a66bc0f9ce83edcc03842a8098ca3b6daa06674c871a75f927469c58
MD5 b3d3d406d5497796a3dd0b0e41490d5b
BLAKE2b-256 3c0a5d9e8c4b64b528ffd00b4a39552ed3d7212dadf02ce4dd703c4e183a889f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5033e64fa488d52f97f32c4ebffc65b7535709cda6ad84416e8c5404286996a
MD5 7912bdc5f1442ef6d3ef079b668d4c71
BLAKE2b-256 f2808208953dd866736204914d62c0cf304d3b1826e82f9eca204e0c72d950e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8b83c9ae40aef0ff8af340e4e92c8e32ed94d4413d2f8a3c8ecb3cad329284b
MD5 e825e56cd7342d3bb47ec7a1f4d402cd
BLAKE2b-256 73e3b6b422e1a2fd3e6e61c7b2f026a8223580d18f5fe8d1fde0003405c059d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac0c3f7011bc0aec149cb1cd0825a4c84ce360cf668797d14167d5904f32fe66
MD5 1c97104cb0625639ec7cdf75b0f4aa83
BLAKE2b-256 684bbaf506fbb0f698ece4f6c9ad91dfcac7ab687f38a9f7f10cb7df07f23bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b576e17cc624bd101158774ec84d3c0dd6872348fc0761184fdfea53c1f4d17
MD5 546d0171d2d94722e39390b893ab9c8b
BLAKE2b-256 2f8fa6b97f1a618f91163ad42c5a09222f66497152b25abfa620ef770b15ad5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2651a4a15fd6fe4fa14a5bf3f2704e0cdaabc1abca630987304a5d38a06bdb8e
MD5 21a63a7904c551a5b80e8277b3bbfd2e
BLAKE2b-256 b87ce091ce4cb5b7c5b95ef18638c15c3d93f03670c7ac3d35cb35dae35311ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a9b27b3d1bc3b50fd76d6e5e61991955c48664ae55a186937f8f042429297a8
MD5 4a8ec03283c326b8a7fe41337037f968
BLAKE2b-256 b7b26ce6a6a5476bd3af2a1e8b53604bd4ba2bb34f9ae5c2f44244231bb57288

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c665439a33d51400cbdc8c17c32e5e50d1d41a20c6d0b18bda89a56fa633db45
MD5 b15b1edbe57c2a380c3554ad43a88b3a
BLAKE2b-256 c9182d7ef88fd6a0b1af187dbac77b55d9771e9e3c511ced8556ecc2d5bfe781

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f25ef488ce69f2d113447fa815a8c0177ab17b3517f3a9abd5f4d2f0c45a06a
MD5 f30edb430e177882fe9db473ef9b1208
BLAKE2b-256 f12725b33d9b6d3de5d9d0baeb0b2858ceb69d188662ace58bc02da00eddfa80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35261bbfd9f7edd26ea7c7b2c6273999c8cd158efcfa45f4237d1bcf6cfd3627
MD5 04a5f41499b9bb6bda8a668d119049a2
BLAKE2b-256 557192126ceeab427bcdcd23eabcd52933062529c1d9e02c6ed4da2d92f92b90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4035b0813390557e9690075fed02a6871823fcbf00660824e1245755eab62033
MD5 2514d7441adbff32bde961921ebbb79d
BLAKE2b-256 bd143d56ada0929a9a443380c70ce367abf66304139e736b009aaff21b5dc63c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4739fcf19f5f7450d8308a11f6661d151ecdeaee2b4f3af30d3234f79a679e8
MD5 6d0fb8161f6033cff34994bdfa779a50
BLAKE2b-256 b508420f910987c7c9450acd13f68da3be50b063b1bb28754d0da0e6901a78a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.3.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 816.7 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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 790ea5282e231ea1021b7a95e1add3dccae31afc11fb5d9e429879f0f40a7069
MD5 40b19413a8c01d138f4d9b18414fab3e
BLAKE2b-256 13a8d9cbbe0699f4d96984d9fe0bae850ba5ec066b43e0c9188f17aac0bd81d4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.3.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 778.9 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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 541a88ad516397081370ea2dceefe1fc4648b7498fa3809b9f034b28604d4a03
MD5 df829dcafc960192d82a3ea64ff87b0d
BLAKE2b-256 4ca7c901a2463a889899763fd5d547737e986502249710de571eca80b548464e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb84ca6529c544a0cb7ad45917810095690f5aa6f8e73c50c7434c586e2499a7
MD5 579388e48ab6da3a22c70fc70f24de30
BLAKE2b-256 c6db0fe3507a664c5d97f9321e7fd8df8ce547b2f42f8a05667c2ae234f74be7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f51805d7ced61b976a9f885f8ef85033789ae4a4f1e8eb50fb6b0ad8b3e68703
MD5 2017ab634ae001038f6595b438ac2856
BLAKE2b-256 a91cfcb17584614b7d4aa8baf2a43f3f0e21d956c4f29a5c4d7cfb0a62e2ee71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ddb7f5cd22eb949105e3c619fa34e2f5aa52de34d8a4c2a1ff138c17abe8f728
MD5 e728bb2b602670c9435a867fc309faf7
BLAKE2b-256 4f8197630964447a31fa4f970a08bb4389a923b4efa112eb07aa8fc0e86997f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d6a759b51fa77b0ea70aab60067bd186667e5234e4dd6b8dc5f14730692c265
MD5 9fbae9a81a79c12a7a6104df2d149b72
BLAKE2b-256 b1486eb4726815db3632d2be75440280e731e970a679f6950ac8faa28cdbf2fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee59d0e83110e2e56c857d3827f3626fb9abc27b2c637155fb8a94f11d7f7e49
MD5 bc5630f2aa5a0a348ab8efa4ef3ab013
BLAKE2b-256 32991978e014ace91073b217daf90be04fd871a67c0c18183ba7881793946d0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a48832b1c3e677acdc41f93e4e780c87dd68bf26fe858b5e47bb7a9b40763b17
MD5 298371c7454e9bdab0bbc88c7a21b0ff
BLAKE2b-256 26d3f10049b5b0c740398336f587e49420e2d05c594cf3e5157235e3cdae8485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e69e5cc7f1e7368678054cd6d131dbe3b7d1bef4f909f81fc85af55638e7f95
MD5 e2b4f66cee3ccdb30b3ae8769efd3e74
BLAKE2b-256 fefdb9f18fd28deda5ef959c6daa27ab399426d52e5adb7846c2c10d77236205

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.3.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 817.4 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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 39f9c3095233805d762d45d5f8ef8910cb6cc5452dfe2a84a627c560eb15ceac
MD5 c54cdab0de0cbcbd0f160309dfbb13d8
BLAKE2b-256 c4127acf5d0a8d2c8fa2b4a679e31a71a323038a4f3a73112845c416b471067f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.3.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 779.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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 09b0a341d6ca4b1cf62dc469273d0bf6c567b537137c0e68ce8f839fba4330cd
MD5 a2acbb4ed0459db8c52ffa4b203b6a36
BLAKE2b-256 6e4a28cdf4250da4a1b0615a3f1f6427f072d722cf891842819051c9e4c17561

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70d030fe277e75718d250377862c516adedd3c1802bc08caecc940f49a62dff3
MD5 cf7ba76a171c097a0670f7c96fd32b17
BLAKE2b-256 1c9595c6a162aab9b0f5bd396d932ce6316b7b452629fcfdaf49492d4cbb2e0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b82630ac94be383098375e7e1e2b19aa3becc37b75ec8f49687a8acf0240b78
MD5 044b97d8e6bb58d0101436e933e5b665
BLAKE2b-256 a2621562dcc5b0d3d3f7237490495334815b0e18ee77a14921d4193feb02f171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fd64dee2d42200292fafc0532a98a8dee3a34c8ab0d22bbc5e3dff9a8e953671
MD5 a4443d0de6fbb9dae6734978836ba587
BLAKE2b-256 b46421d66cdebd3ae3ce2a49785b2002e30b0eeeeca158c539cad8683a331ddb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cf527b784ba167b6b1344345b0b26d12adc2919800a7c86c5bcd0e2dcfb3e4b
MD5 4fc71e1306506424a3f305d3ac4fc31a
BLAKE2b-256 99ca8fb4a65585a6aef41d46c37906d93def5f01dfea182d2c6e317513cd0fd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91dc2b98365d2861d8ac3988d5904e491d5532487095baec96a2499ad883a5a6
MD5 f01ea51507229bf591d77c47471569a4
BLAKE2b-256 87b133ce99508e42bbc2788f55163386f25e0d5de4ac46b83f17f68c5076427c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95218c21be35bec58f8067c5580fe571cd0e52bf4413dc5ae0eb256b8db95d99
MD5 e3091d1f26454e96b16d9424531b996c
BLAKE2b-256 1faa3f154eb201a33b33f0dba8b94b96ab0318fd672e00e0cbd1e837c1681c9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 daee6665ee5a0696d693067857e6e2344d7a3b64f36633845a92847637c8be07
MD5 c4f6761ca073bf39aeedaddb9f5b0afc
BLAKE2b-256 393eedb8d7044839204aadf5a1a5a98ae61ca9de162cc65d3d2550ffecbacc19

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dataprof-0.3.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1caa2d8601de37eceeb9563799b47f64f42d2ffd9c26138d4b1a95683bfe0cc8
MD5 b541aa75b17ff3bd6d25e6140a7732f7
BLAKE2b-256 82064cd9d74c4ac0f007762f80037eeb411898753d18c15a54733b82db30043c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.3.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 780.1 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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5c3a248bbec2ecbf252a2392c6658d3b09059db59260dbfd5f54e484fe965be2
MD5 1e02c5b37fd206e60bffa28dd1275a34
BLAKE2b-256 6e5086151deb021b88eda66f15a086a623ddeb635d4ffb4a692a9778d1cd6499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fcfcd0c12173e98b629ab697192f9d34f41faba83e8be9d3ae4bbae510ca9cc
MD5 59b25022c6961703d36b33c77cb0b4d0
BLAKE2b-256 5d76890e7b814109686786b8703801959e0543c20d6a72d464a83c6f751d9137

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 516663cf3e18886129e46669b69beb57d14acc974e6222c14c9df17f26606726
MD5 60e20fb2de283d7b12948d03fd1a4a0a
BLAKE2b-256 e86fb689dcceb4b2e4594fac38972bc8dc86cab7d542fb40e665505cd95a56cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1155e29bc2c81ee41747a4667bd6cbfcbb67b7b93ef253484c0d0422d23d3957
MD5 21b31538f63c28f104caa5a0b1ef9814
BLAKE2b-256 08836997ab5d49dcf01774af090641e16bb6c3bbfea8d6c87765ab981c7266f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b0ab31ada7cc80deb7b48305763adabfcf885fec519172e2d7baf5c1aee831d
MD5 8cec61d836e4fa856d8a44eb85ce04d4
BLAKE2b-256 96aad107076cc2f8d01b19222717dceececc6b8ec5b3a683ac46af89d1f506be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b0a09420eee59fc51bc6e9cc3fa5b65e13eeb3ec5083cc2a84d2992b014079a
MD5 fccfde892f9c0b7fefc5d65afaa74ab7
BLAKE2b-256 ba1fe75d097d84ef53b13001a27e2987882e55d77c95709a528a9e895d4dabe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78c14b5a3b333dc68459a1ecafd5d64ca74673b7bd9b4c6ccceb56d43511d9be
MD5 376a0875273fa979e364e01cbe0292eb
BLAKE2b-256 bad5557c5e2b7df374aa7ae71cf0cdb18cbce1ad6ffabbbe30f0cd48165fd4a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e24c5b6cd74184c73a815b1d1c7c7b697b59b6fc659955c66889bcc909bba89
MD5 533a4e6923a84d0a1b23e3d409acbef0
BLAKE2b-256 2632ec77fa4a9bc0d238e34a0e7cbc299c107a88e770c6b4ed144071bcf1b45d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.3.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 818.6 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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ca0a6d4cb76da5020252612efcb970f93e291450f31e4b7dd040ef23accb5a5
MD5 ca497a303a53c97b57b223cb0659b307
BLAKE2b-256 519dad01886a7d39ddaa5bafedd1b0528aecf0e04dc667b1d0d23792ad973fe3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.3.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 780.2 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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6827f19fb3f1265b0d3a3d3661f57c2155bae5a0f24f430f70ae2f0880e9b2a4
MD5 000ca498895a77b1437c88dc0915e56c
BLAKE2b-256 bc3325804efe81b3be2fb0779ee5b7b7fee72324773a4a54b6af21363a6a772c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6075f2c913a6bade71dcbad25a43857ebb47ffe44804d0bd74ac54fb0ab24b20
MD5 85c26d423b5b5cd6f4b70c4a715b31d3
BLAKE2b-256 6ff5cc81846ed43443485d1ec82f459756a959de95574b103a33b90fe5050e1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e71ca9da5135ad4afe8d0ce527c96c27c0846bb8a35d964f4ecb6eabe0826c69
MD5 ff61b056fd9928a7277188b939e47f80
BLAKE2b-256 4c8cccfbe52564d194dc6786d1954fcb89c8d624f5d1f8e1fa482d9b0d2172cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e243f89d6ec8be4bee798976465d6b14a38698660f79ba0e1307a4b2d1fe0d2
MD5 f7169275e0ffca1d6e1b94cdbd0e01ba
BLAKE2b-256 611e184d91ae2c8aedae876f19702d0bd5477a9ed20d0c40346b5a9d18318646

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0fd2537a4fdb1ae7487473d890761f1a556b3480091889f1f1b1731ec3ed5558
MD5 8bf23b4551191902326a809e2f386583
BLAKE2b-256 24dc7bbd870c58be7453f196b250d6fc24842f339c38e3e19af60941d1b71cfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7602d7dbd828c43d9eb3b5fecc30f859eb80861a43f4637bb744e691f0f71b90
MD5 bcf780c4a401d092975846ac3b381364
BLAKE2b-256 cc3ac7f5be81bcdc9892cafc7aaf72a3829a7afba164ec7614b83298ac69c153

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64294ab338fd48004f8959777d394ffb8224637869735c14852061b3c3d49b7d
MD5 7583bf4bc91b57f499765ee740046cb1
BLAKE2b-256 4372e2460f0cb4af72e80403be4c9dd29b19bf0ab278f77665c7fe70782a5c84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cbefc1dbf5d0bf3267499256f64b12d538d95d0d067740dd6bacfc782ef9d51c
MD5 cbdd3fde7c041ca662d9c46663b022d5
BLAKE2b-256 d3845689f9aa1022471a4ee4ee55de15cca94aafe7bb63c55d2d996c2f8f3015

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dataprof-0.3.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e865b02437c1d8e9f97d13d885e28e9f56be29ac05c14748cd5e1baf4c0f8283
MD5 83b437009235bca1d57553a60df08166
BLAKE2b-256 d99de7ce14ef2a1af6b8c2e1290e9a6a0c878db3fcc8a4e4aa9aadb524946493

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dataprof-0.3.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 780.4 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.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 09e05d22034ad039b14a184882542e20681fb658ce66b6bea4982e9e147a5889
MD5 544fabff6fb5af81a6c4ddbc3312942c
BLAKE2b-256 ee67747ab77f948f40b0d2ed97afa3bdf6a125ae78facab9c19ec38b6daaee4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 520169b2789a3955b9deea63df23256f44150a43252e9fad7e5e8876c3c724d6
MD5 549ae2925867835c4fe28e1c995f6044
BLAKE2b-256 65fe8561b29111a0f13aa22f07dfaa1e1583cfd2b4de8bf119e1a0e1c2211b65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7cb4df9b8c7eff427113b6e9924ac08b6709535aba3326525c3f62bd6c9c5ba
MD5 da1f0b19eb4d95c99145649db2c7b8d6
BLAKE2b-256 7e65184f9edcc66f6ae58c82b6081dd823321ea773c6678383906c79d99377df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9ce0f10d886fe15da25d920597e28897f0aea28df9a5ae170ba46c1a35f04d2
MD5 18372a62a5e686c7913f222ecad1e9b1
BLAKE2b-256 a6eb4d92d235542fddb2b0a3676b8b632751a19a8b5a98427e6c832ce54ffa13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11241f0c03f128471ac751d9beb6984b4833e7b9857268ede420d50c9be79cfc
MD5 ed4a10a9bf8cbda28f9c8f40e5b4b6a0
BLAKE2b-256 d67aa730144d1b5151bd8b100d253ed54257823a315cdc90363204f62b3b6faf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99cfff89428a6a176fa38508a0c6a8e40179868059661f27f36726d417bc2b78
MD5 91779e1a07daf05b570d34ac470e1741
BLAKE2b-256 d6cb24ae95f4c74a5a14780f58b13dacbf05d0b75df0becbe5be4aa8f02bcc1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 018c2fa02ca4a626989ecb582e8d73d036938d14202676bf37239f9de066d44c
MD5 4ca01f23ba8fd3d52e4eec827f678639
BLAKE2b-256 930bbfc5aebceb2739b59b0bf8d54e187013a5a71e86f26645c40f5892d6b3e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 41acce6412249ce624a0fe929cb2a1794e4bbcb334a07e8860aede5f4126d8e7
MD5 c536f23c8185cc34db61d6aa73585f65
BLAKE2b-256 3b797dcfbc668acab7a7475333e553c640f0e516e4698d5f473fcca7fae13728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0319f0cecfefc3287a1df8447725ecf7062f3a8db2338e069f0758995085a92
MD5 5df47147f4bb2197d8f91497d3835da3
BLAKE2b-256 4b6c81d5fe0e0fca5109824e038f607058185146007a63dc37825da598674912

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ed61fc91821eb883825fc877ea0a77396bc80d486adf9d6c429368ee7ccbeae
MD5 0569ef2c2b39125139d4366fa45f6c47
BLAKE2b-256 1b3617cfd5cf9730b50317a2d38584425f24be7ab171024fc5d4af6ded7e0f08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dataprof-0.3.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c55caa83e7913e4adae7978f102b4b71fca087b240b5a24c7be765b1fac97e42
MD5 c20913c7d7675e699f9b7cdbb54bca50
BLAKE2b-256 9a1c41b9ec35531830147a2da32533747c2be37f45245e0c7ad51f9d779f68e5

See more details on using hashes here.

Provenance

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