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.3055 usec/pass 611.02 msec total 2000000 iterations
        test_levenshtein               0.3030 usec/pass 606.05 msec total 2000000 iterations
        test_editdistance              0.7036 usec/pass 1407.27 msec total 2000000 iterations
        test_damerau_osa early_cutoff  0.3042 usec/pass 608.37 msec total 2000000 iterations
        test_levenshtein early_cutoff  0.2997 usec/pass 599.44 msec total 2000000 iterations
single_sim string
        test_damerau_osa               0.2379 usec/pass 475.80 msec total 2000000 iterations
        test_levenshtein               0.2434 usec/pass 486.90 msec total 2000000 iterations
        test_editdistance              0.4126 usec/pass 825.17 msec total 2000000 iterations
        test_damerau_osa early_cutoff  0.2234 usec/pass 446.78 msec total 2000000 iterations
        test_levenshtein early_cutoff  0.2372 usec/pass 474.36 msec total 2000000 iterations
single_end string
        test_damerau_osa               0.2933 usec/pass 586.63 msec total 2000000 iterations
        test_levenshtein               0.2538 usec/pass 507.57 msec total 2000000 iterations
        test_editdistance              0.9376 usec/pass 1875.16 msec total 2000000 iterations
        test_damerau_osa early_cutoff  0.2774 usec/pass 554.73 msec total 2000000 iterations
        test_levenshtein early_cutoff  0.2497 usec/pass 499.48 msec total 2000000 iterations
short string
        test_damerau_osa               0.3533 usec/pass 706.55 msec total 2000000 iterations
        test_levenshtein               0.3772 usec/pass 754.42 msec total 2000000 iterations
        test_editdistance              1.1646 usec/pass 2329.30 msec total 2000000 iterations
        test_damerau_osa early_cutoff  0.3515 usec/pass 702.97 msec total 2000000 iterations
        test_levenshtein early_cutoff  0.3798 usec/pass 759.67 msec total 2000000 iterations
long string
        test_damerau_osa               1.3348 usec/pass 2669.56 msec total 2000000 iterations
        test_levenshtein               1.1531 usec/pass 2306.22 msec total 2000000 iterations
        test_editdistance              2.8700 usec/pass 5740.06 msec total 2000000 iterations
        test_damerau_osa early_cutoff  1.3383 usec/pass 2676.50 msec total 2000000 iterations
        test_levenshtein early_cutoff  0.8080 usec/pass 1616.03 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.4.0.tar.gz (40.4 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.4.0-cp314-cp314-win_amd64.whl (111.9 kB view details)

Uploaded CPython 3.14Windows x86-64

editdistpy-0.4.0-cp314-cp314-win32.whl (109.0 kB view details)

Uploaded CPython 3.14Windows x86

editdistpy-0.4.0-cp314-cp314-musllinux_1_1_x86_64.whl (449.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

editdistpy-0.4.0-cp314-cp314-musllinux_1_1_aarch64.whl (419.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

editdistpy-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (246.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

editdistpy-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

editdistpy-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (214.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

editdistpy-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl (217.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

editdistpy-0.4.0-cp313-cp313-win_amd64.whl (112.0 kB view details)

Uploaded CPython 3.13Windows x86-64

editdistpy-0.4.0-cp313-cp313-win32.whl (109.0 kB view details)

Uploaded CPython 3.13Windows x86

editdistpy-0.4.0-cp313-cp313-musllinux_1_1_x86_64.whl (449.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

editdistpy-0.4.0-cp313-cp313-musllinux_1_1_aarch64.whl (419.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

editdistpy-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (246.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

editdistpy-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

editdistpy-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (214.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

editdistpy-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (217.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

editdistpy-0.4.0-cp312-cp312-win_amd64.whl (111.9 kB view details)

Uploaded CPython 3.12Windows x86-64

editdistpy-0.4.0-cp312-cp312-win32.whl (109.0 kB view details)

Uploaded CPython 3.12Windows x86

editdistpy-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl (448.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

editdistpy-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl (419.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

editdistpy-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (246.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

editdistpy-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

editdistpy-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (214.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

editdistpy-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (217.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

editdistpy-0.4.0-cp311-cp311-win_amd64.whl (113.5 kB view details)

Uploaded CPython 3.11Windows x86-64

editdistpy-0.4.0-cp311-cp311-win32.whl (110.1 kB view details)

Uploaded CPython 3.11Windows x86

editdistpy-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl (451.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

editdistpy-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl (421.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

editdistpy-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (248.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

editdistpy-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (245.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

editdistpy-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (216.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

editdistpy-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (218.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

editdistpy-0.4.0-cp310-cp310-win_amd64.whl (113.5 kB view details)

Uploaded CPython 3.10Windows x86-64

editdistpy-0.4.0-cp310-cp310-win32.whl (110.2 kB view details)

Uploaded CPython 3.10Windows x86

editdistpy-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl (451.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

editdistpy-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl (420.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

editdistpy-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (248.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

editdistpy-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (244.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

editdistpy-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (216.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

editdistpy-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl (218.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for editdistpy-0.4.0.tar.gz
Algorithm Hash digest
SHA256 bc64c0d0c4fe23a09e4b02693c5591a01d2ede7001bc55fcf92c117f68cd0896
MD5 4ac9bd3ab1478422d55f480020ec1ed2
BLAKE2b-256 8412cd926c3774da2ccad90099b4a9de16246cb3a4508ca93ac72df78539f17c

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: editdistpy-0.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 111.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.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b32e81133fbf11778a51e7ed45c2e869cf0231b6dd2c2ed5dc921282baa386db
MD5 51425518cd5dc8ae2775f47a5556d31a
BLAKE2b-256 578fed6401157cad9ca7094295c7be7a6d33732b4b150a914d17eb5587be79aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: editdistpy-0.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 109.0 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.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aaa8baafeb3ce56b56af47c8846b1ef3e0c4e909d27123a0de9b842a79e54d61
MD5 1aec47923a07634fe097759c4620815f
BLAKE2b-256 7ab508c773f2909cc351c94fdb1023808fdc6ca92ad2d65cfc4b99a8a17a623a

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0c6e2c79f63246e00aef6cd0a5b90591c087f44140b2752f49353bdcdd93f54f
MD5 36037a6241e6b3ef753c6fa72f36c49b
BLAKE2b-256 2314b60e8a5336b2ed71b117ef4b96ab8c17fcb8f6ee6ad4fc4469c770314208

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5d59decde3e61d1a45281453f4e39489a10ce5917ca5c04a82989b512a600239
MD5 ade8b94cc57916073ecdccd44b880683
BLAKE2b-256 86b52cf26f49089d4993d6a2e7b1d29e766f99796ee2d6c638597e74f245c3b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9a1f3a669e5b601a55d109e661d8309c5d0bd83bffdb13387c183dd0e220822
MD5 d8fc181b2ffa396f0e6acef633583fc4
BLAKE2b-256 326891dd15c937c05cac96bb90fb44e7df6c0160896fc0d60d481adc93eeb7a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3852eca0a9d5b02958944e9d3ef09d32bce403421f6a3d7fba6daeabae83eb5c
MD5 0b47d7105cca3b2329121f1e0ee03a37
BLAKE2b-256 e4fe4adf8d8ce61115df89e18f9c2839d986b44213abe7e96f85ce8ce4993f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f86af75826ac52776ad384a93eac52c5a86fc012e41768b0105cee401cf123a
MD5 2f0c70288328956c256bd4956c32ce14
BLAKE2b-256 d1fb7e910b019275b179c06beb676924530e10b519d8f449126f29127141b948

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1b3440a9c18307eed9841d429c0ddfa61b9b75978a56ceb28c33e113e226c275
MD5 5a6cd97a58b7f43c95cbead72b1c475c
BLAKE2b-256 d7d85a4f90db4d8ec18d88bc72127c4840fee655f24784dc0c1be58d5a16efa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: editdistpy-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 112.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.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 de1fa669c5845fcac2273f1bf36c2d783476d64b3bf7bd8e3b01a81ed0e7d2c5
MD5 142aa253d6da2cf5c544cd69b9722897
BLAKE2b-256 5e38b0f5fdb8ddd19cd29cbfada4e3d36be4634e15c19fe035b3074115dfbc59

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: editdistpy-0.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 109.0 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.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 943d2483379347537ec9ca5be646515debdcab10dc917b074bc971906f8110c9
MD5 4761261c4a00bd60f67044bf86f83392
BLAKE2b-256 2d98a198472f4d48afe90172e7c4a94ffbb062c663517dd316827a03cab66a2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 77e0b3a9b2d861298c6ae381bd74f5886c1f8f9131bdf47dce785f32ac030990
MD5 96482a86f2de47b7e4c097a7c2832c97
BLAKE2b-256 e7944939be38ae89fc523f23f7afb8334c4885d66c9873382c1a6cb890ae40e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 24264e71520e4c30248f123769de29564f6f186b6a3d602cf5f4610ad98be04f
MD5 77f733d955ebfa10c816d9a07f5ea3e4
BLAKE2b-256 3383d576111d67205096e42dbf36e0e34899ff83ecff5715123358a148a518d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01378f35b2d3a197d128dc80d7fa60dccd770080925490571307481dc158b3f1
MD5 18b3d83c63490ada4ad4218759964523
BLAKE2b-256 5fee1919bae4d70e9ae2ca8708e3c0bd0ac3b069fe48370699ea2ac137ead225

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ceba72fdd4ee97f3dc7c973a2b23ef210e3f3721f2fdb46a7aab51fc18e81be7
MD5 885a63bb0f69148529eedccdb659c96c
BLAKE2b-256 4f4ac2311dd843c5868a0473382cb5c7a9e63ec940bdef4ff5aa57d4dc9ec83a

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc2ffda9d0bb446ca93b7a5159c7d2e1bf124537744239ea282361726ace2afc
MD5 bba3e728ac8441717120b451403132ea
BLAKE2b-256 c7bb4b3ce82d240c056d516272c6ef3406abdd4c26bc392baf6788ce7256cf43

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff0e93e5b3c7c740af5707fa342f115a3eb27490a9ac9ad82ae37fe5f897b6ea
MD5 bc5c11374d23884c85d715ffcea921a5
BLAKE2b-256 8ee609a1f0ffdbbd44488e36dae3f7402cb29d302eb1c695e413dacd8c4365c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: editdistpy-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 111.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.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 49fdaf9f59094876147e5e973493c5f169a989df8954d808827738f782c1b895
MD5 bb9a56dde1726861ad014f83226dad7f
BLAKE2b-256 41224585734cab01efcc006cee594c9fe6021c363e303b44ce493ffdbc892f72

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: editdistpy-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 109.0 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.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d8ee137719626db2d7493481e441ac46b2e448529ea2f8ebeed262422af454a7
MD5 622dfa86386b4738232899e4d7304359
BLAKE2b-256 9426ded4aba7f1fc06df2ab6fef53cf598b4b95f12ce05d15c4ddafb3aaf5cd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ae9237919dada0f25a5f91aeb65449e79ac55c24ed48f98e476ae79a03ec29d9
MD5 4bb02691b408090e15820f9230ced228
BLAKE2b-256 01200fecd4170ce29e2da002b689bbb56038a5f08c21a390f8308440468f2d85

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 86f2dc71be0a9ad86acf190364d7723aa9a178150e9773c705f6abf70115cd05
MD5 8cc74c5b0cdda08e301deff3b270dde4
BLAKE2b-256 494250bb14b29f6fe2231298cb7e12050c2836ffc777c8d2c32ee5de7d3829b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 827f6c304e7fe216968077920a1d32c959e50483c2a8e79625ddc52b244deecb
MD5 5a86e5db1232b266c174da6dc46dfb5c
BLAKE2b-256 df8b27fcc35259c7230fb570ef37c15392567e0bc194d8ea296f1282828cbaa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 282a15621d75dfe5c19489700edfb494407f24af01adce637bc87ba9cc424ea2
MD5 d2ad6469009afdaed508c13f5f86669f
BLAKE2b-256 9d9415f077a29656c0b9ea3a141b7acf61c30005d9f0e7fbebed7351dd94ffa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cb4669fc6dbfd7eaaee6f7cbcda73bd6c1d70b5ab29aff998deb43cdd937973
MD5 ba6deb8a558f4b075152129aa629f175
BLAKE2b-256 14b67bc59c6f10ff91656cfb871bcde496e0db3493bc12ab3fdfded7cfc35b4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d0c338cc41d45b5df5407fe432e5bdd2fb5e411c458e7168f22b64b0efc8a0a8
MD5 3c6379a2864df20554b69a5cd36dd3c9
BLAKE2b-256 7149c1694641ebc864046c44dd76af5c0118c9a45307174b8c72371c127ec3e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: editdistpy-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 113.5 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.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 53477bd2eb41aed4e021872110c88c20fb4a4d73b19e06c2f3b17db0829ffc95
MD5 135db0f5c534b21bfd16f36b3835b929
BLAKE2b-256 68da3f8592014f512f60b03d7a9ea2e2460840fa3fc868d685fb63c06058bcbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: editdistpy-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 110.1 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.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ed33792e2fd234b0822de9f5ede063aa012b7b4caaec037ebece2d6001619600
MD5 d57033669af908ab531585dbc641f474
BLAKE2b-256 e2314bf0498e6e441f19874b47749ee298ab7e50975868f7027b34735fb60b3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ebbb5fac39cd226e5f4e989ea7e4fa3fbbad46a9cd1ad45704f4fb8199f7bac4
MD5 aff3357e9a91b036bc811cef01b0b32b
BLAKE2b-256 7ff5a20c371f0c3ab91fa92f1ff90717476e580c64b80e096b767157a9b6e9bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 25cb9c4386e699a016e7807aaa52ab643c49a0b034d415ea9408835fe9ccbd77
MD5 2dae3e8ad43d9e3d03bd7aa8fe21bed5
BLAKE2b-256 6bbc6059665bdabfdc63e91cd7b09f87dbce487b4f017ca72b0a7eedb45543cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9947f1b545f9bc37bb722d7eac9064dac4a924775dd99a9eda2ab36569a6aa17
MD5 a6cf6ab463f6ec3c3856d5a549218f5e
BLAKE2b-256 ae87748aacc198f2e49df4f0a257c7969d5744c1227b667cbb545e4c3eb86990

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b70cfd5404eee0617c991a3241cd06d665c23400b2a9f48a2235afa126323b43
MD5 7281e6217819c05e33086c8e356d4866
BLAKE2b-256 2abf09e89cfddf8341411a2a7435b14a978352f381ea1ff53ed84206646bad2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bda3a006d424f300de6d406d416c97f0381685e99e505001414251cbe51699f2
MD5 38dc95d6de621f4b783832494c08619b
BLAKE2b-256 e0ccdc5ef5718252b0fa844210d55815e12d5524b03ff3d2bc58045aad1423be

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b45a42be7c082dc14883c60be5941140a394830611fc0491cbe4dcd1c2e5f97d
MD5 351d9fd0afac46c4c13694f2148f5fe0
BLAKE2b-256 b84a50afb4752450ecdd7997dcb66c51271a8b868d47930cd1952dce3e793958

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: editdistpy-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 113.5 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.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2cad67db7a2917f8790a00e02614746d8715d48b63b2ee59a64523e31a65d29d
MD5 7add955131ded9998266b3514fbcfcf8
BLAKE2b-256 a967fec95026363ef00078ce4f5e1e54d33fa60b6c8297dd22a95449e60c044e

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: editdistpy-0.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 110.2 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.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fad120ccf080d2f13dcc32c715e67d4716a272f0739349cf5ce76e32184bb626
MD5 c3bbb219666f2ff967b0baad4bb78ad6
BLAKE2b-256 4259da50bd75e83e62bf9f9b869703c7ed63726e299c5df0fcf34a2d298f42d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 13ec429d4bdf461098facac53cc0fc1b0878ec23568f52e46654d5ac473d65bb
MD5 7bfc04899a53ba311996da143666c1b4
BLAKE2b-256 e1fa8133fa0fb299464ea095ad17677175c904091b6f92c6c8214c3be3d8dc2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f579fe6334d6e5b9ecc165e7e24c473994ba9063dda449e2bc71390896d09b4f
MD5 17f01a511292f878e034a3111dee48ff
BLAKE2b-256 232f37df565e595022b13e2d1a32eee43e8abc81dad0d4e74c452f1524b08bdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 450a8b61aa50661fd92461d5d66a16ee71667441363ebcd6afc64253a6cf4c2e
MD5 7161042769b3268600e0bcef63255a85
BLAKE2b-256 155215f5f3034538a3f3a724c61bf72701dfe64e8f3c06eb9e47403f485bd1d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd30996b8d90c7a910e73184509014cf8e2fa38ba62ef67afa03a48a74b596f6
MD5 1a1b6bb9a94b14e629a3ce92b28ed41d
BLAKE2b-256 66e3fd8ecb1890d6d1cfd64ca86ce473f06fe9ffb496fb4a00d99c4997576611

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9071b921f1f26918a141943318709d9b90ec1e74ce98732236cef78fca864193
MD5 bd7f86d0cc455eb66c1d99a8ea4e503f
BLAKE2b-256 918ae6fe916fbd4657737e61201df160a4d080f1b84cfc602b1f8f31e8cf0b8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for editdistpy-0.4.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.4.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for editdistpy-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 05536b30f77af3ac03d3a32eb924e8cb7cd7960b929da53180db68c1fd76604b
MD5 76486c55b27072fdd5eba8ef11eb9ce0
BLAKE2b-256 e20de30882d56b1f01f1ba971db54c932d5b5f58576d80e67cb3761a3c796b8b

See more details on using hashes here.

Provenance

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