Skip to main content

Python implementation of the patiencediff algorithm

Project description

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

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

patiencediff-0.2.7.tar.gz (26.8 kB view details)

Uploaded Source

Built Distributions

patiencediff-0.2.7-pp39-pypy39_pp73-win_amd64.whl (32.3 kB view details)

Uploaded PyPy Windows x86-64

patiencediff-0.2.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

patiencediff-0.2.7-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

patiencediff-0.2.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (28.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

patiencediff-0.2.7-pp38-pypy38_pp73-win_amd64.whl (32.3 kB view details)

Uploaded PyPy Windows x86-64

patiencediff-0.2.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

patiencediff-0.2.7-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

patiencediff-0.2.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (28.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

patiencediff-0.2.7-pp37-pypy37_pp73-win_amd64.whl (32.3 kB view details)

Uploaded PyPy Windows x86-64

patiencediff-0.2.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

patiencediff-0.2.7-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

patiencediff-0.2.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (28.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

patiencediff-0.2.7-cp311-cp311-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

patiencediff-0.2.7-cp311-cp311-win32.whl (30.6 kB view details)

Uploaded CPython 3.11 Windows x86

patiencediff-0.2.7-cp311-cp311-musllinux_1_1_x86_64.whl (59.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

patiencediff-0.2.7-cp311-cp311-musllinux_1_1_aarch64.whl (60.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

patiencediff-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (55.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

patiencediff-0.2.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (54.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

patiencediff-0.2.7-cp311-cp311-macosx_11_0_arm64.whl (29.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

patiencediff-0.2.7-cp311-cp311-macosx_10_9_x86_64.whl (29.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

patiencediff-0.2.7-cp311-cp311-macosx_10_9_universal2.whl (37.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

patiencediff-0.2.7-cp310-cp310-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

patiencediff-0.2.7-cp310-cp310-win32.whl (30.6 kB view details)

Uploaded CPython 3.10 Windows x86

patiencediff-0.2.7-cp310-cp310-musllinux_1_1_x86_64.whl (58.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

patiencediff-0.2.7-cp310-cp310-musllinux_1_1_aarch64.whl (59.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

patiencediff-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (55.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

patiencediff-0.2.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (53.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

patiencediff-0.2.7-cp310-cp310-macosx_11_0_arm64.whl (29.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

patiencediff-0.2.7-cp310-cp310-macosx_10_9_x86_64.whl (29.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

patiencediff-0.2.7-cp310-cp310-macosx_10_9_universal2.whl (37.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

patiencediff-0.2.7-cp39-cp39-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

patiencediff-0.2.7-cp39-cp39-win32.whl (30.6 kB view details)

Uploaded CPython 3.9 Windows x86

patiencediff-0.2.7-cp39-cp39-musllinux_1_1_x86_64.whl (58.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

patiencediff-0.2.7-cp39-cp39-musllinux_1_1_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

patiencediff-0.2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (54.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

patiencediff-0.2.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (53.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

patiencediff-0.2.7-cp39-cp39-macosx_11_0_arm64.whl (29.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

patiencediff-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl (29.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

patiencediff-0.2.7-cp39-cp39-macosx_10_9_universal2.whl (37.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

patiencediff-0.2.7-cp38-cp38-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

patiencediff-0.2.7-cp38-cp38-win32.whl (30.6 kB view details)

Uploaded CPython 3.8 Windows x86

patiencediff-0.2.7-cp38-cp38-musllinux_1_1_x86_64.whl (59.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

patiencediff-0.2.7-cp38-cp38-musllinux_1_1_aarch64.whl (60.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

patiencediff-0.2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (56.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

patiencediff-0.2.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (54.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

patiencediff-0.2.7-cp38-cp38-macosx_11_0_arm64.whl (29.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

patiencediff-0.2.7-cp38-cp38-macosx_10_9_x86_64.whl (29.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

patiencediff-0.2.7-cp38-cp38-macosx_10_9_universal2.whl (37.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

patiencediff-0.2.7-cp37-cp37m-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

patiencediff-0.2.7-cp37-cp37m-win32.whl (30.5 kB view details)

Uploaded CPython 3.7m Windows x86

patiencediff-0.2.7-cp37-cp37m-musllinux_1_1_x86_64.whl (58.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

patiencediff-0.2.7-cp37-cp37m-musllinux_1_1_aarch64.whl (59.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

patiencediff-0.2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (54.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

patiencediff-0.2.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (53.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

patiencediff-0.2.7-cp37-cp37m-macosx_10_9_x86_64.whl (28.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

patiencediff-0.2.7-cp36-cp36m-win_amd64.whl (32.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

patiencediff-0.2.7-cp36-cp36m-win32.whl (30.7 kB view details)

Uploaded CPython 3.6m Windows x86

patiencediff-0.2.7-cp36-cp36m-musllinux_1_1_x86_64.whl (58.0 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

patiencediff-0.2.7-cp36-cp36m-musllinux_1_1_aarch64.whl (58.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

patiencediff-0.2.7-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (54.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

patiencediff-0.2.7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (53.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

patiencediff-0.2.7-cp36-cp36m-macosx_10_9_x86_64.whl (28.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file patiencediff-0.2.7.tar.gz.

File metadata

  • Download URL: patiencediff-0.2.7.tar.gz
  • Upload date:
  • Size: 26.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for patiencediff-0.2.7.tar.gz
Algorithm Hash digest
SHA256 f4aff7ea161f692f3b6114c1492511eedc210738dc723dda6ff7d39124a7eb0e
MD5 85f358605c99d57f321bda5b05ae03a8
BLAKE2b-256 2848ea6ff771aac65eb732f513f53eee22acc4020c0297e0597e3c517205ca73

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9114b8a002353a63e3551ce1c0db39af315bbaea235dc2cc74ba8a0df9c4b671
MD5 6ecea08bd2c5fddf1de4670d3cd98402
BLAKE2b-256 716580e96c30b5c29ed689335764bde90395727c81127ed92490c12b6d9ca38e

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa386f26d11d6a815061d5e1f0f3c32750ce9b847c88cac59e40f60520ce602b
MD5 dbbe051c796768dfd76a8bb984021d67
BLAKE2b-256 ba5ee176a5630a5f8bd386b702840a683d3654ed27a36028de8e6bc82f1560a5

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5528a8e249c4274ae89575143ba64626b366d22ac3b65b68c9d718add657e470
MD5 582949cea9cc45922a4541b737333239
BLAKE2b-256 47d5f4965db5d32224dcfc36a5d976475dadeb41aaae30cf085c2de73796285e

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b45e67984c3b03a4b91bad2caa1d468cbe631dc7b3901536b3ad7f5fb0c52ee
MD5 1840ca7ef30bba2fa769b9e742c41083
BLAKE2b-256 7c8d7844dace074fbd7d7d8c291c548e9983de977db81146be0e0fb59764806a

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 109824a31a4dfc6818d963a84e99f011b9e685dae93488ee9782fc47d47f42a3
MD5 5f3f02fafd4e869b2ad4eed659ecaae7
BLAKE2b-256 59dba36d027d5ddcd13f455200d615008871cce5e42c8db45b413be968914912

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6cabcb4fd9e7d92e4ef4a751dafc4b6780ada96a0e5aba78ed3350844c62164c
MD5 82a1eab8edbd4fa8c77b42860a250b7f
BLAKE2b-256 45381af3a33e0ad72bcba61f89066ac39b8bb1e595733214d48ed97f222cee17

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 719a4ca22e97db831578047fb173cd2ed82f1bf697dbf5a5e76f90d04b263fda
MD5 803201c3343a259740a650a4a1311a8c
BLAKE2b-256 160590631b7e5762cdf6d72d626188dec6ab8545888d8ca620bb9d29055c8461

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9bbd796c7f7f843f206e8e71f06621508129f36bed2b6f9e8dbdc7f9333ac6d3
MD5 b6ead24eb6fdec4b56ad5cf03d414994
BLAKE2b-256 6a37874455ab56939a907e821decf34d218036004648731be188d5f906578edd

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e6508f3d8a1354bd9fd31d776de886659dd4d7fce1fa1021651ff79f1d2efd24
MD5 b683d9221268b51ee0a2a0935268ea50
BLAKE2b-256 def32edfacec747bf3402c8c2fa4b06dce402d8098b926476c406b2f9feac853

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a7e1283f1689edb97e76207dfc86b0e92d9f9cb501194d4aeb24005b54bafac
MD5 a21680f0b5b3ecdf9458b48ce6ae1634
BLAKE2b-256 8a76b5b3cfc914f0f12bbb50fdd97d4f67078a2815ae1c5e4d97c151330d9b4d

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bc842f392f24df89301db80e6de31fe78b234d6882b9ff5229e122242a3c839
MD5 f593935627f2681204a97ab8d359293f
BLAKE2b-256 5ebb6eba6fac70aa0644e0102265062c83832ea511ebdf1d614888afb81fffc6

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e396a6daf74b165297738e36cd212be083d0b8892fc73c487bb90797256dd310
MD5 6b7ca87f5272926179c42c53a8017a29
BLAKE2b-256 5eaa6dc6b214e170296e812ea0c0616abc07782be930520798361d4ef0d71f9f

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fa204ae5c8ffe68eeab84f79ecdd20788cbe57af0efc7967742864e577498465
MD5 8f694f9a21b5f9cca937de26a4bfd393
BLAKE2b-256 c26a3039ede1b2f0df4cd684cb117e5ef4dbb633646019847358ad486ed96e26

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 260032832a48f4003ae9ffddacee908486822c75980806b5c5b10ed888844657
MD5 dd0bc8fa68680034e115b1cca4683f28
BLAKE2b-256 a3d5ab59b78f73fa974ae0e4ead0a6cfbab55171a3fab2a73906cacd5d82404a

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cd2f99809a5548dfd93b1d165c663e1cec770d1c7dfb191601717464a9ed5a42
MD5 6df73731d0a2f3cc211cd72ef2217896
BLAKE2b-256 e0c6094b5fa942b262da1b48a10da72ea3e4b63afb58c4fc2fd19ad3ec99ff4a

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d4fd754382027b684b12c1c58adfb5a95aaac9a10a4d050056ef51c0bb0d3666
MD5 ff8f98463c52a33631592df1f261a281
BLAKE2b-256 b51dc8b0c733ebfe4e7b4faa34377092bb0f5b6f306c54f4307a45efc5a190fb

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63633ddf0c6c48854af636a42525138a2baf7f6fbb237d9518bb4760cfe7656b
MD5 f7cda93adc9abd1f8b9f76940db24bb7
BLAKE2b-256 c548d58766b3a283fa0f0684642809e362684a431cf4ddea266875605257faf4

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74eb0d6bcafb26461370bc4ee7115dd546eccd21547cf8547c3ae21828443394
MD5 d6bf6a331eb275d510eb07ed7fe21a0b
BLAKE2b-256 ee835167e9eaf4edbc708584a9ad1c5b44eef60009a19daa5057cdc6a20df980

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 692d4169e37e76837018b57d56c460332f30a8469e5a0cbbf785fff5ddb910a9
MD5 7403fa7427239335c3f571962eaeb8b7
BLAKE2b-256 88d941d5149e97cf73e36673c2ee1d1c93fa57be18939c3b666242db9d7a2453

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 339fd8309abd646587e8073069a029a2633b89eabfe2fa8288a0ddadd717a5a2
MD5 45d8226cccf1ffe8ea9b4e99dd51baa7
BLAKE2b-256 6c83ebb733a726a792407d43fff3f243eb0fd3b366bea9effe38ccefe406c46b

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b3b271ac531b2d58297fea8aabcdea62db3e49becc5e2ac1db83de18098b9619
MD5 56abf219b2607888926ea458ef3dafa6
BLAKE2b-256 5bcb0abee7a00414954ca6fbada82f4a91ed04b6aa09b4255c53fc888376c5b1

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2f52011baaf2db99f3b4dd278b5d99926765e9222dfacb39ff693238777e574d
MD5 22b5085e0923aacc958c3d2e917c0254
BLAKE2b-256 74f913d2ad023fc11e9e6751d6caf9d3420357439cb1fa86701b6c697fc903d7

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a488dbf7876266ebcb43be0d43c83ee8aad54cda8318b608813ac870f32edf23
MD5 7d6bc930a19ad6f308bb348f2565f223
BLAKE2b-256 62ad712c483ebe5692d83f3739e88ec3f9b8edcc3ac5f3f327533bde62a5de86

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 92732eb1c97b686e6f7324e15aa8e8d7050eb69186be1404daa31c93be0da0d9
MD5 a5a946e02f55f6716e3afd96cbaaa698
BLAKE2b-256 4ff1f2919e48ceb87468931849f950de6777cf37820c047347db12ded2bc4c08

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eec0ad9325db9c92c2b240db1074a2cccd66e64abea4c42cff9cf4470c6859ae
MD5 b6043804cdffb4667d3788869f477073
BLAKE2b-256 6ab0e3623c37845c4ea3edc7974485ca7f462026117b2ef7328cc0fee93acbcd

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7475a8e1e20f92887d91486120a5434664571fde66ea9cbc096edc36af44f36
MD5 8d358dc3ee2b6199f2e678013f59fbf3
BLAKE2b-256 34e059854378e57a937424fe8b39bef3de7623106d80cb9f403663ca6f656bec

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8b63763ab31a0b85bbda409e9b387c22041edd8ca506aaadec9bfedcca0cda9
MD5 39413fffb4f446b5d4c39be02cae01de
BLAKE2b-256 54b0ec90e63eb8e212af0e15014811e28edae4e8d9ed9cf37f3d25aa6ade8baa

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30bf3453d0dd900e0d7880160606537dc2eaa292e45f5b7d8b3b46e2c7ae3c8c
MD5 38ecab5fb04f11c1992cf9640172e3d6
BLAKE2b-256 9ab9804d871aa5ed1af0883329ccbeb4ec96f1dc3a683aa99b24cb4acf098c15

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8176f3584ac94fc108872143a8c04fb04585b921dfd9aa8b16351595d1bf718f
MD5 88cc0fbbb376b73fa583a3d9b1f40238
BLAKE2b-256 74afabf9ea5af174912663389ceb703a9ffe8316a87fc5f0ede9e1b01c475a03

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 32b613b7e2059ec8cd65b07d7d96d93ec6d28276c9f9ed95e9f866892b0c0611
MD5 3ca2e6631982ee10a01c52aa75eb9a23
BLAKE2b-256 81676b9620a7a3750ed1e744a064715186a96aef576762548099512cbb283a29

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aef1c97015789d0fbc5c5cf08e550b31423930fda841cdbb14f93c32414a4d99
MD5 f13d419a8f0cb9ddc0b1324efdbc5201
BLAKE2b-256 acc835ff25c5b63fc25fb62b1a5282ecc111388658580eb994a636d9ba9fbedc

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp39-cp39-win32.whl.

File metadata

  • Download URL: patiencediff-0.2.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 30.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.0

File hashes

Hashes for patiencediff-0.2.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b7dd4f4badc6168071fec33fa92dbc8d0754fe01bc109e911f6f73e30f5699b8
MD5 bda1b053b9a36fb64ddac5c7a67dc641
BLAKE2b-256 3763a92f1bdb96351d74dc8c99c94d40d831bfd33fc97c1ec3881158761a1c75

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d200f8badd072b25ba06a49037eeac2b8b8cab1c11b9f9efbc5e7ef55ec76e07
MD5 e97b002bccfca1bef30b53a5c18fafdf
BLAKE2b-256 d0fa787ce495c5841810c16bb7d5a6faf4d50fecf72a33fbbf02a714777fa342

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bb157e2af082a026455be24777daf5d83a2bf18c92f64ce6a0ab3991e04c7c32
MD5 5915f9d61704b4a13c861b96fca6eb91
BLAKE2b-256 3e01a1b25024e057ca3200c7b3c1ea2109ecbfa207d4b5f1f4eb6f097446c453

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 468f93ab6e762baf611e3bac78fcb71ed7e9d6de40defd513d9bc27bfc108825
MD5 aedd6af6d84ed456b926e9d15c3980a1
BLAKE2b-256 d8bdca04e6b75427437fc2010e9e59afbbf597604879baddfb06e4600ac0ce18

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1544053b87d5be60d5ee809c0c73ecae21e69b960614b29b1fcc6e1a71bd76ee
MD5 cbbdfb696443aaa951f6245f2381a243
BLAKE2b-256 409f8e2fa0e9ac2331e9170d25df15182b6625d0ab0f3a5fbde67d972d75bd85

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9eed2bea1133faf739fb93eaed3af6e2a1cb475ac564a498af3df3d01c140f08
MD5 3f2b7f7e77bfa9387c471912b2c7c601
BLAKE2b-256 46f2e807b1c317499019a64e88ee106bfe4efb18e20798c576d19a881d75244b

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5048000b9b60bb889381e73a669a683a1b06a4e761da23356cd5ee4a540eec4
MD5 319ca3d191786259178afcafcdd11c2a
BLAKE2b-256 b3e1cb49c48e8203a3a720c14d3556d144df33804b59c034267a4529198af8d2

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 718b9cbd52ed2eb6fa2eb51d2c41d1164001ac69afb71c15fb0f65168ad6ed34
MD5 cf075e123286a1cf55a57308454d9197
BLAKE2b-256 d60529421b2181dcdc830b9ebefc3aae811d557433ad9535218fba1a33738428

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d40b27084ac51b789eb948988a3d4cd9f40031790768d49e73bff281518c1643
MD5 e44c142f399df03f1e7cfc81bea90aab
BLAKE2b-256 622858643c8641cda1307f3d0b26a412ac5db528b1adf4ea8b3e44af35b5f161

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp38-cp38-win32.whl.

File metadata

  • Download URL: patiencediff-0.2.7-cp38-cp38-win32.whl
  • Upload date:
  • Size: 30.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.0

File hashes

Hashes for patiencediff-0.2.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 669f24fd12d573ccb8bdd7d9196617d3ea6628f50ca6092c07eedd38a38b1888
MD5 341ec6b6cf8dc351581d60f3cacf052d
BLAKE2b-256 d7d6d307233dcec4c0cb7f50851ad8dca213d6f35a927fdf5488700f6eccd15d

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6f17c39d4a2dae7915737cee84a897caa7d612b6cc202d5a53a3fd2995856e58
MD5 bc23bc5e750b653acbac019fe314278f
BLAKE2b-256 9b6861262847c0eb2b7d292345617551a7cc792b7caca08d0847c5fc3591a108

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 88d0b043d9993dc0a4a8751bb6bf582816e6e1be69a6fde3ad3021ba06a314f5
MD5 78f38aabb156f572bb5755cb9cfc3497
BLAKE2b-256 fd0b31bfb437cb042e6458657d5803e17569ecdfd20361aa95f900dcc71280ba

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09bfd3222e872365aca2fa368f0e9f1260c14091ee945cd3adf09425a9e14057
MD5 85d880a693b21eb393c304a447d8140f
BLAKE2b-256 4acb146c2105e99a15b32f7ff6f64e7c618a5e7c8d9be292a136406f431dd411

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1211e77ee834b13e043dfe5fa0c032ba3bab313d85c81486e2eaaa02baa87f1
MD5 1cec9a325cc151b30a2ffcd9c364373c
BLAKE2b-256 abd08e985100d2cbb4ba520295a383fa133e8e2d93dff527a8ad6c2faf289970

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9ffad016113a39f687f9414b454463c9b78761e90cf2b79e9f822964c66b6b3
MD5 70a6878c6a3498dac4561bad6e7bc4df
BLAKE2b-256 4e2c43d1e763e16fbc7b045e7f61f5ec04bdfea0e62e4c3389e1890970784d53

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26f80471ac87e6dd824128eb895feff12ead352384bce7e8de649aa95e593b38
MD5 5323e259e22db5202c85095a46a52556
BLAKE2b-256 ef8b64cb180a2ea8006ba911ab91637acf862806f36f492dc63c8a9e1eed9f07

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 54a88223b587acef5b6ff0b4ee49a7bd12173fbdc0725c765e73693259c8eedd
MD5 ce8e91ac0d31b75b273a474e6665baab
BLAKE2b-256 5b0abbfc432e584a392dd9abacfdb5299091828d8c1bce70ece4b104ce9ef84e

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1f69a0bd66ade8c9fc092b06423068ea50f07ddf49ae6be01343db71197503e3
MD5 75ff91993a0bd198ee7c7942de4e5f9e
BLAKE2b-256 e3c2fae2c40370c9ab35469e9376b097542d4339344e917f2c8a2370f116c3cc

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp37-cp37m-win32.whl.

File metadata

  • Download URL: patiencediff-0.2.7-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 30.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.0

File hashes

Hashes for patiencediff-0.2.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 833a528c4bcf3ed8bd50a1e3458c837ad72e8a835c5a18db1a160bbc00df0216
MD5 107c58dfe4d69033ef152ed3cd76fa57
BLAKE2b-256 dda080367782433fbfc36c9ff0f12942fead9d5aac18d861f831f864cffef6ba

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4dfd78376885f9d13419fb45ac61f9e0369084b6714160cd8ccf4a347bc93b38
MD5 0db58aa63988fb62b61dc656d9b842bc
BLAKE2b-256 f6337381d5c38a20520965eabb876e38e0c60e44251e1adcbd0efd5d53c482a0

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e1a43e6e6fbe4f6c4e9a1589a14272c0c73bd4dc4dfffbe9238e05ae8c46d139
MD5 ca9df317f83783aba97626ca4426cef0
BLAKE2b-256 0a4ce700f301de992cca771ca98ea4d1376b4ed4a46094aed3bbd8e56dda4515

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55c2794fbf75cfbb81c8d226e845758648dc3fc54feb38497a718ced120486fb
MD5 d38ee0b26d15c5c7145a495a715dacc4
BLAKE2b-256 332e489a12059da40fecfe6283f5b96ed373ac321f2083a3e981fec150a5cee4

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a23b3020480c3462ca1ecca4c5187c937f32982523bea5bacc7635a97301310f
MD5 96cdac36c1c14cc2d034deeda91b8f24
BLAKE2b-256 661013688b92b16e44fe1cbe28c01cd9551b582fcd7ec2e0290b5b681bd694c0

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9570563911533053e47de264cc23c1e699586dbffedc9ea3ae7c0743fa38f4d
MD5 f76498c1061a735ee9b6b13d7c8a7337
BLAKE2b-256 a4944ad9b79ae19d64059274c00c117786234ff8b02c1ad8899be226103bd8a8

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9b63c0d78e0dda67ec53944680661985bbd4a843687eaf7f290a64ec9b3086c3
MD5 948ca89b3e9b8b676670aefe69bd82ed
BLAKE2b-256 f4b8431bbb4e3a78131e50481b2bd50e8dc3124cc348719a6dd6d6475fea7630

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp36-cp36m-win32.whl.

File metadata

  • Download URL: patiencediff-0.2.7-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 30.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.0

File hashes

Hashes for patiencediff-0.2.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0533c6c16e6cad047fa981672e42e8316d3d92607d566d29f997da894df2979d
MD5 5e95387259e72d60693ecc5fab5df04f
BLAKE2b-256 b700e8f9935192fb11d61329289cefdccfa36b9939ba1bacc342ff51446606c6

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5dbb14ec413946ec5b2e9c13bfe5a28808b2dd9d576bacac9d669c81971ac308
MD5 c1b637eafd76cb8ed85804fdf5494916
BLAKE2b-256 9de8742ea77cb4dc716e419699aa6f40181e1f87eb1695c84a9917c9186abd9a

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 43f57b2ea744321f7e04115699c8c04f65c5f6db4d85969a24517b37b9b2d927
MD5 e06ee7d2a78087a7006da0a8585830bb
BLAKE2b-256 1c18957086b7fa8f058fc9f5251b9c6a791763dde994810548f75b7935548f72

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2a130ea2aa9f450745322e1a17ef6e53d81e842ccc8e55346ca8de39a5101cc
MD5 c6bda6de59c5ac73d2c85aa08567948a
BLAKE2b-256 700c3de4912d20dcf1edaca7a6172c69b5f5eaa112b0b3ce3cc07aee5321da69

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48e03a330a00089f94d91b2bf857e439fbd5e50fb36cf2d762f91a50146e4655
MD5 eed27a599bcf4a1ae2db9b9cc08c5957
BLAKE2b-256 3d38d0c2aaae624a6be8b919cf8675e7f8f6423273d7264b0744e3f7880f0c6c

See more details on using hashes here.

Provenance

File details

Details for the file patiencediff-0.2.7-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for patiencediff-0.2.7-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3bedd50bb766f8e8a6f6fa8bad0544029a4851e3dd1d8d91c4f20f74ebd8cf29
MD5 f2f6aeb5c13e2bf163d1e7292edab2ff
BLAKE2b-256 bfab8261b8846510182ab8a14616993403d79cd2fc80f152e5af013440431be3

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page