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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

koala_diff-0.2.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl (9.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

koala_diff-0.2.3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (8.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (8.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

koala_diff-0.2.3-cp314-cp314t-manylinux_2_28_armv7l.whl (8.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.3-cp314-cp314t-manylinux_2_28_aarch64.whl (8.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

koala_diff-0.2.3-cp314-cp314-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.14Windows x86-64

koala_diff-0.2.3-cp314-cp314-manylinux_2_28_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

koala_diff-0.2.3-cp314-cp314-manylinux_2_28_i686.whl (9.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

koala_diff-0.2.3-cp314-cp314-manylinux_2_28_armv7l.whl (8.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.3-cp314-cp314-manylinux_2_28_aarch64.whl (8.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

koala_diff-0.2.3-cp314-cp314-macosx_11_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

koala_diff-0.2.3-cp314-cp314-macosx_10_12_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

koala_diff-0.2.3-cp313-cp313t-manylinux_2_28_armv7l.whl (8.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.3-cp313-cp313t-manylinux_2_28_aarch64.whl (8.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

koala_diff-0.2.3-cp313-cp313-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.13Windows x86-64

koala_diff-0.2.3-cp313-cp313-manylinux_2_28_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

koala_diff-0.2.3-cp313-cp313-manylinux_2_28_i686.whl (9.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

koala_diff-0.2.3-cp313-cp313-manylinux_2_28_armv7l.whl (8.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.3-cp313-cp313-manylinux_2_28_aarch64.whl (8.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

koala_diff-0.2.3-cp313-cp313-macosx_11_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

koala_diff-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

koala_diff-0.2.3-cp312-cp312-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.12Windows x86-64

koala_diff-0.2.3-cp312-cp312-manylinux_2_28_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

koala_diff-0.2.3-cp312-cp312-manylinux_2_28_i686.whl (9.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

koala_diff-0.2.3-cp312-cp312-manylinux_2_28_armv7l.whl (8.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.3-cp312-cp312-manylinux_2_28_aarch64.whl (8.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

koala_diff-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

koala_diff-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

koala_diff-0.2.3-cp311-cp311-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.11Windows x86-64

koala_diff-0.2.3-cp311-cp311-manylinux_2_28_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

koala_diff-0.2.3-cp311-cp311-manylinux_2_28_i686.whl (9.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

koala_diff-0.2.3-cp311-cp311-manylinux_2_28_armv7l.whl (8.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.3-cp311-cp311-manylinux_2_28_aarch64.whl (8.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

koala_diff-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

koala_diff-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

koala_diff-0.2.3-cp310-cp310-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.10Windows x86-64

koala_diff-0.2.3-cp310-cp310-win32.whl (8.8 MB view details)

Uploaded CPython 3.10Windows x86

koala_diff-0.2.3-cp310-cp310-manylinux_2_28_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

koala_diff-0.2.3-cp310-cp310-manylinux_2_28_i686.whl (9.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

koala_diff-0.2.3-cp310-cp310-manylinux_2_28_armv7l.whl (8.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

koala_diff-0.2.3-cp310-cp310-manylinux_2_28_aarch64.whl (8.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

koala_diff-0.2.3-cp310-cp310-macosx_11_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

koala_diff-0.2.3-cp310-cp310-macosx_10_12_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: koala_diff-0.2.3.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.3.tar.gz
Algorithm Hash digest
SHA256 d87119c8eb92b348379a8afa262a1fb2abeb49c9d6f16f9846086f74be47d7f2
MD5 c9b4f6b666b79d276da844aa5866ccf0
BLAKE2b-256 7b31bf05489f4b547292d4892a7fc5d4ce42f394d592f7ae63f5d10996a59b74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68c6dbc62f0117b14c75cbe95bc5a4bf69d7c1f50dbabae0e7559c304d650222
MD5 cb44aa6860b5728b27f543d9cff63723
BLAKE2b-256 2c5c893d4610520fe9a17d7037b2e49863249203ffcaf024db555fe9f1bb377c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 cceb821b980c6ac760596f09cc70cdca2713dba008401117cc8c51ec50f9677a
MD5 38beee671c1efc0b0ddd2066b3e54a2c
BLAKE2b-256 2d0a1ec80deb8d185141182add40835a9432dd731710d8dc9ea4898079473dc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3901de2488945925aab4e89ca7b0f8ce4a4a3fb4a613ed1b9a68aa2c0c90b32b
MD5 1bf3a2f0f89a19d7bd144612b64e3829
BLAKE2b-256 97516dc07c892fe3b8a137b4b13ccfd04901574b041fcaf6890e057ad44b0372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63c2014fa7602fa73064eb8b82251d0caee70cb3812ef07716ac64035f7ea633
MD5 1a6d13a9e83f9b4817b743e34624df2c
BLAKE2b-256 3ce779ad7e26aaa36fee9f1944c8c3656c9761129bd163b0d0455516e6a4700d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 23a74dd645b8d646942bb439dcd70c807bab3525fe5b93ff258ce2bcc2c41148
MD5 2cd5ed1c91dd9eda37120015b61a0908
BLAKE2b-256 40cdeb7152eecfb70b892fa12dd7b8febe68d6615d62ec86189747fbe7211cb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 18bc3ccbc822d01221ec361e3c317f9d33ae27a987d9a0e8a1b795d32201d191
MD5 43cd5da521dfa5fe401ba3694e23dc41
BLAKE2b-256 2cf8a6be058af21bc17a5d480a6614ad936fa88dcb747b5c30e3f401fe85fe45

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.2.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 9.8 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5e69d8745701a6acd6ed15b3763f6406080a770b09cf111afeb02d76813344dd
MD5 7a9112444b15f1431304de8c1a062a9e
BLAKE2b-256 766d410c22de71a0a1998f415ea4a5f2b021fc7382f9c6e0813a0449fd4fa93c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8325830ccb9f70969f087d8ace736490c262cfbdde1d86954b38e9e72085401
MD5 03c5233e6daa17a4fa3cd92abdf5fe0a
BLAKE2b-256 c78a3b8a25fdeca6a35c265d3f2d0d7424fa719bf4ab773befba8b0ebb21e3fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 653a240d2a860e9da84369f49c836be759abac553a89bcc77cd357a66ae47e28
MD5 0bfebda84c87802723c93aa9fc5b3525
BLAKE2b-256 adc2aed66a2b74574dac5b7a8669004216148b58c51be265ce3526aeb7b27be2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 96d54ae3b1086729c30ed58c6dd799f3f7fdac40755e58816ede991bd191fef4
MD5 259a3e1e5f5fea97cd46d1b336b2cac6
BLAKE2b-256 452d1b3f1b88606b89e62feb0548c32db7d270d7e6b0bff836edeb50cf4c7fca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 032afbdf8ae7cf3cc68a1cc79009272fc1fccb7f991252f7b9e121b232774f60
MD5 a3b3448f1979fb4e464a187885fddbd1
BLAKE2b-256 cfb7288919c300c56bce1ca6668a40b6db696a696d63d0e9f0b88b862e94ec28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 300a7dc464a618ad20b15b3755d2c82a5948e4844dd0b0ce96e9bf6f7ec47628
MD5 f177b3833773bd34aaae1d8e1c7c4d72
BLAKE2b-256 6263a0b873b74128194161c29b3e9df168b90cc9cd9c6235800ffff5d40d992c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9770ad028a33cc0f22f6d2e28141d10392f97b135431057697f32060dc8bce3
MD5 5c0d9294bcd8971ecdb32d51f0fabb25
BLAKE2b-256 4fed7cc946e20d054d822bd070d16bfb7648e3648797f6cf163842de88820ce7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 16048f230939efa21b0cb69342ce08f86ef82b1282af1b2d3337435e9c84c2e2
MD5 b3b0c40904645f655cd8dffdddefad1e
BLAKE2b-256 88273567d61e16b01848ab1cabecb3132edfe802df1b5693df34352b1084700c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4b4e3c32cfbfa68024d15e1b915be647bf50d66c88a287573332d287ed5ee26
MD5 5ed15556fd41d4876317e2c98bc97cf1
BLAKE2b-256 1877663b0558888e5600eab0aa9fe43e4b74b179a85188503b5d105f3431b2ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.2.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 9.8 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 891d1c2982d44dcbf3f745e6a004c6759762e06d771947043f689b47e16534c2
MD5 b081dcb7f6501d0865968d01d8fca864
BLAKE2b-256 4b3c6a8e7e906266c215e7512f6127b88afb27bac9cc1a7440cc0bc128af75b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d81f545522bd6d4bc28b7548a3a870ef2ceb89d68a534649d934d7c0c182886
MD5 d8ea2762a2ce3b26f80278ec874265f2
BLAKE2b-256 68b4bf1cfa57219c10f12f787f285869f5a5c20557eae54022d088a54b5856a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ec0ec25da0d7bf545cd83ff79b3f778839f2e2ba80bf7cf922e82c6e324ae08f
MD5 d42137462cb85963da1ebba7396258d7
BLAKE2b-256 e8f22baa4be0a1551935161b2995de08656973906526e8c6b366eaa209c0960a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 778d77025820ec7224eea69f866091902d395af99e458abd199cc807e0146446
MD5 f7848014db1aed9c6d6cf6635c98fd7b
BLAKE2b-256 1b77d64de4fe57e4230dbc8a7d8a9de75908300f65d367c18b33fea5abd8840e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac50fe8adea04f26c643d5b94b01c6b924a3927b0f02ab728800f5080cfd81f2
MD5 f536ac122862e80a262cfc95004939f7
BLAKE2b-256 3f55c2a5cb4fbe73ac9d87471859eaf76822ce3b09c6932bf6c5738ae7a21ed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3dfe83ee8dd05fec54b29aa833bf4c4421734b009100abcf9b64423f25f5d766
MD5 99a9ef32883cdcb731f8258ec2999c27
BLAKE2b-256 7e9cae87b6810906ee95902bb432ef878fa4ae6c08995c0d728621f0a8f73d0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 afbfe6bb82b2298daa2667bc0cb8e75c5cd1a94c903c01bf0c98fe213f64d8be
MD5 36cc43133531b345dd150c1b941f4feb
BLAKE2b-256 a469d6d5f3435c4f83c5791bae75461d4c0bc5ce4618ecc3ce4002507f7dabd8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.2.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 9.8 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d9a1562a0cede40f4ac3dcfe6e09f7fd44ef7a8937ae178d407a29accdc7a9df
MD5 ac7d7a3ca7ac060c9659a15048eced8e
BLAKE2b-256 c8845cfc724911c2438bee693f8c27cd0aaa25f367370e0994c3e238358dda4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c970cd33a94e83d27f949995a12526fd81de2949d922c9c628e529715bda9c00
MD5 4438f740fcbece20efa1321318d7f2d4
BLAKE2b-256 4696980fbcefdc1d3ef2a490b2e7ece1e9772bab33d8f01f6c7d206238b2a4f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f1d784e8b5c0e2097a9e779192ab36968cb2ba26c8d880f5cd799df470b357e9
MD5 b8ce0ffdb253cf20d82fa983610b6386
BLAKE2b-256 ea64e325418c435238ffd3de0776a4e18967ce83d0b2a5d3c06c914a83c83858

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8d629fd5c5b4af92b77ed1b3085eda905e583d7986215faddcd7e65483384fca
MD5 90aaf705343ba89cb95055946918967b
BLAKE2b-256 11552cad3122409e12e79a3c5a2cecde32368d97175e0288e2f5f501fc554c5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 191cdd50d11402d19fa94e5c928a850298f353482a0be03fcb9d5ae3019b2c68
MD5 fd57feb4edeb989f92aac1c7b1e2498b
BLAKE2b-256 5c1f773d82a40fb49932ea5c9082365293b86fcb22d7bcba956c35ae30abb615

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd4bf4b04d7c167463735c6635581bb73feaae63517ab97511e73a565fb9b172
MD5 3f1d37d7a6f4d6b8d506b49003b16fc2
BLAKE2b-256 374bd53c0f00004ce64bddb421b04d2077f67b32c277006735f5ee724db6bb40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26153bab50b5ea34a2733894c9ba13ae673f4a8838b981ef8037bf9a1955ae2c
MD5 65eb6c64cd38c69def7e077e99bea247
BLAKE2b-256 261e0baca2c42f3f0bb035251b91f91ea9f3643fde812f43129a33cf86899021

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.2.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 9.8 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b5f7233ac1ecc137023166b9522b8911b2c54d7f8e3be6337b5a7f1b59b6ec6b
MD5 8c9187babbcb4314a5f363527366f958
BLAKE2b-256 f3005a86ab158fc318733ab4de99de53852ebd7faf1ed661f29f941526fe6313

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53175dc3b991c81dd3003d97a016350d507ddaf11f1ee920ecdb7968a75df249
MD5 37b62362378f69f962c0d652877c3e05
BLAKE2b-256 e10452cf2be46598c6df6c994d7889e91c0181324a7e6911d0edfe99e98b4fb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2c5efdc313815101572d11e346927bce722f5c052a7c54e0e07871add9f8c0dc
MD5 ff1a3af592b158617a9569dbbdc6d837
BLAKE2b-256 18f7f6f9826754805ae3143a042c0956ef7b126d78b721d8481e65277688400f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0ac8aca9886b0f137219f9aa4c630275352af916adbfbf13dfb2c06bbd069a4e
MD5 c95783d3d24db56aeba0deb930b5a430
BLAKE2b-256 0051e64c5d1f1747ba24cca7cbfccc18d21ec394370d3c87adc387c9974dda45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb1930c087467739602d69d0fcac9e1d7ec78ce36d547ae4ed722c5282eca414
MD5 d57a7fc20c73cd202ee645541a0d077a
BLAKE2b-256 79b43a8d4cb9006e0ec857f2ca7675ea51bcf0c9eea2d14a5a98d8f011f34f46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c507379bd4eba1f7cf87092efc05720238b0f90fe367fa3216ec72325cd4e0d6
MD5 a34798200ec95d5e4ff63b42ffd35f66
BLAKE2b-256 10eadce2014367ec4a8d48c0f76249b1b9972dc8aba8bd92eb09bf5ac8d681d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e415c48933d3a866c076b7af719222619f3f64517dbadfa8aa831c2a64001269
MD5 64a78d8bc6c528142a6b181b993dd4bb
BLAKE2b-256 0a55942f37d6837ed6c0aa988422dde4cedd3d85be19750f4d27551982326546

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.2.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 9.8 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2af040e79c1a48dacf67aeb85435140c9f1ddb5b581be984917e5b266a222430
MD5 6d03484bc8c129b00e80e98501024ee5
BLAKE2b-256 4314645bab3433bb4d5d3ead30b12c2c592e222bc7c5837b9e557fa39a42ff8f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: koala_diff-0.2.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 8.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.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5a7ad2e2752175b987e2f5507b82c47496b24da9c7b3ee0e65cc960f2b444ab2
MD5 18b64976a4b4d1bf2554b259aeb22535
BLAKE2b-256 7eac9534e7b877b86b9d104d782d45934a36b132c324783ad30f587fcadd15e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea1a070551383891bbfb10a5a1852f6dc04a414658d811e864b0bc23e9958097
MD5 6d3a4eb2ed1fb38d8a6bd7b5256cc066
BLAKE2b-256 6340e82ca6e14829d1e321d7ebd5936cdb4689374fdd23b86b90d9c2143d6bab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0e6300f7b6a08705e20e321e8ce3e3582425108fb1ecfc45a92300acd8f4d31d
MD5 6d9172cccadd3aebfc101efa8c71f75f
BLAKE2b-256 5bef166fdd35e3bad9600bb790fd18506aa9f91508a336157d68bae825e3dd87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4bb13524625283a01ea2d7fb5f65fefd74911f1e0b4fac049aeca1528241456e
MD5 51331c03979eab15fa700bce0f2e5a22
BLAKE2b-256 3a412668b868b037f3adfb705bc76af45a69196c804f84be53a0a521ed5bf065

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30f022b7724ab6176982bad99f1f6ce7391e35d49a070b7e840053b12d174e6d
MD5 daff9c950e94720d3da5d33dbc22f7b0
BLAKE2b-256 c3dc38621d3333a195e04528d15c2b382aca5f7c8717aac05a410f959653daa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fa65a057e7eeafea287e0eb1250b5d325981c46e1cdc26891e34ab43ad74a64
MD5 b522002a4ee4b01f27f10ce0164cf190
BLAKE2b-256 2d47744b029c465045a82114ec0eab59d60e24c50f6c41d7ddf1ec1c79d0971c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for koala_diff-0.2.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ddccb0e07b0ac80127ffad35251029d6dfcf2ef5e19d9094ef615af70f75fb7
MD5 af79f55a1efd02a287ba00b234709751
BLAKE2b-256 b1e25dc3ddde89aac6e1541b106643aa3124ee513331b3353192c7361676e628

See more details on using hashes here.

Provenance

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