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 Downloads Tests License


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.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.2.1-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.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl (8.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

koala_diff-0.2.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (8.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

koala_diff-0.2.1-cp314-cp314t-manylinux_2_28_armv7l.whl (8.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

koala_diff-0.2.1-cp314-cp314-win_amd64.whl (9.0 MB view details)

Uploaded CPython 3.14Windows x86-64

koala_diff-0.2.1-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.1-cp314-cp314-manylinux_2_28_i686.whl (8.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

koala_diff-0.2.1-cp314-cp314-manylinux_2_28_armv7l.whl (8.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

koala_diff-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

koala_diff-0.2.1-cp313-cp313t-manylinux_2_28_armv7l.whl (8.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

koala_diff-0.2.1-cp313-cp313-win_amd64.whl (9.0 MB view details)

Uploaded CPython 3.13Windows x86-64

koala_diff-0.2.1-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.1-cp313-cp313-manylinux_2_28_i686.whl (8.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

koala_diff-0.2.1-cp313-cp313-manylinux_2_28_armv7l.whl (8.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

koala_diff-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

koala_diff-0.2.1-cp312-cp312-win_amd64.whl (9.0 MB view details)

Uploaded CPython 3.12Windows x86-64

koala_diff-0.2.1-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.1-cp312-cp312-manylinux_2_28_i686.whl (8.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

koala_diff-0.2.1-cp312-cp312-manylinux_2_28_armv7l.whl (8.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

koala_diff-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

koala_diff-0.2.1-cp311-cp311-win_amd64.whl (9.0 MB view details)

Uploaded CPython 3.11Windows x86-64

koala_diff-0.2.1-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.1-cp311-cp311-manylinux_2_28_i686.whl (8.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

koala_diff-0.2.1-cp311-cp311-manylinux_2_28_armv7l.whl (8.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

koala_diff-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

koala_diff-0.2.1-cp310-cp310-win_amd64.whl (9.0 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

koala_diff-0.2.1-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.1-cp310-cp310-manylinux_2_28_i686.whl (8.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

koala_diff-0.2.1-cp310-cp310-manylinux_2_28_armv7l.whl (8.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

koala_diff-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: koala_diff-0.2.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.2.1.tar.gz
Algorithm Hash digest
SHA256 25aeb05400b74b987dbc16c1f57b006fc2dee9f178b212f0b5ea917098263c54
MD5 b4d3e588668452e2c837c70dfe79841c
BLAKE2b-256 682eabbb548204803e5cee58b36ca976acc3e03a2ee51f4394fea2ec341b9309

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c905b08e54753e61afb005d55b374ea610049334943ce0f58d99ef2b3fba7100
MD5 3c827eb08e00b8c74c4e82e862ac3377
BLAKE2b-256 c3ef03a6eab8a9699137c86f3395e54389739a6467f08d0835b06cf185c689b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5cd868898f80dcadd3434bebb3506d76818428e9527df27ff1f673c0c1829107
MD5 ad9183f78c36ae7434a3d619ad2ef92d
BLAKE2b-256 1556845b28c99563caf4d422da77ba5fba768cc0592771079e28e61b8b14d24f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1157ec53c6e448b1d9280050ef0c9797b93869f087870ccfca0d0dcdeca38e98
MD5 e18d022c4fa4edf59dddfcafd5121b14
BLAKE2b-256 80120d93ede50e5e64e4d2e8e06fdac48b955e778aa55f63e89e4e66dcc24775

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0bc4c23293ca7b7997d7ce55d43429ce2c6532fe415d75045b186fe4a97cec87
MD5 bf0fe89fdb95c04708ab74134cdfbefc
BLAKE2b-256 3e70f20261269753645b66df9f4a97d20e83e55e30cb64aa90138caac1366b4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b10f4ca9b90ab9f72ef5d9472e031534f5e8a7a5f35fd514ad5ebc0702dd3e77
MD5 6833df53b0c9d1f8ffa25534c04733a7
BLAKE2b-256 f14d1c2c3ea06121c2b96608c5c797e80d311ddc5c8b2ac4cc352ab60e30487b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c42b9a21ba1d88bff42c368578cde317954d3b967d0f8aa465b4f18ab5f9ba44
MD5 935521e8740bb3eb77c2fa0b7f9422ec
BLAKE2b-256 e75ce89fffca0c70917d7e87eb81eeb07be5b360fd17e63e1b89505cb839f235

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 9.0 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cb0aaafdd95e56dd70a1bd14cca1e3ba62509f036811a3634c202612fef87cd2
MD5 1090643a81efa1f50cb2842f57fdaf08
BLAKE2b-256 3e7a1fff785239f7e3a30b985255de1cfb360cc877b79664e56f7ea91080cd4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c4941fa424db24e43e44910c9cbb8625e743eccba58e9ba521a6daef7136f51
MD5 e2229f95f4abf50793520bf4cfb751f9
BLAKE2b-256 99c8d21e8409eab6528cf43f79887b0f4a0e0930b6e5a3115cd58371688289dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8f5eb723b7d21f6a06eec8ed1c5e3d509260438e5c4c11dac0e56c858516917c
MD5 18499dd63fea21d115fd2b8bf41fa37c
BLAKE2b-256 fbbab7224eb661aa2ce17b2f29b989e9f675f7b746caaa4f71048ada5beb9329

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0bcd0adfd1605df54a47de9290d13a18d5f66e37679aa99e7bdcb4ed2b36ebe4
MD5 4a91b62232348770afc29639f2cde969
BLAKE2b-256 92d589f25017464170e71913e2203f1bbdfbe31d55ae26a07caf19ce1a44df7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c293df1a05e6438b912e5be74f6cc4f942050587549ef1dddaf238e61e1d28f
MD5 074b1783bc3fe46be99600e2a3a1ba7c
BLAKE2b-256 91dc6aae2093f151663fcf4339a0ff254d45a26b3889aaebabe2c0aa69a7ac55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7052b32188f91d32d25625b34261316a752790a46c0edc5982816a540c1843d3
MD5 d6a1f3da73409f40470c309d23360155
BLAKE2b-256 e3e5ea54d12d5e75801ade95486a15fc9b19ead92221b866a62d9d8f5081e6d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 63b29ba7ad6540a104beabe0756a258fa4ba3d0f862311343a09bb9ff797fb09
MD5 f35057ec9b7b6ef28b334f65899c518a
BLAKE2b-256 111d32bca4582a97084e745130a9a0a5e1601577055dc67c51fab6ec10cdeb9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3689673460680323c13915eb657148e46a70e48ab8a24871080d275c1d1b7795
MD5 ad0b50bf83deecb77778f62b25a6d58b
BLAKE2b-256 495462dcd88adf2ec0067f6f4b2c9ea97fb9b3a5401eca2a61d6a21f2f289f5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 055f86575f210a7d4b7f67ebb7c87dc3a8674143bf6fce25afb08ae0a317fe2e
MD5 016c724ce8c357856f16b34ca937e12d
BLAKE2b-256 a1572e90c70ef68aa101ba016482b4fccdf1c0b253381a8d6d8c297809621817

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 9.0 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5b8aeaba3abb80469d3c887f0043044809327310f69642f22511a27fa4476799
MD5 88d447a64aa4cc4b8b540960b615ee6c
BLAKE2b-256 fc7dbfdb9f1d632c7ec3fe229d69f68245d8f95675c2807045bbc894bd8c9cec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a19e84947cf57156399eb08ac4eea842d3ad9e857e0ed98b6a0ec3349cfb892a
MD5 4faefdf6784bcb7f9fe518dcedada960
BLAKE2b-256 842a3a21a3cc3620ec6fa9fc0389c27206e87af70256cab376b74d04a2fb0662

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3ff0dd323fadd9932bac588ce33a06b21309ffa01c79f3479be0e8a621c4afa9
MD5 ce8f943b0e88c0029f8317c50803b46d
BLAKE2b-256 f0b19bf6ec41dd62c06e1fa91cfec6acbd98f51771a05245f125facfacb70780

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 188b02cc339bd3d9f39f802558eb7d72bc9f9e387200b97e0aad6b0a509b3080
MD5 3a58f3c104d4b67f05b9094b9e4174bf
BLAKE2b-256 b87da38011e8c67a0b4bfdbeb1e52f68addfddfde0b54168b11b004eb305eec4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bd241933ca5d0f926a472ec821828c28324fb0ec255d595ff56b8bb4bbf1ae61
MD5 e7d8b31e7aff987a789e229dbc758c66
BLAKE2b-256 1794f6a50e3108042b18fee32a98622f84a0ce64f6e01ef167fc3ac1069b4ba6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01b68587c153e273de4b1c52f1f7337643647cbde32da8f18d48a14c5bf63b9c
MD5 2962f171fc5a4e075c90bbdc5e8f185c
BLAKE2b-256 4066ddc5b6bd4c66e249c77d37ee8236eaa25dc9bec6d8c3e354b554fa95c277

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c840476f4eefabfc140a2b59346508075cd99596ff4141c6d821d1ab10dc312
MD5 c40297e13f485d405abb291f291d4a20
BLAKE2b-256 f30519587ce1c093eb9644351cd5d8482006b1fdbb55ec34601f42cfb23572ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 9.0 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b7fcae5dafb0c14ff30dd57bb105ba382bb6d1e67b99fe78ea3062e6207b390c
MD5 9faabcc3a247b98f03a1ed54b30235e2
BLAKE2b-256 dabd0a249abcfca010bac3733ba935ddf2d3613d10d06c3f3dc5b05165ee85c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6da6c77a18f704ca13f1e998a78ee9656671cff50f413eca640a0ccad8a59b8
MD5 a1efaf94ca820a94285fa37f1bbabd5d
BLAKE2b-256 b1d566f1eefc01f7876962f933ee4e4538de3dbba46e29a60de542160a45d178

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3d888818eff9f8b60748098cc3501a01640901a86671968a2649333bda171ffc
MD5 e88fe5746e52077f805e2193d128b5bd
BLAKE2b-256 cfea3ec41c5f418575e19a793d64593fdb6c5afc9351129208dc5f3e7efa9c9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3a3eac88d90d4a2b52092c70596576838cc590b217664f66581ad8ebb8720a97
MD5 589b8b3112413fd869e5b820247687de
BLAKE2b-256 08acd75fc029116e32f1a0a241950e1bf33b895fbcb69d2f6f2ac17e4a37e5d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bd1ed4a84c610de98cdf958f36d0f5fdcfb929fab6ef9c2c26cd700dcfd6586f
MD5 63fc43f07395d85269c2bc75b00fb35a
BLAKE2b-256 81d16b846dacc0ec335c520cc3436a620ec9d8d32b1c0996594e132344161b10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45423ea659200c682fbf8d99089053481b5bfdccfc0632d5a81b0c8902d2bad5
MD5 a13a62dacd78331c4fef2a94a79e5eb2
BLAKE2b-256 c94d476bf7ca798dc2832dd97d5fa5e8135b4b68d43315263e17d4f111da0ae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce6aaa932b8fa2294fc6c2ab619715074dfbdc6de273a0434e1d5e0f2abb7553
MD5 8636f8f096c04555f75d26aaf8ceb3af
BLAKE2b-256 ca2a567833a402d4e9995909fac0bb03bf00cd902a0ae0d4711a04a018f0f162

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 9.0 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4486305c537385cd23b9e3390ec30fc05be477af2862e4cd88358f9487a59012
MD5 a2eb2d2bab52af2c6b8180c2dbcec0c6
BLAKE2b-256 2d872706b8995d9034d4ca722775868b8fa142439acd8c07bb2575e4a19058f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2385d9b00253a536059cf1e281734fa9f8afddd7895f32473326a8ede11911fd
MD5 0dc372f94d954bef612412f80a7ce600
BLAKE2b-256 c68d8c324d3e15cead1113f864d2453d81c7730783b45d11239be9d9fe3730dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 295028cc3944be7af604bec2aa30b4fe93346424c2c6747f1aff80d5a16c9bb5
MD5 c5562f8d6fdf577f8295b5cc092de227
BLAKE2b-256 16c4645a9a8b6dfefea397d5ae791232727527a4ddfaba8c0a1aa12742c9f84a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9ae9697db15ff865b67e3d7134a73a31244f9e91403df9382ddec9edbdbbbf77
MD5 7fc2471bafa6f81f898bd9bc205382c7
BLAKE2b-256 c218aef8937bb96a31f8134e5d8e0356bd78ef3943ad096e2dd117adc753adb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2793c2f291ea545b1644b0e45ce4670f53342507d1dc6a5366c4e23321617d24
MD5 e7d014067573d01ff42c4057d8447249
BLAKE2b-256 e5f74adf9473a06911d5326be50a35666502d8799073605234d1deee8c51eaac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3494b4280197b54bda093bb3f2a8660bb40f2ab1322ba7fe4c6f34d0c638eeb6
MD5 6b3be8dfcca2b0c66c56287a8c9e2788
BLAKE2b-256 c508623c52ec01882efcb2f32df0f4501eba2cd093e2cc8fe0be299a3c10d475

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52bebb24765195d84ae14dd4bcb91b076ac48145b1503940c2290c5203996ed8
MD5 dd0d21a5b9c31eca6c4abf7a52b90107
BLAKE2b-256 4bd380ad0197b521b47f7cbbc3bd3475d65c6dea535c2cab2d94a1b3d530a6af

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 9.0 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dfac5875259d6ed135d6823dd965e43c13392a7f218a0d967f60efb18da3b4a1
MD5 3808726ec5d127e7bd3f760ca87fe034
BLAKE2b-256 e9dfbb1d979aee8e3a404897c3895f3900dc6a1e5673deac6f30a66ad3ee49b0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.2.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 575cf25ebd3648a838649c51757a18e849601a3d3cfca900cce296acb346a625
MD5 38c47b102c982f20a1a74adadfce6510
BLAKE2b-256 5a1781e4bc5f507a89c5117c75b8fd9b8989e2d7adfebc6ad27e6b54e08a008a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cfa0aea3dbda44483da54ab531cdac632b04b830e50038283fd1c755eb276b54
MD5 ac88d2e59fe2092e100e0597d3067880
BLAKE2b-256 c968d0e65390f424cd4e599b330d03d85ddddaaf3a260e660dd013f00d242005

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 17750635b4c72da457308304f2e497aa4f7e5396989da96c9757412fcfcd8f92
MD5 f11d1f30c40b89eb1ee3ee8ac3336bec
BLAKE2b-256 af2402e4780977a623ac81ee56261ae41957e35425ed6d5800797a053666122a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3fa05757bb097d42b4d46f3a44d1c5864708ffb0d9ed446098f7a12f3ece57ee
MD5 600f2009e74417b2cd521f92118b8675
BLAKE2b-256 04d5fa0e9c4c78bb4066aebb26736ab4e0378fece1343bd51ef09fb67db1cba4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67c00b44e81ac333106ed95fe9b435d50fdcf303eed3315463f30e2593314c0d
MD5 cf0bebe49e57804c613cd4311766a357
BLAKE2b-256 ffd114c84efabe8e03eaef39922b9aa5b90f657681eaeb478db10f39a59c6130

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddc23ceb23c1b057137680d2f24bebdff83c54db2bc587009f83cc6190e90471
MD5 e8b9c852c13bc84651deecc52d2b2f07
BLAKE2b-256 bf0a1e393028365328c952975dca81f72c97761d4a944cfe6229f88dc05f58cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5b1d11c06a8bad254f25b7c2bbb53cad24ff20adbd7153e77af8f97767c588a3
MD5 718e4858b5d5b079315b5d3f8dc212eb
BLAKE2b-256 e7e603405b9054353b86d2e0e9814d11065ce723dd04038e4233f7985da0cc89

See more details on using hashes here.

Provenance

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