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.0.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

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

koala_diff-0.3.0-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.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl (20.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows x86-64

koala_diff-0.3.0-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.0-cp314-cp314-manylinux_2_28_i686.whl (20.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

koala_diff-0.3.0-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.0-cp313-cp313t-manylinux_2_28_armv7l.whl (18.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13Windows x86-64

koala_diff-0.3.0-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.0-cp313-cp313-manylinux_2_28_i686.whl (20.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

koala_diff-0.3.0-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.0-cp312-cp312-win_amd64.whl (21.1 MB view details)

Uploaded CPython 3.12Windows x86-64

koala_diff-0.3.0-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.0-cp312-cp312-manylinux_2_28_i686.whl (20.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

koala_diff-0.3.0-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.0-cp311-cp311-win_amd64.whl (21.1 MB view details)

Uploaded CPython 3.11Windows x86-64

koala_diff-0.3.0-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.0-cp311-cp311-manylinux_2_28_i686.whl (20.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

koala_diff-0.3.0-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.0-cp310-cp310-win_amd64.whl (21.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

koala_diff-0.3.0-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.0-cp310-cp310-manylinux_2_28_i686.whl (20.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

koala_diff-0.3.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for koala_diff-0.3.0.tar.gz
Algorithm Hash digest
SHA256 c41cf4c671219bea6a5122d0f79384cd19cab404ee1840ec395297cfb239694f
MD5 0c683b8f59ef92b1397199eb58afa5a2
BLAKE2b-256 423e3f96f0c162236c16f169f4da2df961c9abfddf86d8bfd9007898aab2bdf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d61153b90345c869768adeeaabbcbc1f55e8ebbb3a301a1f4ee3907022db29e
MD5 d7c37a993311fbc6bbd6289da05d44d5
BLAKE2b-256 3a0abe100b5a1ab62eb7bd6a0cb6349554746a1a5f32e194dc894881646da107

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c1dcb5f38e530927af31c51829959f120f1b4d6497cde43a3044cbb457cb8d78
MD5 b56d7f359c2b5508af5ac1a43c022ba8
BLAKE2b-256 8a0975ec4c30ecdbbbc1f8b735eec3a266f6813a0e995c90e0303b383b1fdbd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6a8e12d6ad89b3cbfcb146ae6108db087abc7e0ae9dcc232a541a6d0ead7e12a
MD5 08d7385d8c1273d389f9f3263ab185cc
BLAKE2b-256 95bd318548b92a3b5f06f3c23f741da47b648f1e4478fbef48cb509c1335fffa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a965f0bb71c383eb6f2cbc222c1dde5e3b7f0e967fe3e6832c4ea3175f3b4a62
MD5 c684fbd5bfd5db015c6504161e3df4da
BLAKE2b-256 07083f99b077dc143ef0029c163af65e6182b63adc7035700dcdb31ab830cddb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 eeaef81fe76e7f2c8d83201ed485b93959af4c39e1428526e82a0c01e7d014e8
MD5 465115a3ef4c54fafc79791817486ee3
BLAKE2b-256 0cb56a1e8e38373470d808903bfe7e950d141264e3b9bc98732fd75ffe2a1e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 113fba78913bdeb541567b5e99ad96a8b7c9e4f7f1e2604077a39bcb5c0d4e18
MD5 2f0d2338dc6606093753159c3a60cc49
BLAKE2b-256 ac32fe05a1de609fb184039a538608f49638496c464d3317c71ae148581af13f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.3.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 75c3216850ea5f2bee96448042be0dcb2c277d7f77aa826cfad3dc56904c121f
MD5 cd03db94ceb334cc42660679c6141611
BLAKE2b-256 ca2baf02f2dcba3effdc444526407c9326fe32620e2d4e41fd050d274a40f3ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 976428bfd435ab43cb4682dc6ae606a50381e63e259b6ce4d26e8d78bb80f710
MD5 5c665c176b6b3093a61f0a7fcae00026
BLAKE2b-256 14ae4c8e0f6db933736e7f0b571f86785f1d1111ef3549e95dc557e5fa34401c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 29862bf7a406ca810a233349e40f96638314d4d4437d9e10082b4162c8fb4a79
MD5 233555842c1475fb643fb4e18c786c59
BLAKE2b-256 dc58e90d7e8a9675bad68a0f58d442a3e060b66f048e9cc0f0a382e3ea84fd2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 cc5475740136cac89cdb74a1dc9ff271c979b1001bae93e26d1332c8781109df
MD5 27a3706ea0dfae575fa643e1aca89d78
BLAKE2b-256 a64c502fb5d8ba9ceb2aa7f0d7598d356c073fc86f7be121d2cf8be515e0f83b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55eb79f125b9111f55ad48088c6ee0abf1271b35cab531c5fbe6da7853ea7e6b
MD5 1923e0290dc84d0b6f0734069f6a677b
BLAKE2b-256 557f701c772820f34c48c61cfc78e81196ff5b00a50d528da4d8b5dca0f27364

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4dc0ebba31b7037a620296aa6a8a57b86d6ae44d30960571be73a524208c732d
MD5 f635e03004d17631f46a2af8a975c41b
BLAKE2b-256 5fc878728e47f6c91efe36870e1061dbec1ba75ad9a9a3552723ceb1b77169a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f1539edd6e74c77622f01f1657c7853a64cdd528e20672e55ea382f9a56f282
MD5 dec3b053a0a87ef8b562e16b51ab1943
BLAKE2b-256 679b166d1d5dc26d816e5db295888a28cf3841b5b4d73e1d8bb1226824753974

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f633727b9d8560e4e7158b1fed9e06de0464507f0c2690bd6d12ec4bd172773c
MD5 88b129903b0d14625c9ae223bca47111
BLAKE2b-256 975a5cd51d5fefdf474e89e44d5feaf2e60f693cc8d9884dc72b60a3ed5d104c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5547f7f00f77ad2897abb0d1e5be86e5f8f5bfff27f9781c43997a80a812c2e2
MD5 96f27844f91bbd64ce469c044bc229be
BLAKE2b-256 5af4fb1e3978f8ab882d478708c2e277c49966acd59322f923b63d7d53b2f786

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.3.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 47bc4d05dd6a8753065b1b30ed3a7224d71ba981d459ca6e18db9d0d94478186
MD5 cf347b76f7b033c3e65a7f540e57c9c3
BLAKE2b-256 2147e1bc683d1a1acad8c3018b8ef34b4598b7537a190f154d887c92cc4867bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e34c3a4891deda32c5f95202a1dc0a9441ce6f8e7644f7c0976d0aa7aba302a
MD5 ce0f980603e7da376d8f0c9b963942b4
BLAKE2b-256 e855707ee3da0a5f83640858524ed512cd35bf124dc70a63daed4115a78836a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b257abed9e49dbd9153ef23db56be0bc1779f668915e67a261b1aedad35a5524
MD5 e0854addbc84ccf369fd02962c12d740
BLAKE2b-256 41e124e74f43656df7e9eccf112a8b6bf08929cdd6b2aab5200518d4c74d7c99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e61e2979fc21c3b9bb5890140d0fceae9309b78b3888201d2ddfe5b6c62d920a
MD5 5f3d7b8fd63609970d8ae42276d2deaa
BLAKE2b-256 b89e847c0031ceb656407e19f71f0c70e19b1427441b6a880dcbd9f73db410f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99ee2ab46055f89cf86e30040fcdbd914e987589a4dd893c5e6f73069e785444
MD5 ceaedd53eb27af63f1abb6a5bd344ed6
BLAKE2b-256 0938b1bb407543d89d34c5949002fdc27ebfc687369005eb7401e8b05e602bb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a48620c7b70eb0d73143315dce23c7726a617aa3f61e2501baea2af33068cf91
MD5 8404c6823284806b7369f293929088de
BLAKE2b-256 a026f7fe77f3dd30d9b93d226cc641ebfc140d0cb1e284341126ee7e47f1c239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68383b12b7309cb7bd4e83bd1b2855a12c8dbfb5ea7b484370f56c07c98f9f59
MD5 834eab91a33a8fb474efa1195ed4a08d
BLAKE2b-256 aa6b2276137ea9cd08db8e15b63a5b9e1ffe795e1a024ac6406f58ee737b389e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.3.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ff88dbeab0691e59a5c7d53e98f558f6e9d3114c4f9ce7acd391acd861a52b8e
MD5 aed05ed7fe6be4507bcf793cbebda661
BLAKE2b-256 362485d1c35e40087c8e042095ea580aba3418c68b5596db93ad102133afab80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7a2a3b1eb08b96d30edc8e487d5ac10b5c9c9eea40f2937fa6eae65f4d5a1ad
MD5 2ed7229dcc7deccb320282656181a564
BLAKE2b-256 cdbf6b917c5b0ecdda553a49aa7a0eca8ebad18ff2de613fdac2de71984703f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4488801b0e87a0db50f698206ee196de1943d8a4d7e7e821e50ef1a4f728a2c7
MD5 a198a9de6e55f984351741245428428b
BLAKE2b-256 4cea37825a53be1ff18bf07a1ead343022180321badefd2258d310cbbda0ba1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c3407ac07717288dadfadb0b732ec3c2ca2e49c64b06d72549baa32bd7cbdaab
MD5 a195dc528e2cc05c5952b6a606c864c1
BLAKE2b-256 1ac3edf02d3e0c2dc538f45a21c52127acbda7b649ea467bd410d8fa4f4e81e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b19b4c4fe8b62999431dbcf425674df23fd7ef8ae35fbfbd26477e7982bba98e
MD5 ffc9a484e41ca80f02881bea0e26de72
BLAKE2b-256 f268a0087f3f70706d1ca0129e3fee756ad947f5cfa2a17de78691eedae7770c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96dd9b8c40669c76a9784639c89691ffce7e50d16a549c94709c44ca2995f1f6
MD5 4b9ac5068fe68bd387488e7e5cc8d814
BLAKE2b-256 607a274fb1a33abb41822f901ed1da56da07d0b88d1d9a92e5193771877749f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a89ea620b03fa699f16fd4822c4235870ecb4fd74d8e163c2f448b1fa1ca79d
MD5 75c252c7e7864e6c5bbb4a2363d452b0
BLAKE2b-256 38e144978031e5859fc4f2088683ab91b0e2559060228444bb35ff1b11862d68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.3.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40f24976f99b29ba0f985ad620719763a08395913ac90cb49073c7b1d120856c
MD5 67ebf9304200c985cabe13a60b82acb8
BLAKE2b-256 bea2f57ed850d48b07be2939517ad106b24b7ff5b4d5c022e74a252ee5b5767f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc7663a86e7e3dd90f1cb3dffb157f1ac7dff43fdd06f97245f822153a9c210f
MD5 2b80018b7922fb4b2284c2d4b617b2ea
BLAKE2b-256 74407a2e827b114e78cfa25f77159759a773679787fa10e2d1d649d525cac95d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9120817ce43aad61d97f5929c37a5b6e1e1e52b1152359a98c648b38fb0f1f1b
MD5 c8527b21ea1b3682a5defb789a4a075b
BLAKE2b-256 0f1c76486b6c19df8b4c7f146bf27f256f37f564dabc68ae9e1603bc91611f21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4adfd8528d77c9586252f6ed42ae28c9eacd1b345157f2ae70d75e9ecaf2342c
MD5 a757ab4e0c5b870b34010a60a4049ef3
BLAKE2b-256 9516e53cbf036a4a681f61961674860f4634bcd9f783a2584db950e78c1a78fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e842f7a64e01e5e4671cfcc11145ae50e3b3874ef6246f27387d62517a3a64f
MD5 8ac883e5a171c91f66dc84bb71adda14
BLAKE2b-256 8af4682f98a3661970bac12dffa8731392094423ceb35fc137364bd74ee900ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd7ce56ce368c2ad100495663b228e5c6275e92e006deae63dccd11796ba1a78
MD5 d61a1978bcb4d2f97aef783433f5cc13
BLAKE2b-256 8ac125f7d45f31838a39c0ffe6c5f0c2db72d9a26a6995de931a6febd7fab84a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f69b211497dd4a40d4732cc97ac5c0156d8958eef40f22a1c6e93d0808e93cc7
MD5 9fa2d3485c13b021e324083c882f8d43
BLAKE2b-256 cece7aa13b05ed66f8e1dec5172d875a1226d76453a40751c4505e550e1f35b4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.3.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 57a3bbbbe73c70eba2b07330232d4175b88fd79068a5fdee811898f8243e5c10
MD5 7bd384e5dded1b266fdf14e4b9baf396
BLAKE2b-256 9f9e048d2df8565c9632a8086aaf2b9f4189d406bd36919dc9964b11240fa17d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.3.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2ec3e7306a7114ed2cfe00e5a580bb918579e141abaa00c00ff9e2b7c31b9989
MD5 53b4aadabb69878ee7954a7a337ebfdc
BLAKE2b-256 5911596643613e4825e5ef274116c53f9acfc12c8f3ccad0901ee3c6b6917215

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5325c68e77f68044ba306ba715d76f9f9e5cc14b73bab12924d76a71bbfc0f7
MD5 b92d1fca090320d8236df781e4eedcd5
BLAKE2b-256 04c26e72dd02871800578043761b4cf9c059e7cbd5a3ccde65129e537b23cb3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a798a55d9262482ed6ac6e46b9789b60ac2ef324af636904cc443b97a6840046
MD5 25e385fdb4c56250eeaea04df61ac1b3
BLAKE2b-256 4d5a965c0d4ee87a7e6e99a922941df6b4a623868036cd648666ab9beb0396b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3cbbebb1d27e022c85fbd75be2af523239389fc88719ae4a39bcc2a98f968530
MD5 1e2ced67bb5760925c55d9ae3f275d04
BLAKE2b-256 9f56c2b233aba07d12889b994819cb25740b8c841d8d713bc4b751e2262e8578

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7001db53012082acc747fe5bd54f564e7fc0c89220e1e1c450c4543df945a5a5
MD5 6f3a6913f36fb50c5574b63c3d14cc02
BLAKE2b-256 3b3a5eea1d2d7efdba7e697fdb76ded82abd099ca2e7e3d80fbee385705103f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4ffaa83ed8e1853b102059cdf41cd221b6dabb31cfdac2e4a9f7370b1060bab
MD5 bce2b65775acd7fd220a3bb2be990b26
BLAKE2b-256 a66b2ebfd14e684d31f8071fc0e2f53e2f9748066a7c3c296f47422c55865d7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0de2ce87b9bc33d4b3a02354cb7a98ed19a4d10b8a608995c358ae894b169caa
MD5 7973e825c40524b7d637258b97253ac4
BLAKE2b-256 43f3dfffa541ab704a141a5d61b0c506d5cac90355d71f491046eeb4d9d83347

See more details on using hashes here.

Provenance

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