Skip to main content

High-performance data diff tool in Rust.

Project description

Koala Diff Logo

Koala Diff

Blazingly Fast Data Comparison for the Modern Stack.

Koala Diff Report Hero

PyPI PyPI Downloads Tests Python Versions License

🚀 Quickstart | 🚩 Issues | 📊 Benchmarks


Koala Diff is the "git diff" for your data lake. It compares massive datasets (CSV, Parquet, JSON) instantly to find added, removed, and modified rows.

Built in Rust 🦀 for speed, wrapped in Python 🐍 for ease-of-use. It streams data to compare datasets larger than RAM and generates beautiful HTML reports.

🚀 Why Koala Diff?

  • Zero-Copy Streaming: Compare 100GB files on a laptop without crashing RAM.
  • Rust-Powered Analytics: Go beyond row counts. Track Value Variance, Null Drift, and Match Integrity per column.
  • Professional Dashboards: Auto-generates premium, stakeholder-ready HTML reports with status badges and join attribution.
  • Deep-Dive API: Extract mismatched records as Polars DataFrames for instant remediation.

📈 The "Magic" Benchmark

"Process 100M rows on a laptop in seconds, not minutes."

Koala Diff Benchmarks

⚡ Performance at a Glance

  • Time: 🟦🟦 1x (Koala) vs 🟦🟦🟦🟦🟦 3x (Polars) vs 🟦🟦...🟦 30x+ (Pandas)
  • RAM: 🟩 0.4GB (Koala Diff) vs 🟩🟩🟩🟩🟩🟩🟩🟩 12GB+ (Polars)
  • Edge: Native Rust XXHash64 handles massive joins locally without cluster overhead.

🧐 Why not just use Polars/Spark?

While Polars and Spark are incredible for general data processing, Koala Diff is a specialized tool for Data Quality & Regression:

Feature Polars / Spark 🚀 Koala Diff
Specialization General Purpose ETL Data Quality & Diffing
Memory High (Join-heavy) Ultra-Low (Streaming)
Output Raw DataFrames Pro Dashboards + Metrics
Logic Manual Join/Filter code Out-of-the-box Analytics
Stakeholders Engineer-facing Business-Ready Reports

Koala Diff doesn't replace your processing engine; it verifies that its output is correct.



> Benchmarks run on MacBook Pro M3 Max.


🎯 Common Use Cases

  • ETL Regression Testing: Automatically verify that your daily pipeline didn't accidentally mutate 1 million rows after a code change.
  • Data Migration Validation: Ensure 100% parity when moving data between systems (e.g., Hive to Snowflake or S3 to BigQuery).
  • Environment Drift Detection: Compare Production vs. Staging datasets to find out why your model is behaving differently.
  • Compliance Auditing: Generate unalterable HTML snapshots of data changes for regulatory or financial reviews.
  • CI/CD for Data: Run koala-diff in your CI pipeline to block PRs that introduce unexpected data quality regressions.

📦 Installation

pip install koala-diff

⚡ Quick Start

1. Generate a "Pro" Report

from koala_diff import DataDiff, HtmlReporter

# Initialize with primary keys
differ = DataDiff(key_columns=["user_id"])

# Run comparison
result = differ.compare("source.parquet", "target.parquet")

# Generate a professional dashboard
reporter = HtmlReporter("data_quality_report.html")
reporter.generate(result)

2. Mismatch Deep-Dive

Need to fix the data? Pull the exact differences directly into Python:

# Get a Polars DataFrame of ONLY mismatched rows
mismatch_df = differ.get_mismatch_df()

# Analyze variance or push to a remediation pipeline
print(mismatch_df.head())

2. CLI Usage (Coming Soon)

koala-diff production.csv staging.csv --key user_id --output report.html

🏗 Architecture

Koala Diff uses a streaming hash-join algorithm implemented in Rust:

  1. Reader: Lazy Polars scan of both datasets.
  2. Hasher: XXHash64 computation of row values (SIMD optimized).
  3. Differ: fast set operations to classify rows as Added, Removed, or Modified.
  4. Reporter: Jinja2 rendering of results.

🤝 Contributing

We welcome contributions! Whether it's a new file format reader, a performance optimization, or a documentation fix.

  1. Check the Issues.
  2. Read our Contribution Guide.

📄 License

MIT © 2026 godalida - KoalaDataLab

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

koala_diff-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.

koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (19.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl (20.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (18.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

koala_diff-0.3.1-cp314-cp314t-manylinux_2_28_armv7l.whl (18.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

koala_diff-0.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

koala_diff-0.3.1-cp314-cp314-win_amd64.whl (21.1 MB view details)

Uploaded CPython 3.14Windows x86-64

koala_diff-0.3.1-cp314-cp314-manylinux_2_28_x86_64.whl (19.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

koala_diff-0.3.1-cp314-cp314-manylinux_2_28_i686.whl (20.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

koala_diff-0.3.1-cp314-cp314-manylinux_2_28_armv7l.whl (18.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

koala_diff-0.3.1-cp314-cp314-manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

koala_diff-0.3.1-cp314-cp314-macosx_11_0_arm64.whl (17.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

koala_diff-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

koala_diff-0.3.1-cp313-cp313t-manylinux_2_28_armv7l.whl (18.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

koala_diff-0.3.1-cp313-cp313t-manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

koala_diff-0.3.1-cp313-cp313-win_amd64.whl (21.1 MB view details)

Uploaded CPython 3.13Windows x86-64

koala_diff-0.3.1-cp313-cp313-manylinux_2_28_x86_64.whl (19.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

koala_diff-0.3.1-cp313-cp313-manylinux_2_28_i686.whl (20.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

koala_diff-0.3.1-cp313-cp313-manylinux_2_28_armv7l.whl (18.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

koala_diff-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

koala_diff-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (17.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

koala_diff-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

koala_diff-0.3.1-cp312-cp312-win_amd64.whl (21.1 MB view details)

Uploaded CPython 3.12Windows x86-64

koala_diff-0.3.1-cp312-cp312-manylinux_2_28_x86_64.whl (19.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

koala_diff-0.3.1-cp312-cp312-manylinux_2_28_i686.whl (20.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

koala_diff-0.3.1-cp312-cp312-manylinux_2_28_armv7l.whl (18.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

koala_diff-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

koala_diff-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (17.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

koala_diff-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

koala_diff-0.3.1-cp311-cp311-win_amd64.whl (21.1 MB view details)

Uploaded CPython 3.11Windows x86-64

koala_diff-0.3.1-cp311-cp311-manylinux_2_28_x86_64.whl (19.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

koala_diff-0.3.1-cp311-cp311-manylinux_2_28_i686.whl (20.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

koala_diff-0.3.1-cp311-cp311-manylinux_2_28_armv7l.whl (18.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

koala_diff-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

koala_diff-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (17.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

koala_diff-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

koala_diff-0.3.1-cp310-cp310-win_amd64.whl (21.1 MB view details)

Uploaded CPython 3.10Windows x86-64

koala_diff-0.3.1-cp310-cp310-win32.whl (18.8 MB view details)

Uploaded CPython 3.10Windows x86

koala_diff-0.3.1-cp310-cp310-manylinux_2_28_x86_64.whl (19.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

koala_diff-0.3.1-cp310-cp310-manylinux_2_28_i686.whl (20.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

koala_diff-0.3.1-cp310-cp310-manylinux_2_28_armv7l.whl (18.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

koala_diff-0.3.1-cp310-cp310-manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

koala_diff-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (17.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

koala_diff-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: koala_diff-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 koala_diff-0.3.1.tar.gz
Algorithm Hash digest
SHA256 bf24840909d6a8d0cb214dba9a8bfb29501690d68b7b02878d157a2a0e5636e1
MD5 eb8671071f381e1744d15970ebf57f90
BLAKE2b-256 94e9dbfa478ff038dd6ce01dcfd65bd49b45456f809784b6ca2440fd0389c0c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1.tar.gz:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e74627e1edacd71683f0010085f97c27b23a20d96b33c5a7f595322d2c8059af
MD5 6802056300225e350ae81b856d112550
BLAKE2b-256 576511e178065025cba28fe2ba02c4ee8968a4a2521c45d8f3c56478443e7342

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 128e4ddd123fa04642f452185f50ecda1fb82abd0b7b8585ad7c0c2b4af08473
MD5 552a0f5fad6f7b257847c72b68d49b05
BLAKE2b-256 07784d10043804655e9f560385d7c11aa34a03eb0ca08a8b51a14d349fa269fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 026e37535770dcc8755526a087a704cf91a5c91d5203747f2dbb8199ee7af3d1
MD5 7c6dc69a3d22f4b650de5eab461e4d6c
BLAKE2b-256 6b2fddc0ce6cbd0aeaec48c23ef5c44a979ac60a45049afb88fe8d956acfaf52

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c0fa053593b4c88bdf6086997188b811291750129606feed51dfb1ff2d1f49e
MD5 ecc78ebf73e2a733349f64ceee81cedc
BLAKE2b-256 705b6471403c5b2c1864f77060d32dbf94b55933cf13e33688dbcbda21ec0873

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4f447f2549b028fdb44dbf8690b7d52d55a35279b9d3d57a602780d6d7a39ea0
MD5 f57c0163a39107888907174bd1c393b7
BLAKE2b-256 3c9c450594dc302e4e27b16a90e2db9c94c7ecb01426b954df616879c85125fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp314-cp314t-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c455ca51f34d02b6b5291c4e80d152e5380c9025338d4f6a091f9851b09628e
MD5 539c9e188efe5f3c99820836229ea2ed
BLAKE2b-256 6ba98dbe6daf286516a3b8d501426d2747b730cde65da8b74c9e4379fdfae9f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: koala_diff-0.3.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 21.1 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koala_diff-0.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2ef15cee29f4911bdb159ac87a30f97072e00e00001703c136ea8ae0948d3dae
MD5 9a746d19feca9ba8f627461a2d8d445d
BLAKE2b-256 ef517f2076a1629bd2947454710ae45196d7492ab9fd30c98722ca4817ec190a

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18911a3c23cfe9570fbc19efc24ba6d4478da6496bff8044bf431bc2e0c8fe91
MD5 ce273ac7da7c42ad10b9a343e7e1b0ed
BLAKE2b-256 a34bd753533d19bccbe98c7f1fe2931335683ab3078c15bbe8d54e743ec6b12e

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 528a42aab6455406effd87f3e130ef0a8a65e0fcd84d1e4e52aa4be2fc3267fd
MD5 9774d1d43356a2712b66c021f9aecb42
BLAKE2b-256 65bceebba96fbd3d040ab9067205e39d67d5168805d21b7a85cb22a5ddd3cd13

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp314-cp314-manylinux_2_28_i686.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5041ebd8cfe2e54749e83302a52417efdc94785b8485776a0172505c36e5f73e
MD5 a65345af552e6f4d01d0a3c7116d7b18
BLAKE2b-256 7a6d54624271427185b99ae42fc90a6f54cf71994a7b2d03d7c374fb8f539a32

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp314-cp314-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50b14c72fa043a148fc76446881257a60ef14c38f4c681d263924a7286deb56d
MD5 3f857a27238a7c4bf0527b169a307f96
BLAKE2b-256 09a09f243ad4b9ed225a12e8a42346c9ac1e23debc79ba9fdee2ca430a21c4ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fc624788f938abc1c9f2dba5cccfd8eac826410ab7267f4acaf58f2e4498548
MD5 e5882ef74a3ff5b0a754d2f1226a0e9c
BLAKE2b-256 c88e837e7c63ce571a3fc9225a26f34c8ca9cfcf41eb821e8d49f68b0d736748

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff9e169c1ecc0ef2ec6876fa9b98f20ed421c81c6887e790875adfc067584330
MD5 b7fc913bc5665648ae8528fa6c452f3d
BLAKE2b-256 144a29cc4db71f0c87f7d5eddf650d251bcd2ea0628b104e525e23039206ce75

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 fa615e71b999d93b15d8885de2644534ef40e45aa64e503b3dc7a15e7226ba14
MD5 2395d218afda671ce97fa0601f6fb0c7
BLAKE2b-256 d1d49c92b4f6a3e863916e1fa80853a0371447eb69bc96c993283decb0be0081

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp313-cp313t-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85039bf125ade650efb7fe65a75483b0fcb187342f2dfc6eb93342f54725c81e
MD5 e5aef37a3269f9630defb57ff3dfe66e
BLAKE2b-256 89c0e763a718e77f1fa1a2208aaee3b209bfc2a9fe87131e1f8978d858c34061

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for koala_diff-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 11d878f33130cf68ec929eaf2c9f309104d68f041956c5e7a49d61415328056d
MD5 646ca947a487c008072a2e2f7826524d
BLAKE2b-256 9947baa2eb7952e062591d60a4641d4c25e035e890410012c35f61749a4506bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0768d12bc3c0703143b26db0dbb4ea6a405dacbbad8fee2b7045bd3d698b20e9
MD5 aadd8d6de3bc85f40a732adbca7c1a92
BLAKE2b-256 8efacd4b99d3a0ca54dc7b93e59692f6fc081124694ae657278ceebe19769f17

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4701836e20f05537338409ee57f49651324f9eb78553ad61ce06c6188c68f653
MD5 ac090b823e4fc36de5c41e122a3bb587
BLAKE2b-256 52fefd1dfd902eb15677ff8cfcd0642519a9240cce2aeeb4b4fb0bbbf7fc495f

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp313-cp313-manylinux_2_28_i686.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 2c245e25a09752eaa3735cdcae30852911bd17694aefad5efcc68f9c7cc42bcb
MD5 aec7c36adb01dc8e94149c809099b3fa
BLAKE2b-256 b16c0e37a997686ed8a682ad8306844b6a56c11adcdfaf82cae107918606f771

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp313-cp313-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53f9e51b6016176ec2058440c234a8ab990b380a5e35dd1057b41f04a30b87a7
MD5 724c41f022196c3bd77a0dc61e23c58d
BLAKE2b-256 3bf46a049940eb55171c5d946d2a774377df9482eacc6ee6463ba747dc47db45

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ea9204cb50e004581fa77089570c232961ea5c601a47e2e6306935bb11bd257
MD5 ba8bef992e774b0edc7584b746e7ae2a
BLAKE2b-256 4d048e329461fa2092a0277c2f045a0bb0729de4872e2bc81284b51788d17656

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47bb2613a847c2c1a953d4a7ea6d7e51097ff363fda5470460a8d0ccdb8dfc8a
MD5 5450dfeb2929c314c55742bd29711964
BLAKE2b-256 e145eed5ac657087e4c671c628a5dc94d55fbc63ef0b6be0a4c8f710ff1297b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: koala_diff-0.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 21.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koala_diff-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ca04c856a337f9bddcd58c118316d39b426989b506ea12198f73fd960ddeed8c
MD5 7b862539ce8eb5d8c791ae57b3e70ae8
BLAKE2b-256 3dbc2d51e041bbfa17727a2b57ea9f38beda44b5194b36f9bebd5ae0d8c41062

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23699a0c4a5458482afd714b1ce4afe20208b7193e5ca67aad67443f9b3179d7
MD5 59873b9807b792432efc9d8f580bcec0
BLAKE2b-256 f0a0f326d1ac2415ffcc5bd69d6cc4af0d2796ff477bfe2b51f3864fbbe77a97

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f749d6cb0386ba9d0c30bc04445d5d25d0517e0c77a8fc637d702b32a1cc0e3a
MD5 e8da47b67f0f969df8ac4436262167ce
BLAKE2b-256 06d4bd4adc169944387cd6c1a08c210f7cb742fac84d841409e7665f3c3b3bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp312-cp312-manylinux_2_28_i686.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3711aeae2300d4fbb299060258eeee87e84966ba432e9be49e9546dba830562e
MD5 d443c9b8f5a05bc9a2fe3504f4799f5a
BLAKE2b-256 9d0362569a9b29721bf84e15cdb697561cd7a438b1bdbfdba71d01e2be278b39

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp312-cp312-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fe21403bee34de0864562357974cbd274c0f13358e4d4f4cf71b4dda988b02a
MD5 df53a8045fd5bbbd45dca470fe674c1b
BLAKE2b-256 bc392209ee776e3299eed5f4d41c6b1eeb459df388d6ac84a2f224c416f0d962

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a824be1b96a257929b2941fbd642c082b70a5e0dd2df2fcdf04b3e30ebbebe90
MD5 7abd840189afff85d20d3a923aa19787
BLAKE2b-256 c163103a0ec76ca784656a16c4980d527df75c33f7a57f337ec5668a28ff7a37

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d009f7c9fdd43f0d8ae11a29276f4851f182b6db7757c721f97a12368ba17883
MD5 9b8c266ce2b122c05379c1a2768d93a5
BLAKE2b-256 84696a04623936a38e934c27764d17ae431567da2df14e400ec8fbcb844df4bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: koala_diff-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 21.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koala_diff-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2c0c4b3bf2439b9b1ed89e27a2c0b2fedea0692b12663e401d02febf330bc847
MD5 d955cd275f05cd2963bd9612d31f1d92
BLAKE2b-256 d83f8f068e8359d76b94bbb6a19f876494b33c12a4a4345469ed8dcc18f82386

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92946b3a50d5c131d7a00ba7cb8927568a09e40d4f4ccb883073dc8245a70a41
MD5 e57fc4f91f0a54a8c62b3bdcb7c84a28
BLAKE2b-256 81b09ec7b31075288d935e1e709e1745f58fc978b91de580a61a470a0d83ec7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 03dac4cb416d624aafbfc866ff8f11d5c3c10c8492ff117f62252e69b27ddb0b
MD5 ba52100cf98c248d6f83f909b387f143
BLAKE2b-256 628c594703b9a1c6dac6a1f5e77977965eef421ded99b9fe39cb45392d87093c

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp311-cp311-manylinux_2_28_i686.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 bec7511b93bff64080e1b2b757c59b0d3e22d0fd55183677ef8db8879a3407c3
MD5 d7fb604c59b99cb7c15f1a85ad852e1e
BLAKE2b-256 21fb87a10bddb76a5b2a6ca0ea592556519795915cc5a21509815ef01fe0375f

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp311-cp311-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8aa21fbeadde732ecd84040b06de00b7078e16c34b7d403da8417fcecafd0d0
MD5 5c29bec99d3603e2b8bcca7c6436b4ab
BLAKE2b-256 c32c075dd2ae683ec623ded240487f2cd3f49a5444f04cd1ff4a7622a72b3e86

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d45c12675a5f853b7d90cd98acdd8d40530f0fa7812727657cf54aa8ff2b3cc
MD5 c10d6bdf1d1435bd5bef2a7f363ebc96
BLAKE2b-256 0447b729e56eec431658b833fe3369c1e40ec8c07f6b0f472d8e90e997715c96

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e2a79b8477c94d7ce2cb4a6cb06d8dbd6cd1ccf503b84da80328bad5c01d5047
MD5 6fdccf3cc96ef3fd54b75eba824093aa
BLAKE2b-256 6ca144b02c742ace4737aa3cfaf3fd68e9677e5207dee1b1c1b5639aec9037ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: koala_diff-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 21.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koala_diff-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d70b61c5c7ebe451ff056128f7e9821f1fff176a084e04452895abc0c3a66bd8
MD5 283a6034f26d0981e469fa670cf7708f
BLAKE2b-256 77925026e4a18e75856448abca8c7e0e30820b60a472d621575bdc1fd5ceb2c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: koala_diff-0.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 18.8 MB
  • 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 koala_diff-0.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4626a995286f44b2ecd1d18909236f306e2a80262935da81d987a3e564edf3b6
MD5 56804d58c258e11f6867eca888d776a1
BLAKE2b-256 92a0d65725b14233a605e9da9d4c62a77545d053cd452e0784403f4b73312ddc

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp310-cp310-win32.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7895354a4aa6cc580160770ae9b7c774c80e946eaffc441d49be85e0812f307
MD5 ff06f77024b7471324da62eb0ac4f06a
BLAKE2b-256 a2945c8b4d610bec6cd8461a62125fc00d2348fc9a379246389862408c9a81b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f2913273ef15ca155ff6cc090589ed8a6ae417601c9e419af83bb89a4f0f9bba
MD5 11edd6068d936cd3c533186f4f059dff
BLAKE2b-256 b2beb2f9cd7786a5c459ba947876abf77cd77a19a9788b2c5af3ed6eb1d36960

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp310-cp310-manylinux_2_28_i686.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b098fb3302774003cdfec9ee0175d951dc50861583af8c20988aa1ed8b1b9360
MD5 91bba616cc6ff9434f1dc140d332e125
BLAKE2b-256 cda0b3f5081b305931cd874698ede3c88637baf8616731ea1835b42533061fdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp310-cp310-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5df16c4d6ebdfe8340d1fc085d58eee23fda4a8a72033db317ff06103faea6ae
MD5 34cece8cf15ccdb14411af9b0f0e442a
BLAKE2b-256 4a8e42edec15a40ecb9b834fa1fe9626ebfd4a73a8874e1a67610218aa448a42

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ba4711502758b2643eb29433b43168f512b882c14e1df90ec22136ad297dfe6
MD5 40f219369fbbf7cde479a4350525f63a
BLAKE2b-256 ec23c600b7e55d9773b70746e8c6c68bd7e219775184c2c75505d032a45bb37b

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: CI.yml on godalida/koala-diff

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file koala_diff-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1951f3867a56816e65f39ae2088b031db44bf64e6fd5c83075b073714d4a032
MD5 6598b4e5cfbb1f118e6a7eb29ca69f3b
BLAKE2b-256 f2fafa5da57713be28dc1ad9301835c12da2a424a99c8c5ac7f0e099a756afaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: CI.yml on godalida/koala-diff

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