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.2.2.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.2.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

koala_diff-0.2.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl (9.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

koala_diff-0.2.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (8.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

koala_diff-0.2.2-cp314-cp314t-manylinux_2_28_armv7l.whl (8.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.2-cp314-cp314t-manylinux_2_28_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

koala_diff-0.2.2-cp314-cp314-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.14Windows x86-64

koala_diff-0.2.2-cp314-cp314-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

koala_diff-0.2.2-cp314-cp314-manylinux_2_28_i686.whl (9.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

koala_diff-0.2.2-cp314-cp314-manylinux_2_28_armv7l.whl (8.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.2-cp314-cp314-manylinux_2_28_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

koala_diff-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

koala_diff-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

koala_diff-0.2.2-cp313-cp313t-manylinux_2_28_armv7l.whl (8.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.2-cp313-cp313t-manylinux_2_28_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

koala_diff-0.2.2-cp313-cp313-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.13Windows x86-64

koala_diff-0.2.2-cp313-cp313-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

koala_diff-0.2.2-cp313-cp313-manylinux_2_28_i686.whl (9.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

koala_diff-0.2.2-cp313-cp313-manylinux_2_28_armv7l.whl (8.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.2-cp313-cp313-manylinux_2_28_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

koala_diff-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

koala_diff-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

koala_diff-0.2.2-cp312-cp312-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.12Windows x86-64

koala_diff-0.2.2-cp312-cp312-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

koala_diff-0.2.2-cp312-cp312-manylinux_2_28_i686.whl (9.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

koala_diff-0.2.2-cp312-cp312-manylinux_2_28_armv7l.whl (8.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.2-cp312-cp312-manylinux_2_28_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

koala_diff-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

koala_diff-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

koala_diff-0.2.2-cp311-cp311-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.11Windows x86-64

koala_diff-0.2.2-cp311-cp311-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

koala_diff-0.2.2-cp311-cp311-manylinux_2_28_i686.whl (9.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

koala_diff-0.2.2-cp311-cp311-manylinux_2_28_armv7l.whl (8.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.2-cp311-cp311-manylinux_2_28_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

koala_diff-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

koala_diff-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

koala_diff-0.2.2-cp310-cp310-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.10Windows x86-64

koala_diff-0.2.2-cp310-cp310-win32.whl (8.1 MB view details)

Uploaded CPython 3.10Windows x86

koala_diff-0.2.2-cp310-cp310-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

koala_diff-0.2.2-cp310-cp310-manylinux_2_28_i686.whl (9.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

koala_diff-0.2.2-cp310-cp310-manylinux_2_28_armv7l.whl (8.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.2-cp310-cp310-manylinux_2_28_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

koala_diff-0.2.2-cp310-cp310-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

koala_diff-0.2.2-cp310-cp310-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: koala_diff-0.2.2.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.2.2.tar.gz
Algorithm Hash digest
SHA256 b395c14fc54caca82d9219e795c83ab29d4ab0654b8fe7ca4ba302bfef3d7e42
MD5 f367e4be9814747a1729f5f335a452a5
BLAKE2b-256 522de643f25e2bd4e234316346d735c6d8e3cbd00612bfb4e9ed13e5980d04e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2.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.2.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9e9b17f36d007aaa3ce002942234644e2e060f120861c5ac00aa7e005b42285
MD5 75ee9669c8e8763172fbacfeb4b95704
BLAKE2b-256 6a916e85df8dad381294c6b50daea5a6e0189943528a416297ec914d694d335e

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f87863b1ec2e55e4a813e48d688575f66dda7051e1f6b6c799f848489129619c
MD5 7c731e142cfb3b1caab86e34432f330f
BLAKE2b-256 3d5ac33d0cecf07e2c4df6361b26ed9c71c3a28bae0c46e2f85a006b085f19b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 da075a20669a4254d92096a2545d8aad756dfd0861d3d8c7abb517bb29123d6d
MD5 62de5998179f151be71995d919a7c950
BLAKE2b-256 9efd2ad11e659e771d5db45d70eedf9b2ad3da6756c3e6eaa7ee84ac24e6e048

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83d2b728ba680c0517ebc8b55cb57a9b93d31edbd9f69cf3fb4adbaf0a2824e2
MD5 04d6d30a77a75262e08d510c3f6d8462
BLAKE2b-256 6fd9bccc9c0847012fcc961d6208e70581a12ecec510c8aaa220739a2b5a3b85

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4d7ce82a115e3e79a565b220cbad372ac314f6f0a4440792bad23495866a34af
MD5 1d8c840c4e74d2d33aab5fc951e9c131
BLAKE2b-256 65c67c87fdc84e38ba2cc7bea567032c0439ad38dda29123ad335aabfd7bd4f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78f552c68297ac88650343d15be5bdf45ea6c6801d38280474852e5747372817
MD5 746aacb1fb936dafce072a00e76b785f
BLAKE2b-256 377a784a99572d960cb8c84bfed360a1d2d67de91613f2db64c3c841e7c036d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: koala_diff-0.2.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 9.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.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 74f6a9c77d73d6b075f004587b27c5a75601ed772aedd82e3f268ca70a2a3b11
MD5 2e8c3c8adb1df29e6ab96fa0a5176bff
BLAKE2b-256 5f1b58a7076a8f4fbf6fad674bde574df499c9e21b141adab4052c65022e20f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 679d970d7ab3811529d9c0730428378ba391a5ceb902863eec8cb7773ab3d6e9
MD5 d6cca4be40cf3ad94c5c8d5e53e048ee
BLAKE2b-256 5e927af2e4443a7bc0c757accc3eb7bbdc5e69ac6e448e0c2e830316e4cf5cb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 045fd954ed14c7e9796ad3e9aed95c79fa024c836bb01263e2c0359b055a6243
MD5 b8b659cef6d6503ecf341684e762f221
BLAKE2b-256 30eff6c60508aedf078d5ffd3679f3d20a2e1b61b8f2e6a87fcc55fa8ffcbcdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8b6b194cfc4ce0be1f4619c778a84d1410b565a49d581eb719747da0a9e385ee
MD5 6ab2816a0d7b6a24b905f2a33b3d5e6d
BLAKE2b-256 d759b403c81cb3ef27f1337ea300894b9acdf2e34ed417863a764a8cf0329ba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78c1cb0542c96e0d2667b793ad975f51edc31bcb835299fb3ed39fa1f9cd67f8
MD5 7f92f4ba267bd115ac07bc0c9a2f4523
BLAKE2b-256 ab25270cc6590136af84e84b822179b46d521a583358270eb215707ca108a58a

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19829a7f4b12ccfe25e07782b9d7d968ecac0bb297d84270c3dfefa5fc8ec480
MD5 77691108a855fc4b62c90b483fe93db2
BLAKE2b-256 0aacde9a5e586b7fb6b0495026182b3dd063f66358b60d1d779268dcc01ae935

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f9fb43f7ee20a9660b388811ba63d55de64a4e88c205070eccabc0d58d9b74e0
MD5 68faba6bbdf24560a1bb65ceb5e875b2
BLAKE2b-256 6af67f4ff27f74aadc6c1c9af3b5f0e90d2de9c98b79f6c4cf5b7f23c86084fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7c8e949df762b450b7cd30687138ec38580d52eab92411a8af521020ae622905
MD5 ee4b99976bdcc4cbd4228cb7d61d0ad2
BLAKE2b-256 f820f47d62766be452c69b0feb1c76f4d35a9bab93e16c22d526462dd7018946

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03ee80e69e3f6668e94af7629aa184c3715939c3354728ad0156ac15f49e6243
MD5 be94fcf6645408a0d3cbf257d078d54b
BLAKE2b-256 64af4c44db579ecc179cbece33031bac990f32901771c9b1da363fe458decc61

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: koala_diff-0.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 9.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.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3227eed1ed87be74f9c32cadf86d784197c57b7338b7eb97085db42260c71d2a
MD5 1d1d63d79bda365a94febb3841c734b8
BLAKE2b-256 0c0a8879896ee2895f7cf64641e442c3c1adc0409c82759c0201a3dcdb39ec74

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3d1c71047cc1c7b0b40fba1def8d24b394fd8b58aefb94bd69349431d8569d6
MD5 fc1e665ad6bb216da6d459cd26ff7280
BLAKE2b-256 6d944691104a814f37b2af26777cdf38a977a3f66b2b1bb73e665d5187ab57e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2675d9371db391d23ecf927db2c09917cfcfeefe63c15192101cc45863a9e212
MD5 86ea5424f5e80c389a4aaf0f8195af73
BLAKE2b-256 0c22014f6fb89004d31945ded602cd445c4e80b4acfdefa25454aa006bfdc87a

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d5ee5a3499b51fff6f7842ae7dcf1fa28463b1c0605853cc5e165012d4326a05
MD5 bb038d264ea05d42b32671eaab292426
BLAKE2b-256 dd303fa19d429c27e8f8f44f74c92f966a7a1a0217803087fda910c9b73b4d09

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9fc5af6cb7f6e63e3d303707303600d0b923574ad8c05a42464ccc3fd00e4f4
MD5 fac42e17317a77a4f064d1d505278265
BLAKE2b-256 3a5e26bd6c1c56dc78848d5f35bc1687d079c59e0999dd07d042eb5019a96bac

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd471e7d8fd3fbefc33ae284c36429d71d5a81a1bfc12d328279641833d86c79
MD5 8b171ee3511bf1bed36b8465523c8e83
BLAKE2b-256 62be63e8014904d7c1cc7bede1b5c2ed93df08366318f3a3c0ffd60f7d446f21

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 063f25701bdc023de5bbb91f229a99dba3b70ef5e35ee8045ce431f76e83a244
MD5 9174a3c4665847e30121e7b21a23d2a6
BLAKE2b-256 c22adc193783eb79dcf55f547fa75e311db88e2a35b6c7d8d1312d808334098a

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: koala_diff-0.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 9.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.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 27ab20300dfe98a5f1c87208d2cc371bc8cfcfd5a174e32cf87dc4c4b1b1a2a1
MD5 a3276e6e555ed1ba85c9d8af35c95e7d
BLAKE2b-256 ea187da5ec59026020951dc33f0c579f23ba39c217f7c71812de262b55ca8e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59f85886f0faf03939656321b0d0f8782bcc6a0e32b19e1311618a256b8ebb0a
MD5 2c1bdd92be93bb5b45c671f234a69b73
BLAKE2b-256 645c523c8d977a9203a2c34a68c127df554873c2970b5f118570eca6b32cdc5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 83ee0389f13fca27f08fb0a0df2914a81d3cae5231c84974d48b27303c2fb314
MD5 b56c3d2aa371fb5fa0c93a37fce90f72
BLAKE2b-256 2356ff1b229d9d4060c94f34730ed527077891192abd27eecaadbd920fb257f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 09b0b7542e966c4d08ddf46e9f91cc553b8d5205bf4909d7267581e702fb76a0
MD5 6376e9719ef3f90569657554be34687d
BLAKE2b-256 5c9ea4e7de39bad2200fff182ca3d612f439e55ace610560bd29e9cd647416be

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52612ff9c5f104572becf3c674368d6fa8a7762346563cdc84c3421f14423b32
MD5 c82d7a634c2de12ffe2f4f0d85361e63
BLAKE2b-256 571401af0dbc9f47952f071a2d580bd28446a348c2bdc1254240d3f3693add61

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3eae3601ea1c42746b2f903efb67e616f1a42e5de78274f06d531081ddd533c
MD5 32de3ee5a336845b3190f3ff9dd1c4a8
BLAKE2b-256 fbaca3afc9800324c8c63b3d60f0efabe1764f41746a3aed29ab089d825cc719

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8d22184b426892764e36c45a0625986135088793abc43fc6a5504fd9fcc6a70f
MD5 c45797dcc63f365c6e15bad7c9083d98
BLAKE2b-256 6df1cd4872acedecbcc90019816d7e87ff08b35770c8e8489484073e5f58f5ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: koala_diff-0.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 9.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.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 11d509724ad676d8b82477839a29e51c6af57a198417c8394cf8a84c12f8b62e
MD5 e90c7f695e2adca7c51924439784e7b1
BLAKE2b-256 f10f7f756c817bc0eb273fdeffffbe8d7eb4bab3bdcbfb5e4f9328a0824833bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ca455288957c05a7a0980ececad0b3779bfe58fa019f1493836950074e69c06
MD5 8bf5a06bb33c25fd6872ec2024a4dcf6
BLAKE2b-256 46199fb2030dc36e30f6ca1c698d34fa44602369aa2a772b32f0025b8de39540

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 092e2dd9e2f206dc4d42cc2db6b60914676150de075d2df905c285eadafc8507
MD5 36b2681ad400477a4fb6db680834745e
BLAKE2b-256 28547fffcd13f972ed35a0256037119c4110bc87db438df588558b69f387a5ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b20db10240bfd28a97ecab731fd8cc757a3859c75e634d91fe8fe1ecd5ffe455
MD5 5cf30d2d122b4e320c6ac919bbfb97eb
BLAKE2b-256 7d57cdd3c693be13bb1d37fb3994e15116fde929e934455d001b22d19930a56d

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0cb5d6b886684c8feab8a458fe181bc78756cbdd884a0dc8033f66e9b60ffaa
MD5 aff44f74291248c8151aa0f90aad2ee5
BLAKE2b-256 f7f328ef03c9ec871960b76f8a39467b01343f0524b3fe20d6d1524eb0394149

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4599a97cd1d56b85d2e55e0dc242c78f7352b2f106c1de7b6567a54bd2ee871
MD5 7f0a66236655601c32b82dc5a4a7ad5f
BLAKE2b-256 199cc469164a50af92590faef607d72657abe245fbfb3dcc03134f1ebf2ecd57

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b892a4ac4abdc1d169a8418f8915c8fa534aac1e695669f8036035e9584284b
MD5 a0631764b0f148cb8f9ee7c3a54ba63a
BLAKE2b-256 978f571fa08af542b985a39345c2a3b889793926c60ce25786b1e42741e9ff13

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: koala_diff-0.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 9.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.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c9113986305a54a859c637e561fc649ee0f3c5d77f9ace873bcbf186f2d5cc50
MD5 d15ed414f9ee8b76c559f641fd408d56
BLAKE2b-256 cb45501c90e34c405b3a597b76929b6d8e5a66a113346d5c0a426a0639a7335c

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: koala_diff-0.2.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 8.1 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.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 17c78aa9020d91099271aca8caa1c8f28ff902211984f299f3c09cb93e596a13
MD5 ac10f09c77f0c67912411043a9e2c8a0
BLAKE2b-256 c97352da7cd1faed750f0b6d6f6b25b13fa8fb2f8a19f0b12331e6df972bbbad

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a2961454f7faa70c4949c9ed66cfdf11214ca61781a6d4373e65a4f044b15db
MD5 b613439eb9ba130957d2dd38ed801436
BLAKE2b-256 e01db14724ed7885c87b599dff7f74d777bbca6cc1a0da6379d53e65e70fea33

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 271521da69a2be041269f0a6f7a99aa399d02c77cf36dcf7ab08364941e35921
MD5 822231a2208b1b01e06eb40d8c98b049
BLAKE2b-256 40ada93d2705630ed18df1a7d5b4dfaee6b670521d17a288633547013a6ae7fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 168433338e115652d692e41c07d661f71ead370de7d5323feb0ee3f9e13a1f58
MD5 a90123153c7c33381a3c1ceb62508e1a
BLAKE2b-256 36d2e159a4eb95af6e13ad897fada3980240351cc1ce31a4c5cfc5ce60de4dc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef959dfa9156d93efc81567b6c389ed2be29b9d0e01700ac2259160a9c84cbfd
MD5 e404b91f73f5e07ecce3576b0ca0f504
BLAKE2b-256 43400f2d41626b883a176e72668b460f8e0d0c9ea9d3a8a253cc442900b8d4e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1af4f266e1f84912dd59f8cde855d6a252fc59c1247b200f22d956a6eaa32ce1
MD5 4b8b045cec63e37f5a6a63a5b4289a56
BLAKE2b-256 4b615c25f47796d1c33257c8bd0d61ebdac005c36bbd58ea66ffc641131e0822

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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.2.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for koala_diff-0.2.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82162cd87784f990c0a828d635ca5ccb7661353e3b05f81a3c3403de73bee770
MD5 732cbb8cb3870e13edc09fc8a347b05e
BLAKE2b-256 a41828023e339996fbf45215f65d8ab56a0b92d1f7b8e381a5db035e8626c9e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for koala_diff-0.2.2-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