Skip to main content

Fast implementation of the edit distance (Levenshtein distance)

Project description

NRC-ILT fork: ilt-editdistance

This fork of editdistance aims to support the needs of the National Research Council Canada's Indigenous Language Technologies (NRC ILT) projects, applying minimal patches to editdistance for our projects to work on all OSes and Python versions we support.

Our fork can be installed via pip install ilt-editdistance but it is a drop-in replacement the regular editdistance package.

You should continue to cite and give credit to the original author if you use our fork.

The only change we plan to make is to keep publishing new patch increments with pre-built wheels as new versions of Python are published.

editdistance

Fast implementation of the edit distance (Levenshtein distance).

This library simply implements Levenshtein distance with C++ and Cython.

The algorithm used in this library is proposed by Heikki Hyyrö, "Explaining and extending the bit-parallel approximate string matching algorithm of Myers", (2001)

Binary wheels

Thanks to pypa/cibuildwheel There are binary wheels on Linux, Mac OS, and Windows.

Install

You can install via pip:

pip install editdistance

Usage

It's quite simple:

import editdistance
editdistance.eval('banana', 'bahama')
# 2L

Simple Benchmark

With IPython, I tried several libraries:

On Python 2.7.5:

a = 'fsffvfdsbbdfvvdavavavavavava'
b = 'fvdaabavvvvvadvdvavavadfsfsdafvvav'
import pylev
timeit pylev.levenshtein(a, b)
# 100 loops, best of 3: 7.48 ms per loop

from pyxdameraulevenshtein import damerau_levenshtein_distance
timeit damerau_levenshtein_distance(a, b)
# 100000 loops, best of 3: 11.4 µs per loop

timeit editdistance.eval(a, b)  # my library
# 100000 loops, best of 3: 3.5 µs per loop

import Levenshtein

timeit Levenshtein.distance(a, b)
# 100000 loops, best of 3: 3.21 µs per loop

Distance with Any Object

Above libraries only support strings. But Sometimes other type of objects such as list of strings(words). I support any iterable, only requires hashable object of it:

Levenshtein.distance(['spam', 'egg'], ['spam', 'ham'])
# ---------------------------------------------------------------------------
# TypeError                                 Traceback (most recent call last)
# <ipython-input-22-3e0b30d145ac> in <module>()
# ----> 1 Levenshtein.distance(['spam', 'egg'], ['spam', 'ham'])
#
# TypeError: distance expected two Strings or two Unicodes

editdistance.eval(['spam', 'egg'], ['spam', 'ham'])
# 1L

So if object's hash is same, it's same. You can provide __hash__ method to your object instances.

Enjoy!

License

It is released under the MIT license.

Copyright (c) 2013 Hiroyuki Tanaka

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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

ilt_editdistance-0.8.2.tar.gz (50.8 kB view details)

Uploaded Source

Built Distributions

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

ilt_editdistance-0.8.2-cp314-cp314t-win_arm64.whl (95.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

ilt_editdistance-0.8.2-cp314-cp314t-win_amd64.whl (99.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

ilt_editdistance-0.8.2-cp314-cp314t-win32.whl (101.0 kB view details)

Uploaded CPython 3.14tWindows x86

ilt_editdistance-0.8.2-cp314-cp314t-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ilt_editdistance-0.8.2-cp314-cp314t-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ilt_editdistance-0.8.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (461.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ilt_editdistance-0.8.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (463.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ilt_editdistance-0.8.2-cp314-cp314t-macosx_11_0_arm64.whl (99.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ilt_editdistance-0.8.2-cp314-cp314t-macosx_10_15_x86_64.whl (98.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

ilt_editdistance-0.8.2-cp314-cp314-win_arm64.whl (93.4 kB view details)

Uploaded CPython 3.14Windows ARM64

ilt_editdistance-0.8.2-cp314-cp314-win_amd64.whl (96.4 kB view details)

Uploaded CPython 3.14Windows x86-64

ilt_editdistance-0.8.2-cp314-cp314-win32.whl (97.9 kB view details)

Uploaded CPython 3.14Windows x86

ilt_editdistance-0.8.2-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ilt_editdistance-0.8.2-cp314-cp314-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ilt_editdistance-0.8.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (429.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ilt_editdistance-0.8.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (428.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ilt_editdistance-0.8.2-cp314-cp314-macosx_11_0_arm64.whl (97.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ilt_editdistance-0.8.2-cp314-cp314-macosx_10_15_x86_64.whl (96.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ilt_editdistance-0.8.2-cp313-cp313-win_arm64.whl (91.6 kB view details)

Uploaded CPython 3.13Windows ARM64

ilt_editdistance-0.8.2-cp313-cp313-win_amd64.whl (94.8 kB view details)

Uploaded CPython 3.13Windows x86-64

ilt_editdistance-0.8.2-cp313-cp313-win32.whl (96.2 kB view details)

Uploaded CPython 3.13Windows x86

ilt_editdistance-0.8.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ilt_editdistance-0.8.2-cp313-cp313-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ilt_editdistance-0.8.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (430.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ilt_editdistance-0.8.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (428.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ilt_editdistance-0.8.2-cp313-cp313-macosx_11_0_arm64.whl (96.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ilt_editdistance-0.8.2-cp313-cp313-macosx_10_13_x86_64.whl (95.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ilt_editdistance-0.8.2-cp312-cp312-win_arm64.whl (91.6 kB view details)

Uploaded CPython 3.12Windows ARM64

ilt_editdistance-0.8.2-cp312-cp312-win_amd64.whl (94.8 kB view details)

Uploaded CPython 3.12Windows x86-64

ilt_editdistance-0.8.2-cp312-cp312-win32.whl (96.2 kB view details)

Uploaded CPython 3.12Windows x86

ilt_editdistance-0.8.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ilt_editdistance-0.8.2-cp312-cp312-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ilt_editdistance-0.8.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (429.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ilt_editdistance-0.8.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (427.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ilt_editdistance-0.8.2-cp312-cp312-macosx_11_0_arm64.whl (96.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ilt_editdistance-0.8.2-cp312-cp312-macosx_10_13_x86_64.whl (95.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ilt_editdistance-0.8.2-cp311-cp311-win_arm64.whl (91.6 kB view details)

Uploaded CPython 3.11Windows ARM64

ilt_editdistance-0.8.2-cp311-cp311-win_amd64.whl (94.5 kB view details)

Uploaded CPython 3.11Windows x86-64

ilt_editdistance-0.8.2-cp311-cp311-win32.whl (95.8 kB view details)

Uploaded CPython 3.11Windows x86

ilt_editdistance-0.8.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ilt_editdistance-0.8.2-cp311-cp311-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ilt_editdistance-0.8.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (418.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ilt_editdistance-0.8.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (419.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ilt_editdistance-0.8.2-cp311-cp311-macosx_11_0_arm64.whl (95.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ilt_editdistance-0.8.2-cp311-cp311-macosx_10_9_x86_64.whl (94.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ilt_editdistance-0.8.2-cp310-cp310-win_arm64.whl (91.6 kB view details)

Uploaded CPython 3.10Windows ARM64

ilt_editdistance-0.8.2-cp310-cp310-win_amd64.whl (94.4 kB view details)

Uploaded CPython 3.10Windows x86-64

ilt_editdistance-0.8.2-cp310-cp310-win32.whl (95.8 kB view details)

Uploaded CPython 3.10Windows x86

ilt_editdistance-0.8.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ilt_editdistance-0.8.2-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ilt_editdistance-0.8.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (412.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ilt_editdistance-0.8.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (412.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ilt_editdistance-0.8.2-cp310-cp310-macosx_11_0_arm64.whl (96.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ilt_editdistance-0.8.2-cp310-cp310-macosx_10_9_x86_64.whl (95.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

ilt_editdistance-0.8.2-cp39-cp39-win_arm64.whl (91.7 kB view details)

Uploaded CPython 3.9Windows ARM64

ilt_editdistance-0.8.2-cp39-cp39-win_amd64.whl (94.5 kB view details)

Uploaded CPython 3.9Windows x86-64

ilt_editdistance-0.8.2-cp39-cp39-win32.whl (95.8 kB view details)

Uploaded CPython 3.9Windows x86

ilt_editdistance-0.8.2-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ilt_editdistance-0.8.2-cp39-cp39-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

ilt_editdistance-0.8.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (411.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ilt_editdistance-0.8.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (412.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ilt_editdistance-0.8.2-cp39-cp39-macosx_11_0_arm64.whl (96.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ilt_editdistance-0.8.2-cp39-cp39-macosx_10_9_x86_64.whl (95.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

ilt_editdistance-0.8.2-cp38-cp38-win_amd64.whl (94.9 kB view details)

Uploaded CPython 3.8Windows x86-64

ilt_editdistance-0.8.2-cp38-cp38-win32.whl (96.3 kB view details)

Uploaded CPython 3.8Windows x86

ilt_editdistance-0.8.2-cp38-cp38-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

ilt_editdistance-0.8.2-cp38-cp38-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

ilt_editdistance-0.8.2-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (414.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ilt_editdistance-0.8.2-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (415.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

File details

Details for the file ilt_editdistance-0.8.2.tar.gz.

File metadata

  • Download URL: ilt_editdistance-0.8.2.tar.gz
  • Upload date:
  • Size: 50.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ilt_editdistance-0.8.2.tar.gz
Algorithm Hash digest
SHA256 0a7f6195d3a904803c1867e7af9a551946fb5d8552d60155da29ba9cd32d76b9
MD5 e8fa4cea55c7c427575e0e1d02209856
BLAKE2b-256 cd9e0024dd227e2d35380c6a502fa30cc466c685d7a8c72de34be279f52a9a3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2.tar.gz:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e6948dedf4ee69b82450315c3f8bc0d3f8645e5e7838dfc088e1066373124b7c
MD5 9269e9426829792595f6a552e9991512
BLAKE2b-256 cf0309dbdfc6b2a92d9e34bde641ed16f6b5720da01bff997572ae10c3169a0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314t-win_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a3509f183a08c651aabc7450c3a7800c29cd40e559aa26578b4062bae89f4b55
MD5 67022bbeb13da1ef31635179f4001cb1
BLAKE2b-256 4c3351a91764b546b98db540c5e1fce6fedcd6f3fa16db6a5c5d065dfe512cfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314t-win_amd64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 93bb6cd8abcbbeb75bd7854c2721f2c23852f7e30bcd1f1e08a440e49056df0a
MD5 b8f6d36fb2475f60da74ef59782cfe65
BLAKE2b-256 7d5cf58757102d6b8e62f98fbd3f8c343bf94c46448aa76e12deea7b13327247

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314t-win32.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf77a83e60b9b21e2b8bbc62b1ae17a2d11b014ee1037eea82f18e879fc05bb8
MD5 65d37ed45d6397a29dd6618e5355ae3c
BLAKE2b-256 7360fa0531b49afeaf29332d387fa64db47939b984e8e0ac1e1c9ec92395204e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f69f7083c3634fd438ced9fa555952d8640e2087460ea4f1b17ffb33629dd48
MD5 1fff39e6ca518bdb230bf387d3ff8584
BLAKE2b-256 9089a2dd89db3e5bff00683f92ebcd6045ddc7cce5d40d752e08c576c3734060

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e337f6052c47da7dcc819f5626ef67a99b178b4ae05c4ee33d615810e8017a3b
MD5 35f3d467c39ca6d18b1a8c6ecce67d42
BLAKE2b-256 2004732a80475ccb8df4fe5d0e43dc1e638817af041a4403252d84cbc7facdf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f33dcf9c629e4ddad3093a142c8686433983e642f7bfce9c2818714e8d40013
MD5 2119d167e74a8c94e3999fc5268325fa
BLAKE2b-256 86ba053385bdc0c73c16fd232bdedb579c45cd9a66763e921fa7ae901f410fd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da87a40cc1db77ce27d9478517000f3421cbd5db09513b8d9c6c609b45e38dd8
MD5 04531da8483ecbe5b10fee25167b4300
BLAKE2b-256 40f6b2262b85c4f8a4af5fcd466d7b6f907dff0ea510880eca4ccc5decafba77

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8823f434f3c6c16a3b0563564da803878403ecbe7fd32010636e51f8f784c1c4
MD5 4d5cbfab8972e55fa43ecffa6af3fde4
BLAKE2b-256 030f655b7cf0e5fc1c611fa750e16458bbd9e9e36779f90462b06a288ff251ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a3a2ae2ce142284dcbf503c0a2c7202e2e62f36616f8b54364cd458110c33dcb
MD5 730b808676e2b5a9c4c83377446bbadc
BLAKE2b-256 db51efab890e5a4ba8bd41fcc03950e014b7ed0d9e719959e0647edfbb145e69

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314-win_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 acd0efded0dcb3239b97fd84e9cf1245ecab68ee3eef9632613a6c775d2c6394
MD5 bdbe6fefbfd245cec1dfdc64c36e6607
BLAKE2b-256 dc156f7d26395102e4e77189ffe6f9399a55d3e141f62a02d43c7f634418e16c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314-win_amd64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 638d24dd144d6e918a98e22d5b7e95fabca9119300ac70c7212feff68d322c8e
MD5 4737df47e2aeaaf9455dba2ad08fcfd9
BLAKE2b-256 af9800fc1c2661077b9517552cbae295f73a3060a97e26db52287c60e88f4767

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314-win32.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7205370347a491f796ebf492df41fb8a9a9aee784d2ce6ca660467e060b00b68
MD5 932b545bb3c5aa8726d62681be6eb0d6
BLAKE2b-256 e48e599983b1d713405e3fa9614715466baf5cb8b6757a2a83ea3921439ead44

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28e9b1c7c35352e88fa2230a34136cb3b52603d21cabe759f6ba8e8c651fe961
MD5 24f0940e5d73d966718eeee6cb3504ed
BLAKE2b-256 58e652c3f854a75bfcdf18e2af2eddb4ca8fb1174a4b32f23cea46fd1402fa25

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1c00af8957c62a92166617f83b3c3739eaa67cc8834638e7777f8024945817b
MD5 df484f49d5119b0012f06e955260693e
BLAKE2b-256 e4be5ec0ee6a32090f1773be91bcc2b0ac2af7445f6e72b35ef81f0f01739177

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 485af43ab77ef4af544921aa39125b11d881e0bd3b4d6c85fe7c97d93d980c42
MD5 758faaddb374a2823f394cfc04e7fd4d
BLAKE2b-256 f14f16da9c4a2e02fb2d214636d24de0df34b42cb44dc995d7546637930daf91

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38d234abc739794fae33b0017d26a2d131c3d7d567d4272ac30ae78d79fb5252
MD5 080ec2ed2f477dd51b225c8efddb001b
BLAKE2b-256 a77a60db14a4ce795ef9aabb3bee5254e1f61dcad76c752f802d14f6acea2d90

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d69d03a46a0ff8e6538c609ac6fe221cbc7dfbbdc80abbf7d7e1ecdb319266aa
MD5 2c7f41954f97a8ce3028947abf6bc4be
BLAKE2b-256 1e17f5743d94167a4505c0fb7738301cc046648c749d6eb1d6d71b350c051980

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fe8ed55b6894a49f6530daf6098ad3d7f73ea69d5f482b527d5a06d01572c9d7
MD5 97413e7447e13154f88f2637d6de1068
BLAKE2b-256 e63a658e0dd130c5dfbe273b0477c4f39affc84b00c8c5ca4402c43141d25385

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp313-cp313-win_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1e5db1cf4eef7ba6bbd3685e0c3095569376cbae2cfabcda001a2da5c865bb61
MD5 2f5dbea3b40b6f8a04dfdef1764c4d88
BLAKE2b-256 ebccbd43a1b175e88f7a1997cf6756db7d5a3514ef55cc48bd26f5a769f32451

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp313-cp313-win_amd64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a43c2fbe250dd954254b27b43fb207fca6394066b334463876725684f1e5bffa
MD5 8f3a6bc0a252957ff7e9bd5ee8b01732
BLAKE2b-256 2324aa543113c022fcef0e4ee7c96bf52a3ef177eea441119ee3d6f1b5eabc4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp313-cp313-win32.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 637b0018e80e6b2e1b1327f23fe2c75294e4215e2b4eb37595882bc8eb83f782
MD5 466d7f74429332bc5ab76084ce04b999
BLAKE2b-256 c1d7faeef6be1d8726f49990dfd85729d53c854eda102a93acc63adf49c2139d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 566e6b8ab2ae89ff3c243ae17bed8b0b451f27397a0bdeb1187fc3c49a65551b
MD5 af125a0379bf55dea10d7c0c79c45402
BLAKE2b-256 91968581148874bff034b10d2fad265167a2fe8de33f78c9b2fddf12c5ac3c13

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb4ca1bcdba3c1dd2f7bdf4eada7191988fcd9ffc3579ae76b951dd421dc9cd2
MD5 4aadab068f5d8629ba3db9e75e4f7fb0
BLAKE2b-256 e50aa45698a35137492fe0e51c9ad228a5531060413560226e1770e177e478d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cfe11c05af2b9427e9d6c4855d648e689d2a1978a2847a2f36c58f20904f7c08
MD5 216efaa33f98a71daea4779ea5414d64
BLAKE2b-256 671a3b8c2f69c66af7bd142dde07ef61d6b2423dc498ffdebf91fb966e902791

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2087b5c60206dee782d644e73360a2c170581c7db03c5fc58c67b18e21db7804
MD5 1b1f7896c2823acf2cb72d573cc10f8d
BLAKE2b-256 33525ec7b18d05c47d83c0b1d47aac6196f0efb288eef1ebfb0005434cc9f238

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 314cc86aef12d04bd1a653e5f47e723dd47bb88048d138395db6bdefaff9fc83
MD5 d3fd0b2064e04721ebbfc2dd3db59a1a
BLAKE2b-256 4dba7c7f4964eb358accf2678c7a7e8fb4d8512d127b8dab4619ef4ea56eaede

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 61f7238a219aed335508f718516f63a6a58dc9506c1b9f820f5f2a17a21ca650
MD5 404fdaaea80fad2a9588631a7d1c6f4e
BLAKE2b-256 6010dbb44138a916af5ded2e566e707991b2ed9b748202eaedca0a68733263e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp312-cp312-win_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2951e390bd890718ade37805f37ec8cf5c8848349b2c6199faa7d38b12c5ccd0
MD5 11fedcc08a00af9bb6703066bfd55f4e
BLAKE2b-256 8f239f81bf2cba846b06e158da561f15cac04222e9972ab79918f87732193c00

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp312-cp312-win_amd64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c65f1e72f808e40d8064ff139c838d679b005fac9be0437e8169fb071fe1414d
MD5 3567bc82e618ebb2f720b758067af9fa
BLAKE2b-256 f4e56fbc9ce41bdd137a7616f873e5c9173e531a8561fc08f1cefa74064d2405

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp312-cp312-win32.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92571439c0e772345c6fe2161b8cb0f7ed74119b65b2d29f7e41b83451fa73bb
MD5 41b894e88a45e309ed54569625ac06f7
BLAKE2b-256 1006f340199624f25993218deeeb457d9c451631f502986cef9fa2079f48c4df

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f91213994c1267f77816d054a77dbf6ea43765ce4e419d54ebd7c4f164efa1b
MD5 514712863b6d1cd6cc7b56f18bbdb833
BLAKE2b-256 707b2b0bff3c81aa5602dc5431dcd5cb44ecb619dfff7d81ebb51bc8a7cdbd6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c170a16307013424e358aeb8d132ba0f1957eabc1069936e362ea8a2c0a61245
MD5 6bb14072bf1592c7231efe4f75754490
BLAKE2b-256 4870505d5503a5fcbbc174ab0005244886035c43fa34492a7e0b48e596b0d3b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ac4a7aec0ced8b243f90ddbb68bd66595f1c7b134110ced2568f38fcd6a7589
MD5 0dcce1cfdeb78d59568c7dbf6a9a96fb
BLAKE2b-256 989ae50f4e035cb3d5779ec7063f526f7c1b59362c9a35cf89737894d7e88b56

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d46148fadf287af5ad51127d123e6f1f3bf537300a897e63061e44e07ceb2cfb
MD5 a3f42fc3fb84a5ee972db2ebc6dc9d28
BLAKE2b-256 e351af11180930e7cd20940a448d85fac4d58b6651fe54ceccbdade0f0d99e7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 56296f85ed28bffffd50fb89a7569b697c036396a7084044a0fbdf95d788fab0
MD5 5aae0aa743d08329be58bf9f6e3bdefe
BLAKE2b-256 1a383d911f7e07d25b382ec71bd44fdea6f535592e3150bbc3a5bd34e8a153dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3c6042b43ac030d6a380d648f6bedd3bf51d0f190d3e3d301d8e2a618e4d0761
MD5 6a3769e10830a7415ee01f9080771e45
BLAKE2b-256 f0ec65c27005464d8e4d5e185950cef1ca8c5fe844f4ab148dba29fb6d222d28

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp311-cp311-win_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 796bcb7bf54c49dc927487b9d9f4705a49c48fde7f85b5a85699ac9dcc4e692b
MD5 12f9566ee0d7ca4cba687cf64287b66e
BLAKE2b-256 6f42322de5c595c87be2cbb60de6c6f982c50a91730b588669cbd18fa7e94802

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp311-cp311-win_amd64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 758f2009790e6cd1cd4986fcb2fd129d8a0f45d49529b776d9082c4fb7005087
MD5 139d75539b2603f5400ea1dcf8292bfe
BLAKE2b-256 c4a4f7edf250c5edfdf27ac35d0b44bfedc742cf72d851599719c4ba1bd87d02

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp311-cp311-win32.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4db00e909e4eb734017f89f3d1d153cec197a116f0ae845a77c87e093773945a
MD5 b9bde82d421143230a73c124e29cb49e
BLAKE2b-256 96fc70926ef20ec0677af6e9f89310415a935388c7c1245612ef10d0b82866e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd981ae5b3983c680b42cb4d51cb942ca935bc0e3269c572cadbe763a27fc1d2
MD5 49683d2e8ff117c35124b1b6232f0567
BLAKE2b-256 eaca02bc4c97a80b5c178c0091bbab89c9da42a64377753007b9e3261747c381

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5941f7ea082e341862044e1ed19425a6eabead63ef39668d08ae3e5abe718b41
MD5 62fbf15a0685230a53a119a77f83e70a
BLAKE2b-256 52112f8bac68813f4568e2a1e33b69d53f9b5697e291d3c9b4bc62631526e9d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3416f743b27e7b678b44e42e89b8c25d2393b588b66097c0e892e4dc5f9e6d50
MD5 0a86e80a171734cf5e47ff4291d62225
BLAKE2b-256 9a5b4752c031bf97891cb707a03be6ab5bd355242f16d94bad3e3c991fc4cdc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da4fe4cd37edd40f1a9460e2823f7569b0a30964d7db9dca5d6db471ab0a1e90
MD5 957c08a913661cfa7484f2c37ebf70a7
BLAKE2b-256 7e5c3edd80b7877503b595b3e257c2bfbaae81603e118c4716df839c96a450a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8fd87a3eb6901ff71d12b6667b6328b29169cfd8258aa44802ce5a5ea76dcad
MD5 fcb94f843db0a161f717d3a50f3031c5
BLAKE2b-256 ee4e7cdfea3fe99fc72e5ffd1b39d0123e3bc713f1c7dbd58f2f4ae0880e1bfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0485fd470ebf0c2ee31ebce07562e0a325f08871168a9d864c19a071a7911f6b
MD5 232a02c4c1a984b716a03d2b2155ffae
BLAKE2b-256 f76ac903279404fbd1140a4321f87f665bc8c42d688826fbbbb964bbbe250fb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp310-cp310-win_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f8df9f568fc517aa25c6434eae619c66a84f378de739334259c830ca87a9f4dc
MD5 a93d1917baeff4bf4a1ba05d043ecfe3
BLAKE2b-256 69fe4e2df9ea9f17ec8f7708352eb8133c44d8390d7d4162bfea8d6200826371

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp310-cp310-win_amd64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 205a56ad793f2e25ed73b154f0de15f95ab36470035af1e6bcc78e143bfae486
MD5 1c70ba0ab4350b90cda9902993cd48c0
BLAKE2b-256 2788fca155b2c5c6807765cd48aaa309d900ab6bbc3362ab17009162869be121

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp310-cp310-win32.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d5e3e0bb2a75f20ac345268b47454e4e1ac9ea92dd913ec7abd73c6792d612e
MD5 042a1ca2a09df7c5f94a8d9dd0a6ce5d
BLAKE2b-256 6f76b3d701484fba3b7912fc04da86ee70e897ac949a62de2c21cd045ba4ba9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 805bf79cf8e2e53217d63932daf03fbb29d180d56cddb92215790c60cead2adc
MD5 f5021a4156cce22bfeb28b207cfca17e
BLAKE2b-256 aea951c4c378aa2c7211833b72e386d441d4e3c9985b3482b921a27f56f83248

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19496698b14dff8329e4e53263fb2a1ae0c92c57586d6247580086f898169ce6
MD5 70a5e4692702bbd97f042bca7fb21f6e
BLAKE2b-256 6ff4862b58452ae301390e1c0d89ae2908134b96c3575ea07bd90dfc360069d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbac8e9f0687da3b8f5a88eb9253b5cc6b81fd103440c9b41238f7036ca86b26
MD5 e4a9bd60712bde56b8ac933350f0e26e
BLAKE2b-256 9cc8abfb6552a5e2909a8e4952f57cc9dfbc9649654d7e001b2fa46b3d4a1281

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90f862edd0d3e6607f786483687ff7cfd31ae21c38e4e123cada146f960d383d
MD5 bef3f7541bc3314d3a38a89690001acc
BLAKE2b-256 b9c66a27bccbe7a04b042b666ff9c2ace673d8fe16fed6adfe91650d62c2d0da

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de1de6136fb1dd446bc182a17444aabc9e80fc207ca9da29eadfae7e81bf52e6
MD5 6c388dcc772a67ca6ed2b91351ec7920
BLAKE2b-256 2b6e3f48822692d06b475aaa9a327100fd50f4f241051db9cfd1360128633fca

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 93708c119ac10d5d31acf1d8c618194cfc3f64f399a234eb0b813dea4ac5e57c
MD5 53efd8d7b4aec6fef45657b5aeab48a2
BLAKE2b-256 e650a0d0ecc90abfb2f4ca37e6c402e19172c840ac09af437d2ccf64a013009d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp39-cp39-win_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8c2b0fa1769b9685bb294f118cac00873d4c7cfef45daa095a8d2f511ca29237
MD5 0b2250d7fcc122b257267891fcca4ab1
BLAKE2b-256 9ba980717a15e187340bb85c352fcabee836b2bd216f5f06b336225ef878f67b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp39-cp39-win_amd64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2e03f5244a69c43c8abb7349014a71322875fbc92905944c81a69b4cb38d1065
MD5 b4efc9faf9d23167e85c99ec0f812cec
BLAKE2b-256 699772d915baebcc1e2f38599f16da1d0fbc9e7084719ab01bf89bd45328b14d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp39-cp39-win32.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d589babca01ce3bd2f3c6dffb7aeae7c3b21f0f7fcbb137af3bc9fdadffe29e
MD5 293d82ab7efcd7644445156ccc6cb8f2
BLAKE2b-256 c116fed9bd62c0205c45c4c5e608b373ff86639e1c7a1f242435a8169a7fcf39

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d5e155c96b20460489be4955f80ff2a6ff0bd7a18bf4472460de1829489b1ba
MD5 c904ce388258344205e4a15fb535846c
BLAKE2b-256 cbaaf85407ac9a495f08b4d7aaa9ef46ec508a2e23e0718c4abb2af8760ba155

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 abdb37728872858d1d0b7dcf6fd1699999a882ec4ae8c944b73714c62658ad43
MD5 9cc8d7b93ed3ef95a3689025a0fd74cb
BLAKE2b-256 66a61a8458ea54b3416e865fba6e36d6cddb3cacb0a6ef2d63975a8a23c00f34

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62fc24230b4ba72cf7b7e7c5d35e6aca1353b9e3f371d645d2fdba54e1939648
MD5 89512f807e417cbc0138512c77044eb6
BLAKE2b-256 5f74893f147dbdb40ba861225911bcfd9718935e44821b43be7459b0bc0cbc75

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbdd3449a3f59121a2d696bbe2d43732a40a2f634b3fe772f95c2107423e90f0
MD5 5c5308e7bad2fbe4bcbe232c2e29eb72
BLAKE2b-256 74111268046e00f9578229368ed5147da447751da7c993a60f57701053077775

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f294f612efc3aefb1a28bc53b7c451703415144db81d869a6445baa9efce5db0
MD5 f71eacc7e8088c845d1f7c6b5d58d5bc
BLAKE2b-256 c0a7b6168ac0531e5e64c791ee5f52970a8cbbc2af2cc967d2fd9319feb39a17

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 934005c4b2a8d52ed30ffbda818501ccb973f41215dd19748cdb1ecb0c9e236b
MD5 4c8eccda3966fa9478fdcaa4d11a7492
BLAKE2b-256 a8e001af2377a5e8921315eaf37c2c836516a4c02ebf3b2a4ba2fed2f389d329

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp38-cp38-win_amd64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4c471a19656ea037be5555b0ffb5b25e9d86bdf989ab12e13cda2c810a0f8da0
MD5 97d9dcbe63d48315f741ca6cfe77f2e5
BLAKE2b-256 67a8aba0631b0463ac90640a751d81dc2002f19aca5e79d95cec93e66392c18a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp38-cp38-win32.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94c6c8ec21efceacb27e6da3c2cbef406766c666312964ad8a5523e46698cc44
MD5 772acd7287658b25f0a64b01b850de8a
BLAKE2b-256 15c23e1b1efd7f43fbc4fa16bf3fa286cbd37ac0d9a99cc483a5d407039903b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22743c5108db7510d07f611ac0410564de6c4c73520c3f3e4aa5b30ac95b9b84
MD5 92561a1ce10ea1e4a8d87c3da9f78b14
BLAKE2b-256 75d10f6ac3e12db31b880c67c397d08979cb98cdd16804054524cb8ba21de0f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 242a6807c35f446e507d87e17c44e26a292e92d505f877121f240bc71933a6ba
MD5 844e6f1272866e351a6fd03d2f2c975c
BLAKE2b-256 cc07132a7e878b13235c03059fb90a5e723f15ebbd8474373bdf5fb576483dcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

File details

Details for the file ilt_editdistance-0.8.2-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ilt_editdistance-0.8.2-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af0da7cae30469b766cba6e9a9abe0bf5550d71fe6f4d7b3a5e747244ec794d8
MD5 68fd235c07ae0067b98fc5b62e134593
BLAKE2b-256 36b0bd1a811d12578fca188c88c8e8b5e12bcf2e7cfa9f85849af4d8b9badc83

See more details on using hashes here.

Provenance

The following attestation bundles were made for ilt_editdistance-0.8.2-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on NRC-ILT/editdistance

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

Supported by

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