Skip to main content

editdistpy
PyPI version Tests

editdistpy is a fast implementation of the Levenshtein edit distance and the Damerau-Levenshtein optimal string alignment (OSA) edit distance algorithms. The original C# project can be found at SoftWx.Match.

Installation

The easiest way to install editdistpy is using pip:

pip install -U editdistpy

Usage

You can specify the max_distance you care about, if the edit distance exceeds this max_distance, -1 will be returned. Specifying a sensible max distance can result in significant speed improvement.

You can also specify max_distance=sys.maxsize if you wish for the actual edit distance to always be computed.

Levenshtein

import sys

from editdistpy import levenshtein

string_1 = "flintstone"
string_2 = "hanson"

max_distance = 2
print(levenshtein.distance(string_1, string_2, max_distance))
# expected output: -1

max_distance = sys.maxsize
print(levenshtein.distance(string_1, string_2, max_distance))
# expected output: 6

Damerau-Levenshtein OSA

import sys

from editdistpy import damerau_osa

string_1 = "flintstone"
string_2 = "hanson"

max_distance = 2
print(damerau_osa.distance(string_1, string_2, max_distance))
# expected output: -1

max_distance = sys.maxsize
print(damerau_osa.distance(string_1, string_2, max_distance))
# expected output: 6

Benchmark

A simple benchmark was done on Python 3.8.12 against editdistance which implements the Levenshtein edit distance algorithm.

The script used by the benchmark can be found here.

For clarity, the following string pairs were used.

Single word (completely different)

"xabxcdxxefxgx"
"1ab2cd34ef5g6"

Single word (similar)

"example"
"samples"

Single word (identical ending)

"kdeisfnexabxcdxlskdixefxgx"
"xabxcdxlskdixefxgx"

Short string

"short sentence with words"
"shrtsen tence wit mispeledwords"

Long string

"Lorem ipsum dolor sit amet consectetur adipiscing elit sed do eiusmod rem"
"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium"

single_dif string
        test_damerau_osa               0.5202 usec/pass 1040.36 msec total 2000000 iterations
        test_levenshtein               0.3547 usec/pass 709.40 msec total 2000000 iterations
        test_editdistance              0.6399 usec/pass 1279.81 msec total 2000000 iterations
        test_damerau_osa early_cutoff  0.5134 usec/pass 1026.72 msec total 2000000 iterations
        test_levenshtein early_cutoff  0.3862 usec/pass 772.31 msec total 2000000 iterations
single_sim string
        test_damerau_osa               0.2983 usec/pass 596.57 msec total 2000000 iterations
        test_levenshtein               0.2433 usec/pass 486.68 msec total 2000000 iterations
        test_editdistance              0.3942 usec/pass 788.36 msec total 2000000 iterations
        test_damerau_osa early_cutoff  0.2865 usec/pass 572.90 msec total 2000000 iterations
        test_levenshtein early_cutoff  0.2363 usec/pass 472.61 msec total 2000000 iterations
single_end string
        test_damerau_osa               0.3332 usec/pass 666.32 msec total 2000000 iterations
        test_levenshtein               0.3300 usec/pass 659.93 msec total 2000000 iterations
        test_editdistance              0.7902 usec/pass 1580.42 msec total 2000000 iterations
        test_damerau_osa early_cutoff  0.3199 usec/pass 639.74 msec total 2000000 iterations
        test_levenshtein early_cutoff  0.3205 usec/pass 641.01 msec total 2000000 iterations
short string
        test_damerau_osa               0.9925 usec/pass 1984.97 msec total 2000000 iterations
        test_levenshtein               0.6379 usec/pass 1275.76 msec total 2000000 iterations
        test_editdistance              0.9587 usec/pass 1917.37 msec total 2000000 iterations
        test_damerau_osa early_cutoff  0.7535 usec/pass 1506.91 msec total 2000000 iterations
        test_levenshtein early_cutoff  0.5794 usec/pass 1158.79 msec total 2000000 iterations
long string
        test_damerau_osa               8.6244 usec/pass 17248.73 msec total 2000000 iterations
        test_levenshtein               4.2367 usec/pass 8473.36 msec total 2000000 iterations
        test_editdistance              2.0407 usec/pass 4081.31 msec total 2000000 iterations
        test_damerau_osa early_cutoff  1.0795 usec/pass 2158.99 msec total 2000000 iterations
        test_levenshtein early_cutoff  0.9031 usec/pass 1806.28 msec total 2000000 iterations

While max_distance=10 significantly improves the computation time, it may not be a sensible value in some cases.

editdistpy is also seen to perform better with shorter length strings and can be the more suitable library if your use case mainly deals with comparing short strings.

Changelog

See the changelog for a history of notable changes to edistdistpy.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

editdistpy-0.3.0.tar.gz (34.6 kB view details)

Uploaded Source

Built Distributions

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

editdistpy-0.3.0-cp314-cp314-win_amd64.whl (103.9 kB view details)

Uploaded CPython 3.14Windows x86-64

editdistpy-0.3.0-cp314-cp314-win32.whl (99.4 kB view details)

Uploaded CPython 3.14Windows x86

editdistpy-0.3.0-cp314-cp314-musllinux_1_1_x86_64.whl (439.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

editdistpy-0.3.0-cp314-cp314-musllinux_1_1_aarch64.whl (409.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

editdistpy-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

editdistpy-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (233.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

editdistpy-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (206.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

editdistpy-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl (207.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

editdistpy-0.3.0-cp313-cp313-win_amd64.whl (104.0 kB view details)

Uploaded CPython 3.13Windows x86-64

editdistpy-0.3.0-cp313-cp313-win32.whl (99.3 kB view details)

Uploaded CPython 3.13Windows x86

editdistpy-0.3.0-cp313-cp313-musllinux_1_1_x86_64.whl (439.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

editdistpy-0.3.0-cp313-cp313-musllinux_1_1_aarch64.whl (409.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

editdistpy-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (237.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

editdistpy-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

editdistpy-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (206.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

editdistpy-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (207.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

editdistpy-0.3.0-cp312-cp312-win_amd64.whl (103.9 kB view details)

Uploaded CPython 3.12Windows x86-64

editdistpy-0.3.0-cp312-cp312-win32.whl (99.3 kB view details)

Uploaded CPython 3.12Windows x86

editdistpy-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl (439.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

editdistpy-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl (409.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

editdistpy-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

editdistpy-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

editdistpy-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (206.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

editdistpy-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (207.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

editdistpy-0.3.0-cp311-cp311-win_amd64.whl (105.6 kB view details)

Uploaded CPython 3.11Windows x86-64

editdistpy-0.3.0-cp311-cp311-win32.whl (100.5 kB view details)

Uploaded CPython 3.11Windows x86

editdistpy-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl (441.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

editdistpy-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl (411.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

editdistpy-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (239.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

editdistpy-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

editdistpy-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (207.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

editdistpy-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (208.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

editdistpy-0.3.0-cp310-cp310-win_amd64.whl (105.6 kB view details)

Uploaded CPython 3.10Windows x86-64

editdistpy-0.3.0-cp310-cp310-win32.whl (100.6 kB view details)

Uploaded CPython 3.10Windows x86

editdistpy-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl (441.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

editdistpy-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl (410.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

editdistpy-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (239.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

editdistpy-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (235.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

editdistpy-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (208.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

editdistpy-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (208.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file editdistpy-0.3.0.tar.gz.

File metadata

  • Download URL: editdistpy-0.3.0.tar.gz
  • Upload date:
  • Size: 34.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for editdistpy-0.3.0.tar.gz
Algorithm Hash digest
SHA256 5f9aaaf4dc818e18cdfdaeb347c61ef755f2dad40b3b63db69f601f4ba315133
MD5 8a75e602244395600a3aa37d60d72a0c
BLAKE2b-256 6535a6847fe654008b8770e8659f4cb8cd33e63d0a783f52909cd7eb85ff2c33

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0.tar.gz:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: editdistpy-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 103.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for editdistpy-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 865604ffe59a6177d36c445f96a7ca013b86735cb37a695639db8092ec14f62e
MD5 6d1c807276f12fa5316b49cb46f3374c
BLAKE2b-256 8c7b1f1503a5a6c0c5d95d9c892984c891af4337a9fa31123bde8b2f70f9ab41

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: editdistpy-0.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 99.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for editdistpy-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 efab86b30b9eeb5e0fb013c64b663489bba1b190b5390e73d86f4bfe044045d7
MD5 92e617fa799d3dd0e382927426579378
BLAKE2b-256 84ba0afc7661bf689283e365c50b0f09d7a91105d3c81c470b5b196b789eb728

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp314-cp314-win32.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ab41ba380c0001b0d91a1a439b96ad50443c8131f8cb15d025704a5aeb3e21cf
MD5 82eeb77dc403e43e0b2b9ce592f0e399
BLAKE2b-256 de2cbc2c5b1cf6b71f7aa8ebdf1c004ddbe2ecd635771633737e041efe026492

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp314-cp314-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0ddc3efcbe3b2cbb3075d78cb6f2f8bf4a9077ec9e79e12f3796cac6059e132a
MD5 23bc33d9300ae4c621d1c9f33c83b9cc
BLAKE2b-256 e7e635e82d0a4615b2c2bbeeb28ec7f4c27b3d49b08faff5bcab985cc48f1fe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp314-cp314-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e2699d0810576f75d287db90cc151a79b1005ce0e518f44b6d51bffed3cc686
MD5 d67fe4ca46aba61a041e224cd3c43af5
BLAKE2b-256 8e571c2a4eb99b50b4232f5ad1182b96066396139804dc1b62a7e33edad7dee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbc8ec637ae915b76b47b72b6a199eee56c5089a47267e3ed2ac4813e8291e3e
MD5 be21633cc92c0f73b997d6083f61a68b
BLAKE2b-256 0fc2ae9b4d75bafecccf58920590d88eb1113ca34651ad82f12ca79a3e6ea00b

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c17dc8d40874bca509bd9ff4ee88ca33ea0cf06cac108d73c4e55163226ee1d2
MD5 10a1d8911d21afc585aa2a1e85b28f32
BLAKE2b-256 aec6cc5a5b9d83b8aa57b7b62ba4ee2921ac92e0947787cbc61f749a082a9aa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 46e0433c20eea98e9da144422df5b6a8b68e539b44c894d8683d296564eec877
MD5 a6762bef0905ff8bf602a0807b1c467f
BLAKE2b-256 d9111c6799e959dd5e530e13b9642a31583fe67acdb5904df15c00b79a17896f

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: editdistpy-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 104.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for editdistpy-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 08ad0bbb7550014a6ea95b765bf001c2a34b25eb8160df8c4718f8d2cffcb648
MD5 52ee48fd77c8f57cf025bc11a8bdd300
BLAKE2b-256 1f703719515e6153a3538c0c827cb0532c4e2de5cbcc87fff3d34a81b0d8718d

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: editdistpy-0.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 99.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for editdistpy-0.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7c05634b8ccf327871ac87176f23f8550986d83e0c32eb7d67ca2189a1569429
MD5 ea9a819041ff61b652234050ab731707
BLAKE2b-256 79f4e693f9cb379808d5c1b0dfc204f27403602df3232622079800026c6f1a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp313-cp313-win32.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4def8bb2d1afe3a7f94178316713807a876b7bf4dfdcdb6580f1cdd7c5533e5c
MD5 96aa61af712e1f898a25b5aa030d6526
BLAKE2b-256 406fe5d4c17c7eaf9cfca236250b63ee7c7d1c33d1375efd01b7cdbe53880b60

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 496d4737df70051b061349ed0b164ef09a12788065f268ca2dc25d612df57c55
MD5 d1dccb77afbb5ffd4c4b8ed3b925031a
BLAKE2b-256 773308b106947a50149243f702911f5ec83bff2f4e4ec28eac95930609268f65

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 071214924a5d04a80b37e52fddd00a259b076f7fc8b3e30ca57349dfff75da95
MD5 a21dbefc3cd4ccb7bbbd59e9c01abcaf
BLAKE2b-256 97be4d4ea82fb276a7769b31e6f01dbb4cf58b6a2712be6d554eba8d60fb852b

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a63f2255edb2fefdfd527288d6e90c8c01a1adc47bcf1664d6c5e5e64b9ce85
MD5 7f539d19b417bfbb03e7f1310588465f
BLAKE2b-256 2cd409220c1b8930ec6e21346f5a71e946e4374a216265d8ac89034c7506aa16

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9efa875f31137038a9f28df606262102dd61d886892e86811f1817ad18712a11
MD5 1a3f25a6c2413542725442f7577b5687
BLAKE2b-256 a7b4190f08b67c136d001954dca002cdf82ea21eceb8e478877a765bad7cbc29

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ffa81a5d4a38b583816c3186c32808ab2682682ce1de89f68157040530f6c7c4
MD5 4b58cfb9fbd307f3b6feed01dec823ff
BLAKE2b-256 8548d41393894c5be44c410aa622b1bad74a50b639fbd04f8f57ae7680abeca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: editdistpy-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 103.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for editdistpy-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 35048879c6c3f3cbb34995ec540a985ed186c5afd7c76436649015d8b8e3081e
MD5 76d8d4f353f4647286f181aa71596b7f
BLAKE2b-256 a801bd9e030be229f6ff367db374cc9d2e94823e95340e4317be65a09dcbecff

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: editdistpy-0.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 99.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for editdistpy-0.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 01f9eb6f6b8382b0e5076397b1633a400ec46b72e5845cc14cad92aa5e2caa45
MD5 6fbef06a23317694bb117c5632f0443f
BLAKE2b-256 700e4ddbc31b4c3368b411ed1e3768b5101dd83236c0d3acbe76bf285c877d98

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp312-cp312-win32.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dd11d5d46807fc5559da7d6ceb969aece80ee29607fcb0ed5392774fcf19c5a6
MD5 ace75a042f8d1cf4ee1d161510aca10e
BLAKE2b-256 ad1146dcb37ea7cfacd833de2ed3b60b60659eaa80a099cf7bfa58a34425e253

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d48f2470ccd8e21fbbe5735b4cc1206441bafc95d2d624c5bb4516943e3fcc76
MD5 613fd0f817cfb255f46b4af6d7fe19a4
BLAKE2b-256 2a96143ddcf8d5f3d0a575b6832e6f83ba4ff75af4d2d5addd118ab5f106ce5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70e4467ef71c8799ad93b3b0eee008c0c6ce1ce90c2c034ff1179dbe43b073e1
MD5 e66b18ed046d0c27d2484aa05c1e7385
BLAKE2b-256 09624b3af8f181ce489b243b8ebad630614a7aa87956e82be9fdf785d81e89af

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99c6cef929624f9ea1697bfa4f2df5ed8f2f01c166c85fa0e1e1e4b73398c734
MD5 bff1caa4de3e98fe25273151eddfe5c4
BLAKE2b-256 0dea259fa41133406a2578ae17af3c4385abe85d2b3e011e04bf470315e44e8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12df0ec6d9f1fd8ea7017ee4fb1b5528c080afe826409cfb3ed7387a6c73855b
MD5 45e6152d5aa45087889ce1e44e06e0b1
BLAKE2b-256 31fa0f8a7a4401edb65155324b2debc34c931e498df94eed70f2f067be5e942c

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c7b7ea8c55eadb8e6d730b7086361c64f3b6209b163f0f56a1e6c95d32c75ea
MD5 0ceb8ed86dcc1e6fb592492a5d98e307
BLAKE2b-256 c17c87b99ea9cc880834d3b8cd586cb1001e2b7a5dda119a3177fb44d62569ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: editdistpy-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 105.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for editdistpy-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b38d959ad0e1a811c8e111b1e0581ee6a2f16baee7b1ac17f3b7dbe27c2154d7
MD5 cb80beb6621b92d655d6990ee25f20a5
BLAKE2b-256 89247ce581aeda212099a8db38b96afc4d8b1ed08ef315eb108778015343de93

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: editdistpy-0.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 100.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for editdistpy-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9976d2b76e14da51306e6415b466201b6feb767cebe924c58141eee656886859
MD5 d798c08c462889d40cd866cfdeee02bf
BLAKE2b-256 3243367d66f67667f20dee694f9dc26f922aa1d486c6dda6081a2bbbb8823db7

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp311-cp311-win32.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 59137eb14dcd8c8409f731a8c09adf64f6de5f77412eb4d4fe7ebfc9ffe6e36a
MD5 965d26536661de81dee80a8847444c75
BLAKE2b-256 d80eaa99f5399bc68d61ad9ed4ba44b2496660f7eb93f45cf34fc8d86b5fcc42

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9a1fa0c0eff6b65564b7eaa9497f3c02f0b112aea53775177027297b3f1cf567
MD5 438c1d3fecf534ac54f5874868a96a11
BLAKE2b-256 eeebd115a6fc53c4fd90d7b324b8c7e7a3f6b9f34e76f20eb83b13a296f77f32

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e17c805154ff4df2cd3da23278e48e63ff896f40489a6fc70c2a31e9d36c644
MD5 57735baeb974234fbcbf3cd80ffa8953
BLAKE2b-256 1c54d2d2a8813b52cf31c838729ce406dad50ddeee90e6fe7ae9916597a2bfee

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a0bbc47cc0b845704747672d914e6c1f15271cae64ae1724769d209c79b4482
MD5 fcfa20aaa768250c70f8ea78a2e30d25
BLAKE2b-256 3e92c1199f2d3541d48fa4ebaf03635b6c057ac0f023c1b146c8064ed92c9819

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f71b059e7482d047f9f9d71615f4c36f907215906a46c7537a43842174ef77f
MD5 0d3c93adcbe8ab5d8710dafa8faf47eb
BLAKE2b-256 ee7c98c73fdda887f59a31742034e4c75a129156892e6f6dece2b90451acdc13

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0ae71c8a16120b533909f511aef2fdc750386df5662fa0d623f3141cc5e66d8c
MD5 f9c0f534655bd36b20436ced65f04675
BLAKE2b-256 9d87dc2ac43a951947a265a80aec318796d51d9640ed756c6ea7e4a0e01ef5cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: editdistpy-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 105.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for editdistpy-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a061e3a201dfe0e61aa3a265a78816919a6fa52222e6d7ee4445aebd1131e664
MD5 a9f181736a32dcfeb5095bc361c033d4
BLAKE2b-256 0f1a1c0f0e3f27ee791c52c2ab10c59264b863a31384abc77ed0f2afae19d797

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: editdistpy-0.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 100.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for editdistpy-0.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b504a3a9e09def45c1ef368f75b6e8bfed6708abe19fa4b823f17d49c124f5c6
MD5 3861c1f86b5bb29e18be43a14fcea8a1
BLAKE2b-256 5231e80c4781fdbe42a03c61e766e5b89506dbbdd67efec79a8a48b5b867c801

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp310-cp310-win32.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e0a2c4861294f4fd1940e7207c287619616d55974828c4b559a7ed41e20c61ee
MD5 6c54a1afc606bd41f967ffc852a7e666
BLAKE2b-256 4b10b889992773d5672b8972983f031c2cee1d2fd1960275722315e3c1d87fe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0cb13874c49115871c0ae0f6d9c4836b00d81fa44f3edd7c48a91d770ca269d3
MD5 1a62d0b63c8de7f24627009b3eadb992
BLAKE2b-256 ad4c1d4718a32466537e2db04ce4bb41c49498223de7c07ae60b11ce8cc8f788

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b140892306b60142a1a9d136dbe7a1a2770db916b765571319359566c0d28f13
MD5 5d62f5742fe08326c9e3f9146a20699e
BLAKE2b-256 15fb2b905eb9b198c218e485cf19f80181afc560d9f3cb04d4bd891b7ef3186b

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0906912f198b34299fcdfd05aa3f9be6d5c5d2ed2d8484ba8ab129494dd8da3c
MD5 e89d4995b5d7b5c8426b5ad4263b1bb8
BLAKE2b-256 1a10996f166dee8a149033503257984cfedecafaec1cfbc937cb4537b0527748

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92f776774ea633063f7e52800a0b7073d3ae3cadb0bac14c1cb551f321b71896
MD5 86ea21cbbcd6ec2c53bcc6594621fe8f
BLAKE2b-256 53d984294ae3a5a666326d95ffe99018ceea39b997f8608e2e7fcad22f69d76f

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on mammothb/editdistpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file editdistpy-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9770f6175ad9625bedbc1f1581e451326b8da2943a255a138b15e9ab92fc1bc5
MD5 523a4c9a631db6443075ed413cea7dc0
BLAKE2b-256 30877e107acb2dd0c3ba099293785ff8771d4876745a96a56f791e66521e61c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish.yml on mammothb/editdistpy

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 Sentry Error logging StatusPage Status page