Skip to main content

This package contains the implementation of the patiencediff algorithm, as first described by Bram Cohen.

Like Python’s difflib, this module provides both a convenience unified_diff function for the generation of unified diffs of text files as well as a SequenceMatcher that can be used on arbitrary lists.

Patiencediff provides a good balance of performance, nice output for humans, and implementation simplicity.

The code in this package was extracted from the Bazaar code base.

The package comes with two implementations:

  • A Python implementation (_patiencediff_py.py); this implementation only requires a Python interpreter and is the more readable version of the two

  • A C implementation implementation (_patiencediff_c.c); this implementation is faster, but requires a C compiler and is less readable

Usage

To invoke patiencediff from the command-line:

python -m patiencediff file_a file_b

Or from Python:

>>> import patiencediff
>>> print(''.join(patiencediff.unified_diff(
...      ['a\n', 'b\n', 'b\n', 'c\n'],
...      ['a\n', 'c\n', 'b\n'])))
---
+++
@@ -1,4 +1,3 @@
 a
+c
 b
-b
-c

Release files for patiencediff 0.2.19

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for patiencediff 0.2.19
File Size Uploaded
patiencediff-0.2.19.tar.gz 24.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for patiencediff 0.2.19
File
patiencediff-0.2.19-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
patiencediff-0.2.19-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
patiencediff-0.2.19-cp314-cp314t-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Details
patiencediff-0.2.19-cp314-cp314t-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 Details
patiencediff-0.2.19-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
patiencediff-0.2.19-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
patiencediff-0.2.19-cp314-cp314t-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64) Details
patiencediff-0.2.19-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
patiencediff-0.2.19-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
patiencediff-0.2.19-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
patiencediff-0.2.19-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
patiencediff-0.2.19-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
patiencediff-0.2.19-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
patiencediff-0.2.19-cp314-cp314-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64) Details
patiencediff-0.2.19-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
patiencediff-0.2.19-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
patiencediff-0.2.19-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
patiencediff-0.2.19-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
patiencediff-0.2.19-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
patiencediff-0.2.19-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
patiencediff-0.2.19-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
patiencediff-0.2.19-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
patiencediff-0.2.19-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
patiencediff-0.2.19-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
patiencediff-0.2.19-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
patiencediff-0.2.19-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
patiencediff-0.2.19-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
patiencediff-0.2.19-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
patiencediff-0.2.19-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
patiencediff-0.2.19-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
patiencediff-0.2.19-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
patiencediff-0.2.19-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
patiencediff-0.2.19-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
patiencediff-0.2.19-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
patiencediff-0.2.19-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
patiencediff-0.2.19-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
patiencediff-0.2.19-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
patiencediff-0.2.19-cp39-cp39-manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64 Details
patiencediff-0.2.19-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details

Total release size: 9.7 MB

Release files / patiencediff-0.2.19.tar.gz

Download URL patiencediff-0.2.19.tar.gz
Size 24.5 kB
Tags Source
SHA-256 checksum
How to use checksums
a060953edd05521e6368245d6c70402308a7aea4f66a706b2d832721d1375679
BLAKE2b-256 checksum
How to use checksums
585ceffa27de2f2251a02051f5546ee9f9ceae7c2d15dadaadae5dbe6ee890e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314t-win_amd64.whl

Download URL patiencediff-0.2.19-cp314-cp314t-win_amd64.whl
Size 160.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
2b84d2727f1193dc704d64ebadc2833ccdb448a1e448c7fe41bcf61504c0b745
BLAKE2b-256 checksum
How to use checksums
c120aedfef67353737cc59dd9853f0b0d31688c311efd3bee6564e279c4f5a6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314t-win32.whl

Download URL patiencediff-0.2.19-cp314-cp314t-win32.whl
Size 152.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
45240e4da6c6ba389b07ba98e6c09d3c5853bb3512430230bc762a56c4071578
BLAKE2b-256 checksum
How to use checksums
d01d2f54ac7989e92d5b195ca9ce00a347c8670a1ac84078ee73430ad8a0f27b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL patiencediff-0.2.19-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 296.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
69572791106c5301b872ec2efb4318dda44c44471ccc2f8a0e5930e7af3edfc9
BLAKE2b-256 checksum
How to use checksums
a88bd905bdfff9ace2d02b94b0f852485fee34850980647dcdcc0d5e2983127c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL patiencediff-0.2.19-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 290.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2a807326bbfaddd61cd12d51eaea328ce64cda8e6d4db9e05293e43194b04d7f
BLAKE2b-256 checksum
How to use checksums
a042d7951fb1501ac7d80742aa73a054ea5718d0b95c48343c6a38a0a987f868
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314t-macosx_11_0_arm64.whl

Download URL patiencediff-0.2.19-cp314-cp314t-macosx_11_0_arm64.whl
Size 260.4 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a226342c4b616bf96165d20499ad7feb51476cc38f7fb4b2ddc644fe3a9393a3
BLAKE2b-256 checksum
How to use checksums
9b5091fb7cf1516b4fff13adb84ee340c8ca8b5273bceadf1f63aed25b846e6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL patiencediff-0.2.19-cp314-cp314t-macosx_10_15_x86_64.whl
Size 265.7 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
d7e7b7263221d645e34a0e1cc928fa2b32faae8543832b7a494f2e64f1f646c9
BLAKE2b-256 checksum
How to use checksums
19bccad849678e788ee2559c5042f98527b5f7d8ec7f1bedf237c86d26254215
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314t-macosx_10_15_universal2.whl

Download URL patiencediff-0.2.19-cp314-cp314t-macosx_10_15_universal2.whl
Size 503.4 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
26ae22aae46f37ee8eeb3ed4a20f83afd4b21b50f42df6894679f085250fbda5
BLAKE2b-256 checksum
How to use checksums
0598578b1af0c560bbf32e263c32f59ce64c79fedfc4e84aa79132e9bfbfb8f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314-win_amd64.whl

Download URL patiencediff-0.2.19-cp314-cp314-win_amd64.whl
Size 161.7 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
00dedb389671328c39acb5d072c887ba43f82a56bf4856aec24214975fe69508
BLAKE2b-256 checksum
How to use checksums
374e133b2dcd88ac44668633ff92b0aa8585fef831ac2bd4b9b155750fd0545f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314-win32.whl

Download URL patiencediff-0.2.19-cp314-cp314-win32.whl
Size 153.8 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
9cec9b04c5a47d56beb499442967576396723c0a2acc9cf3dbb818e5fcbd574b
BLAKE2b-256 checksum
How to use checksums
2a9be39d54503bb2eb9b71788f40ba8a5eeb91e41041395403985eb7833b23b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL patiencediff-0.2.19-cp314-cp314-manylinux_2_28_x86_64.whl
Size 297.3 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2bd8ff4ddf5d4748bf24d9a7ad269695a48b618a4742c6bf0596cbe5d704991c
BLAKE2b-256 checksum
How to use checksums
a74d17dc686314a8cffb34b26cd92b6a24b413a42ccc4a8fac08721c1b49658f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL patiencediff-0.2.19-cp314-cp314-manylinux_2_28_aarch64.whl
Size 291.7 kB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
3bde0c9c93a1775c989086ce5ecf78555f1ba3d86863219a3fbf24601c4f722d
BLAKE2b-256 checksum
How to use checksums
3afee6e05f9bdd981f181a0d62a8e1bcaec8b89c66869140174379879c8c782b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314-macosx_11_0_arm64.whl

Download URL patiencediff-0.2.19-cp314-cp314-macosx_11_0_arm64.whl
Size 261.2 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bf1f1c5a5c499242b8aa639780aada0719cf7c8c4f2e12b484f5b7133210b960
BLAKE2b-256 checksum
How to use checksums
43e9b74e18f51a2f1ad9d107088f735e07a0f2e89d945e95dc33cdc5b3a86e56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314-macosx_10_15_x86_64.whl

Download URL patiencediff-0.2.19-cp314-cp314-macosx_10_15_x86_64.whl
Size 266.2 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
7bca729281ed1ed00edbda9a0f1c9c299186da515b7c9801ab5260a035342540
BLAKE2b-256 checksum
How to use checksums
a773300b4411f0e6785cef66407d13f996ee76a8f6bb4eea5e75c13bf322aabf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp314-cp314-macosx_10_15_universal2.whl

Download URL patiencediff-0.2.19-cp314-cp314-macosx_10_15_universal2.whl
Size 504.7 kB
Tags CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
52813bcaa80f69dab68faa959f4abd3539cac091c3614a5113ca78f691c8eaac
BLAKE2b-256 checksum
How to use checksums
e13de8a10f0c2d1bdc89bb68d116877f2a7e9ad3c0da012e7dfe89cdc9051562
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp313-cp313-win_amd64.whl

Download URL patiencediff-0.2.19-cp313-cp313-win_amd64.whl
Size 157.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
87aeaa2e277cea07c41dd53c9c2fce1de4ff3ad9759281f8eb99ff639a9ba9ff
BLAKE2b-256 checksum
How to use checksums
4c342607bc31420e3274f6be7dc7e1cde3444d24ef7df39a77e9f3b1685dc1cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp313-cp313-win32.whl

Download URL patiencediff-0.2.19-cp313-cp313-win32.whl
Size 150.7 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
4fc490ecbcaa9e5d83efec92d0f411485f58be2070910f695ccc46e48c5c6b53
BLAKE2b-256 checksum
How to use checksums
9c6418da6b7070fe329638c56de4a0a3a0c4df5ec2021e2d92d26052231bf946
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL patiencediff-0.2.19-cp313-cp313-manylinux_2_28_x86_64.whl
Size 296.7 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5cb78182bc48532ccca96980985112f43794cfb9d057dc1dcc1eb687ca1eff8f
BLAKE2b-256 checksum
How to use checksums
b00f01b72db7109e6e149491e718d90431cffe17492a2ae19b9e856fc4267e78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL patiencediff-0.2.19-cp313-cp313-manylinux_2_28_aarch64.whl
Size 291.2 kB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5d86000a99e04d9ffb1237682dfca6a0b8e05384960a32dc608f645ad52ba5c1
BLAKE2b-256 checksum
How to use checksums
a951aea5068aba605e627d57d27ecafb1e72c35494b272282dee6fa642515407
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp313-cp313-macosx_11_0_arm64.whl

Download URL patiencediff-0.2.19-cp313-cp313-macosx_11_0_arm64.whl
Size 259.1 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9cf5f0623b101cdd2d3d5841906c1d516b27d41b353fbb22e381e4bda7fb7d44
BLAKE2b-256 checksum
How to use checksums
57fc43916ad0a34cb0594e05d961c58011087e6d0c2962aa0024a6fdf3442e81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp312-cp312-win_amd64.whl

Download URL patiencediff-0.2.19-cp312-cp312-win_amd64.whl
Size 157.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
8b18e126e9f266320d4dcaeed36940228cc7127517944347de4b12295ec04d34
BLAKE2b-256 checksum
How to use checksums
aecc3af78e3794f9c63e9a40d3f2d7e9de02956f694d8274ad675055848353aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp312-cp312-win32.whl

Download URL patiencediff-0.2.19-cp312-cp312-win32.whl
Size 150.6 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
498fdaa4b9437c32a65703cc37b7e37a11f1daabebc4df5e9790d6cd157de123
BLAKE2b-256 checksum
How to use checksums
a3d1fd48e7010285adcdd263131b40fb10e5f59aeb21a81c8f48de186afe8bc9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL patiencediff-0.2.19-cp312-cp312-manylinux_2_28_x86_64.whl
Size 297.0 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
eacba31f0de56b0ca9ac446d38ac978c047d50f813353651f217d5a63a49e0f4
BLAKE2b-256 checksum
How to use checksums
7560e5ba37d20d996897c17217899d3f174887b598f0450fdbdc5485c4dd0ae9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL patiencediff-0.2.19-cp312-cp312-manylinux_2_28_aarch64.whl
Size 291.2 kB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
79b8f8539df4223b31853fccb4ecaf4c31eece74d36f898cb56f45f314f69d22
BLAKE2b-256 checksum
How to use checksums
6950480914bdc61220ff3e49a3207f85b7c72379903f947ecc9711a2e6e950d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp312-cp312-macosx_11_0_arm64.whl

Download URL patiencediff-0.2.19-cp312-cp312-macosx_11_0_arm64.whl
Size 259.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7a283ef510e11176199b7d0c84d969fb8c38759e1385a7971b686194fd5a96e9
BLAKE2b-256 checksum
How to use checksums
b659bdc3d93315226288dcb89ab24860583670920c2dacc73c7764656f779a1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp311-cp311-win_amd64.whl

Download URL patiencediff-0.2.19-cp311-cp311-win_amd64.whl
Size 159.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
8f4639d6cdfb2a14505a606a9f8d3dfce426c118db2acae500d2eb2b08720a3e
BLAKE2b-256 checksum
How to use checksums
f2ff773b9332908f7ac5e4d9db0038124d7b05fb6379474f51e8b72f209ce3c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp311-cp311-win32.whl

Download URL patiencediff-0.2.19-cp311-cp311-win32.whl
Size 152.9 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
aec228148e8be76245b93f68a35244ff5fb6ad4fc77c7b199f953a12e191af92
BLAKE2b-256 checksum
How to use checksums
ec36be678054891b12ba0933ba72e1c47a467284605e2b2c042d449ad1330fd5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL patiencediff-0.2.19-cp311-cp311-manylinux_2_28_x86_64.whl
Size 300.6 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4dd38c8d3bb215cac781fcaf6a30be2d6bafb9fb3641d24269b9e8697a3f2ec5
BLAKE2b-256 checksum
How to use checksums
6186935f9513e0bdfbe5f8c643f8d85d5c4aa5e1fc6030704f14f147075572b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL patiencediff-0.2.19-cp311-cp311-manylinux_2_28_aarch64.whl
Size 294.8 kB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
09605c3ae5037dbf820c77d97d0e6b0ce7b5ea5619fa4d746215da4e80d6250b
BLAKE2b-256 checksum
How to use checksums
12cee5006038c70afe3827d55a8bbb43754c49b404116e5a915cf51e137d84fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp311-cp311-macosx_11_0_arm64.whl

Download URL patiencediff-0.2.19-cp311-cp311-macosx_11_0_arm64.whl
Size 265.6 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d76f5ad43624a3d4eb7036ad5e3b35189e082f756c314debccd1bcc9dd457215
BLAKE2b-256 checksum
How to use checksums
3559e835cc0a2dd0f656983472537bf59b93d1572ccd3492df8c022d5818bcd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp310-cp310-win_amd64.whl

Download URL patiencediff-0.2.19-cp310-cp310-win_amd64.whl
Size 160.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
01e1e1891211febf8faa200abf3881572bee384c42f6543f51cc0fb3d6c7bf43
BLAKE2b-256 checksum
How to use checksums
53d9d9a7850466580daf2fcf9f834464457ed572e0d07256b1c5a0aac076724c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp310-cp310-win32.whl

Download URL patiencediff-0.2.19-cp310-cp310-win32.whl
Size 153.2 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
6ca645c2dc003d8f8b64fe7c45deb52423263444802cbe8b9ad352d535428963
BLAKE2b-256 checksum
How to use checksums
58003e434ee374d2e361c29c76b97b8ed5e3b2207aa7080e3f4e5b71feca5824
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL patiencediff-0.2.19-cp310-cp310-manylinux_2_28_x86_64.whl
Size 301.4 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9bf930a3b5e33abddcfd0d2b5d400e6a62ce400d0342e1ad8bdf2622257581da
BLAKE2b-256 checksum
How to use checksums
fee60e7d94923876c68b50d608fedf126addd1b26b658a837ab7ef6f23a4f029
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL patiencediff-0.2.19-cp310-cp310-manylinux_2_28_aarch64.whl
Size 295.7 kB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
dbe1bb5db21ea6594cf9695f53ba5c97af096d2f5c165159f0ee51a15c957297
BLAKE2b-256 checksum
How to use checksums
44d4da9fedc9ec3105f49e9ae404459c7c6fe9809124044a8ceba86c069b6d71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp310-cp310-macosx_11_0_arm64.whl

Download URL patiencediff-0.2.19-cp310-cp310-macosx_11_0_arm64.whl
Size 265.9 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bc480051573abceff2e3c6dabe1251fc29cd8fa0b9f62b0ffc8c31483cef4f80
BLAKE2b-256 checksum
How to use checksums
9ddb05b9f45ba6cce1ed99143bf10f353fbcfc6c64361c39b5692991340b38e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp39-cp39-win_amd64.whl

Download URL patiencediff-0.2.19-cp39-cp39-win_amd64.whl
Size 162.8 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
408bc307a0462801ee11de91f129317cecea1e444d55046e4a4bd4d472ee9532
BLAKE2b-256 checksum
How to use checksums
e455444efaa9fc191c70cc774f711274e9aab5675c23f451653f187104292fbd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp39-cp39-win32.whl

Download URL patiencediff-0.2.19-cp39-cp39-win32.whl
Size 155.5 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
e1aef5c87f27333d8978c4f482c7d3d81b0eeb453384cbebcaa5a54711725ce5
BLAKE2b-256 checksum
How to use checksums
985142112340534193cf65b34ccfb8ca077f94d7a74e5f19b970ed5cdf609b9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp39-cp39-manylinux_2_28_x86_64.whl

Download URL patiencediff-0.2.19-cp39-cp39-manylinux_2_28_x86_64.whl
Size 304.6 kB
Tags CPython 3.9 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3dce3572fb681f7899b0090a31e8e9e812e490716d31a7b31c6eaf8a114b4be6
BLAKE2b-256 checksum
How to use checksums
a8585ec1d93aeb1de7642490485ea2b805a5752928613f4cf20631c2bce83fee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp39-cp39-manylinux_2_28_aarch64.whl

Download URL patiencediff-0.2.19-cp39-cp39-manylinux_2_28_aarch64.whl
Size 298.5 kB
Tags CPython 3.9 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
41f82fc9e1176072bb0b409a724f90de55da90a335f813294cae30b7d26875d9
BLAKE2b-256 checksum
How to use checksums
2de3f609a0bbdf595c92c28eabd576fbed5b4350369054adb1e9c0cd83938078
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release files / patiencediff-0.2.19-cp39-cp39-macosx_11_0_arm64.whl

Download URL patiencediff-0.2.19-cp39-cp39-macosx_11_0_arm64.whl
Size 268.3 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3730108da54d9f8766cf7b961c1d8b69dd9b7d58dfee02fb27e901fffc49092f
BLAKE2b-256 checksum
How to use checksums
dc3c893faa382578284035a5020dab435e8dcdbdd8c4b484023bdabfe0bf20ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.2.19 This release

40 release files

0.2.9

63 release files

0.2.8

63 release files

0.2.7

63 release files

0.2.6

63 release files

0.2.5

1 release file

0.2.4

1 release file

0.2.3

6 release files

0.2.2

9 release files

0.2.1

8 release files

0.1.0

7 release files

0.0.4

1 release file

0.0.3

1 release file

0.0.2

1 release file

0.0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page