Fast calculation of Edit Distance (ED)
A implementation of edit distance with improved runtime. Implemented using C and cython.
Highlight:
This edit distance calculation is significantly faster than most of existing python package. It enables a max edit distance search, specifically, if you have a query sequence and wanted to find the most similar item in a long list, you could set a maximum edit distance and enable a fast search.
Installation:
Install using pip:
pip install fast-edit-distance
or build from source
git clone https://github.com/youyupei/fast_edit_distance.git
cd fast_edit_distance
python3 setup.py build
python3 setup.py install --user
Usage:
from fast_edit_distance import edit_distance
# example
edit_distance(string1, string2, max_ed=5)
Compare with Levenshtein.distance
The fast_edit_distance.edit_distance has the same function as Levenshtein.distance with significantly improved runtime. Especially when people need to identied pair of strings whose ED are smaller than a number (set max_ed in fast_edit_distance.edit_distance). Here is the runtime test with some random sequence (Run the test/test.py to reproduce this comparison):
Runtime test no max ed cutoff(1_000_000 iteration):
Levenshtein.distance: 46.49s
fast_edit_distance.edit_distance: 12.75s
Runtime test with max ed cutoff 1 (1_000_000 iteration):
Levenshtein.distance: 46.45s
fast_edit_distance.edit_distance: 0.50s
Release files for fast-edit-distance 1.2.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| fast_edit_distance-1.2.2.tar.gz | 76.3 kB | Details |
Built distributions (wheels)
Total release size: 4.5 MB
Release files / fast_edit_distance-1.2.2.tar.gz
| Download URL | fast_edit_distance-1.2.2.tar.gz |
|---|---|
| Size | 76.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8e3f28528f3ca9d9cfca9a57bb6d43f7cebf863e4b7affdc7fa7a948e4c3a76d
|
|
BLAKE2b-256 checksum How to use checksums |
2499915a89ee5d0fac63e15c47b6486d9ea3f601a5d02b6a69221cb9b7ef3e18
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp310-pypy310_pp73-win_amd64.whl
| Download URL | fast_edit_distance-1.2.2-pp310-pypy310_pp73-win_amd64.whl |
|---|---|
| Size | 23.2 kB |
| Tags | PyPy 3.10 PyPy 3.10 7.3 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
85d48b493710ff158f45237abb006711915e57b26795f7dbcb00c8f06516fc33
|
|
BLAKE2b-256 checksum How to use checksums |
7cf1b8ed12ac8906274244f6bd71b9a645bc765d2e3aa28a1e2c03ed202b7010
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 25.0 kB |
| Tags | Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
60e092c8bbb38156e50ca6e2898454648c30958c600ee0c2c18f121db719cd76
|
|
BLAKE2b-256 checksum How to use checksums |
dd36910547ce173ed0d75ca6b58573fdf2ca6af9e7f86bc11241d85dd550700f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | fast_edit_distance-1.2.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 26.6 kB |
| Tags | Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
cacc70bedd778b6e0339d42c1b79f111cbb817123cafd6da36ee0a14665984b0
|
|
BLAKE2b-256 checksum How to use checksums |
d0a888a9d768b350c651ba49fc8e6d377c09bc1c7e99df5c5513c7cb640dba91
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
| Download URL | fast_edit_distance-1.2.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl |
|---|---|
| Size | 20.8 kB |
| Tags | PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
37b25859cb1cab99692f8c37b456bbbce3319e9473bd0eb0ae5e9f60b7bc416f
|
|
BLAKE2b-256 checksum How to use checksums |
539a35ae5cb091bb5a884960390a6441b94a18e91b8002a7b75f67ac826e025c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl |
|---|---|
| Size | 21.4 kB |
| Tags | PyPy 3.10 PyPy 3.10 7.3 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
13a8eb0f88afd7f9dffdbf8270098a5e4a3d0e127c663981899b2b0765b6b427
|
|
BLAKE2b-256 checksum How to use checksums |
c0272bf982571070c9df1481a2aea500c9ea2e03d3a142de842a5ee8cdd75330
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp39-pypy39_pp73-win_amd64.whl
| Download URL | fast_edit_distance-1.2.2-pp39-pypy39_pp73-win_amd64.whl |
|---|---|
| Size | 23.2 kB |
| Tags | PyPy 3.9 PyPy 3.9 7.3 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
6b4da3e8a5ede7423fd447f3fbe7c6435ec066926665c272c7b41c311bbff9ee
|
|
BLAKE2b-256 checksum How to use checksums |
b96f712863b269f3023d66b665ee09d9c915ccda7b12a5be99da3be5d3097ddc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 25.0 kB |
| Tags | Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
11a8321ebb0d2e1adbcfc452b91f0ab69b284aacfcd8ea29dbc0896f286c0944
|
|
BLAKE2b-256 checksum How to use checksums |
bd2757e6518fa75320d52f4677a247599e5059cf8ead605b77fb47e584aa07c3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | fast_edit_distance-1.2.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 26.5 kB |
| Tags | Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
1839383672f108824f3db8cfd3c82dfeddfea39f57ab9a6951dbbbbc45c5be72
|
|
BLAKE2b-256 checksum How to use checksums |
56aaa223de103f88635204d857034cdb8a5fb60cf9d2be5c47c98f88911349a1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
| Download URL | fast_edit_distance-1.2.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl |
|---|---|
| Size | 20.8 kB |
| Tags | PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
a2d3291cc820769a68302396deb017fb41b20735d5c5b9e9b36889c19e3df4da
|
|
BLAKE2b-256 checksum How to use checksums |
2f59226ca7ce466026e60bd91274487e6875bf3e274846e7e09fbffed90d4747
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl |
|---|---|
| Size | 21.4 kB |
| Tags | PyPy 3.9 PyPy 3.9 7.3 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
af02521e166c46e4903cb7606bb38daf223d55ea5b9474bd58c24248ebb9a0eb
|
|
BLAKE2b-256 checksum How to use checksums |
2935276a7600a88d097d564c36f6ddaa52c0784bf96668b37afd5a73a9330511
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp38-pypy38_pp73-win_amd64.whl
| Download URL | fast_edit_distance-1.2.2-pp38-pypy38_pp73-win_amd64.whl |
|---|---|
| Size | 22.6 kB |
| Tags | PyPy 3.8 PyPy 3.8 7.3 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7f2806c96c1bbbc1faa42cd7780833b3b8097bf6b0cf74bfecfe5294ca16a534
|
|
BLAKE2b-256 checksum How to use checksums |
d967d05347ee35b6431849edd201b9351542365f2c711a02a6f6255c7ebec1f1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 24.2 kB |
| Tags | Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.8 PyPy 3.8 7.3 |
|
SHA-256 checksum How to use checksums |
34af7827e03afb439d5b5157db513f460236d2c594f6aae4a151a7c936c71371
|
|
BLAKE2b-256 checksum How to use checksums |
635d48bfad672e8bd386c1a9cc6afc3d02af555962ac7644eef346456a3c6f13
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | fast_edit_distance-1.2.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 24.8 kB |
| Tags | Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.8 PyPy 3.8 7.3 |
|
SHA-256 checksum How to use checksums |
61c98cea7949f8080b2011e54138e7ecfe1ba95c0997be7960f1c8330a348c8a
|
|
BLAKE2b-256 checksum How to use checksums |
89dff5f8339e69ac5a27cab96637429153400ae27a991bc70d76912abb356c6a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
| Download URL | fast_edit_distance-1.2.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl |
|---|---|
| Size | 20.2 kB |
| Tags | PyPy 3.8 PyPy 3.8 7.3 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
cab76bc2213a6423b63d228464e6f01142b138ca1c7ae8e68b66508d03ddde04
|
|
BLAKE2b-256 checksum How to use checksums |
d0c088c307a9d5e33650f0e1d896d1de88b7af061baf7ce4c78eabab91626da5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl |
|---|---|
| Size | 20.6 kB |
| Tags | PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
a988b10bd85f6369a6f256abc9a6a3c5caeccb78e92f9acd90e2958a33c7f6d9
|
|
BLAKE2b-256 checksum How to use checksums |
42289ebcd78081168008ad2510c5e3d2fa8e7b1ffbb5a22c18f87ee3678ce933
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp37-pypy37_pp73-win_amd64.whl
| Download URL | fast_edit_distance-1.2.2-pp37-pypy37_pp73-win_amd64.whl |
|---|---|
| Size | 22.6 kB |
| Tags | PyPy 3.7 PyPy 3.7 7.3 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
004131d32bb0bc6fefab5bec3721bf1832469bbdee6045cfdf73696cd125656a
|
|
BLAKE2b-256 checksum How to use checksums |
eeda4529fdf64c1d1c5ca2fb5b3a7da7176703d7ce53bebf65bad7b41993ea8f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 24.2 kB |
| Tags | Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.7 PyPy 3.7 7.3 |
|
SHA-256 checksum How to use checksums |
de2a49b090c82790781d01845a28a3eaf2ccf1bb9a9dd73d6b4e0ebbcfc1fa47
|
|
BLAKE2b-256 checksum How to use checksums |
edc597f621f5df6837d5f112cbbad0cea40cc794ac2c5ea08d71c9e470d9661a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | fast_edit_distance-1.2.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 24.8 kB |
| Tags | Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.7 PyPy 3.7 7.3 |
|
SHA-256 checksum How to use checksums |
048fd7dee49c7b408921210f4a69ab8f946859744161e797a186e86f3668fb4b
|
|
BLAKE2b-256 checksum How to use checksums |
c5e51a0febf0fca359734d881c9af4c900a8580f294ed3d572a5e45541ade2fd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl |
|---|---|
| Size | 20.6 kB |
| Tags | PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
c0397c67e80591d6f585b7b8ce64c14a4bb84b4726992c3b01eb913e00ffcba4
|
|
BLAKE2b-256 checksum How to use checksums |
25bfc53a12dc29cb790fa384fb8379be0b2e9657eaa5937a771b5201348e76b6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp313-cp313-win_amd64.whl
| Download URL | fast_edit_distance-1.2.2-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 24.7 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
827ae68f33120bd2b40edaf7f3ed26597f9a725fd16b95beae2a9f9d5d418dfb
|
|
BLAKE2b-256 checksum How to use checksums |
1cf41aabacefed1f2d065a8088b7393ac8c3b1c57b35be7aa20c3e86966a4152
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp313-cp313-win32.whl
| Download URL | fast_edit_distance-1.2.2-cp313-cp313-win32.whl |
|---|---|
| Size | 22.4 kB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
1adb9a2e5f3101be23e6b53bf7ee71d08e98c51cb9c52289496005921939331e
|
|
BLAKE2b-256 checksum How to use checksums |
f126c09e31c1eec008aeb5d2a478cf384fb30bd3b8facf00da3f70b63c763fa8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 129.6 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
29c6dc12b155c567c2a74d7481e8dda2e6598e55953c968727387ad4933e6240
|
|
BLAKE2b-256 checksum How to use checksums |
65cf65ade094bd839963756d6b5ab80ab3e459f639111a6bd7e94b58526a32ed
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp313-cp313-musllinux_1_2_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp313-cp313-musllinux_1_2_i686.whl |
|---|---|
| Size | 121.0 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
3c35d84197088a2708159d05f8d6fba4bf698049e1bf17027dc6081558b78e33
|
|
BLAKE2b-256 checksum How to use checksums |
f4eb8dc725f9f3c4841cecf8981a904145fd2dcdbb5cd80a1d1990382caa0f67
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 128.7 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
8d08308470b05f142c0224606c0591843b2e72ed508eef277ab79b1ad308697f
|
|
BLAKE2b-256 checksum How to use checksums |
831d204de1974941ff9ada86a62c1e36bc00c57c9553101d6810495ff352871e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 119.0 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
79ba8aa529d5269b0c6ffacb7eb1b42436c0aa3254fecb18c90f91a619f33b46
|
|
BLAKE2b-256 checksum How to use checksums |
1fac3a530dee763bd5a543a6ce2b0608b46405fc66937d169594985dea7f1e3f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | fast_edit_distance-1.2.2-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 23.4 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
a67a41da5cd49fa9a105d6e4b44d917515b256026d837cd97378e5848ee7bffe
|
|
BLAKE2b-256 checksum How to use checksums |
3648024863d80ae75adc86de68f530cae3cecf7f5e81020d2cd4f596b03d2ef8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp313-cp313-macosx_10_13_x86_64.whl |
|---|---|
| Size | 24.1 kB |
| Tags | CPython 3.13 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
4af18d5b556c1aa694100a2b434ad3cd48d672120ac810f5a17c9a21f6f11690
|
|
BLAKE2b-256 checksum How to use checksums |
3dc407f440f98cc90390afc637a0d08f88cfa3c30c9280876d63358437ec1f17
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp312-cp312-win_amd64.whl
| Download URL | fast_edit_distance-1.2.2-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 25.4 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7c7d0ec445ca08bb757b6defa920f24f7ae688c1de8c0a8010ed7f29689f7325
|
|
BLAKE2b-256 checksum How to use checksums |
90b34ed3051a97b169999d9c4c42142588dd320d0f95ca297d705fb2d35427f5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp312-cp312-win32.whl
| Download URL | fast_edit_distance-1.2.2-cp312-cp312-win32.whl |
|---|---|
| Size | 23.0 kB |
| Tags | CPython 3.12 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
b5f1fa415bf70809b95ea605d2394f7bfb1f62f6dd2c7ac92ef0c647ec31ac02
|
|
BLAKE2b-256 checksum How to use checksums |
daf0689567a2d411473ab41c457bc0c2663dc35c77f71f2c8825e3a9f2ed09c1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 135.5 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
e8c67caa69324310ed5faf497663c7a95789ef08279d4f2f8ccb212148bc70c7
|
|
BLAKE2b-256 checksum How to use checksums |
e12230c44747492d89d1840252b0de25ae915d3201ea4d7ac4adcabbf3399aac
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp312-cp312-musllinux_1_2_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp312-cp312-musllinux_1_2_i686.whl |
|---|---|
| Size | 126.8 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
a137c190f2ab39760f38046d0cd9ab1efec6bc5482306cc32f07053563889935
|
|
BLAKE2b-256 checksum How to use checksums |
1894d1e4b17904c317c0bb2b6877f965fc5e1d985d1643eddfbe1658a8472f96
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 134.6 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
d75654085dfc06e6d6a9ab42c03ae3d25f7c37a00733c0b40830b3ff53b27b51
|
|
BLAKE2b-256 checksum How to use checksums |
71c98fb857a93162753f70ac70a64425587616410dd735e8eaf9d53f5fa408d7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 124.7 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
44b52e9689ae9528c792f203d4b586c2e1028ea929fd59cdb9d6830a3e6c788f
|
|
BLAKE2b-256 checksum How to use checksums |
35aac01d59418f8eb17c61f3c0c068560a36608bd13b66f227efbf29dd724e9d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | fast_edit_distance-1.2.2-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 24.1 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
d854fbcdea562bccd35868a90c6008f6bb1f5eaae5afd1ac9445d55a32c91217
|
|
BLAKE2b-256 checksum How to use checksums |
9ab7cc3bb6707f732b17f05dd624b3a489e2d7d65939aae502ac545b9a1be974
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp312-cp312-macosx_10_13_x86_64.whl |
|---|---|
| Size | 24.9 kB |
| Tags | CPython 3.12 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
d619316c111e0ca82f7a6daa99aefc5b7b91f57c1dc02e7b2c4db58bdb9d11ac
|
|
BLAKE2b-256 checksum How to use checksums |
0919e9ab2c438f2260ae686d73f5b973f9bd2afedb4f9bfc5097197cb5fe6c1d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp311-cp311-win_amd64.whl
| Download URL | fast_edit_distance-1.2.2-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 25.1 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
6821105a19bc6bc5d33668a5931c919d287c8d120824eb420d25b2d856a16098
|
|
BLAKE2b-256 checksum How to use checksums |
c2f0bc83ec28d0d7ad101b7f01796c9a131d207a1310dbc04003fb8e16d438e1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp311-cp311-win32.whl
| Download URL | fast_edit_distance-1.2.2-cp311-cp311-win32.whl |
|---|---|
| Size | 22.8 kB |
| Tags | CPython 3.11 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
ab9571dd8da26393988a443efd189a95f9e46539da76ab2bfff7009daddef075
|
|
BLAKE2b-256 checksum How to use checksums |
2439a4f6d6cb69c07f9fb1d491a01a94d1148da697bf47527fcdf77b4a1fb9a7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 132.4 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
640222cf7d71fd96d51a7918bf4e72dc32b2418a6cc4eff8394645dc9573225c
|
|
BLAKE2b-256 checksum How to use checksums |
e21ee49a00eb99e3c1b8a6fd7050d4c95ebca6186674057292c716b7cb822909
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp311-cp311-musllinux_1_2_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp311-cp311-musllinux_1_2_i686.whl |
|---|---|
| Size | 122.6 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
38f006d018e27a05bce4e6bfe78106958de4e86074652d148a53af25bbcda857
|
|
BLAKE2b-256 checksum How to use checksums |
1ce075147edaf277da6d7959a2b1e014e973dd07718bb0ab315068e607235233
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 129.0 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
2895bf2a572cfb17cf80b1c1160e9131b7d4efc170454c9938dee0b00ffddcf2
|
|
BLAKE2b-256 checksum How to use checksums |
17fbf3e1dbc7c469e55d26d02bcb9be0df4cebca727b9aa423107b2c489cef52
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 120.0 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
7be1a0be8a0c7889e9d04097b970d8871edee3d15d7322f54f7b27e6f7134ce8
|
|
BLAKE2b-256 checksum How to use checksums |
250370cc65a56cdd70d54052694bd09efabb37bf57d7059291d74f84e73d734c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | fast_edit_distance-1.2.2-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 24.0 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
7e8c701022654143c41c3c6ba9bfe386dd69cb185db1a0fae6c6acf2829be171
|
|
BLAKE2b-256 checksum How to use checksums |
ec6623b3b46a881ce5acc0dffee7278ef47d526f9e6fb34ceafdf6f7b6db9178
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl |
|---|---|
| Size | 24.4 kB |
| Tags | CPython 3.11 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
d3a38fdcaf064462b1f70fe3b1a854a3694e7187a5f53a6fb7dcca1b764a6881
|
|
BLAKE2b-256 checksum How to use checksums |
188c1affbaa9d5ef5b18b8933924caf8f310b27f6bcc4b4cbe780f6abf3421ae
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp310-cp310-win_amd64.whl
| Download URL | fast_edit_distance-1.2.2-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 25.1 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
20c7184d6ef38a0aa5630ea7847d73649ecdab34abc5d8f54ed399340d8ca427
|
|
BLAKE2b-256 checksum How to use checksums |
b3743bd0185dcef17b8500bc1da2356b232c3edb136de259f58db3a75c27511f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp310-cp310-win32.whl
| Download URL | fast_edit_distance-1.2.2-cp310-cp310-win32.whl |
|---|---|
| Size | 22.9 kB |
| Tags | CPython 3.10 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
eacb903e7ce7e4a24b6d66311bd7ebea2f11bc41bb5fe88477378940aa268ed8
|
|
BLAKE2b-256 checksum How to use checksums |
81ec10bf68b00d790689bd7abb5fd1e765b602d255179ce9dc70e4e1db47573a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 117.5 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
a7c320cb5d3ee6dbdcc5c800cbd8ec58f5c775e1f72110005be7be3060034ea4
|
|
BLAKE2b-256 checksum How to use checksums |
782171b64feb8aba3f1df020737d58dce74f12d39c57e89d7ab3203109f71127
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp310-cp310-musllinux_1_2_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp310-cp310-musllinux_1_2_i686.whl |
|---|---|
| Size | 114.2 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
9cad2bf95a2e9944939c831e0bf7dea6aced2b35f4c596b04d815ea01945dec1
|
|
BLAKE2b-256 checksum How to use checksums |
096437b62742d45ab743ce1d57559deec6ca811d61a84076e23f868cae980254
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 117.3 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
a066099eaf95fab567cb7e7db160f087d644570308738a8fe309272fe299d451
|
|
BLAKE2b-256 checksum How to use checksums |
9c704349f78d5d5cf79bac6552f11e2f68b97d24be718816769773cae1a63b1e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 109.8 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
652c5a75693bef1f57d35e2f48ecbb6ba21c6f5f588ceea380fffb7ab9d2c484
|
|
BLAKE2b-256 checksum How to use checksums |
2b5a48fcad276da803c86c8e5faaa0e46313063cb0f196a0edd48a1dff3d8555
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | fast_edit_distance-1.2.2-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 24.1 kB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
d0160c3485cff632c68566cb962e2a9986f6895885b70e38de973d2c01c3e816
|
|
BLAKE2b-256 checksum How to use checksums |
7648b377417781367815e3584455f89a5cbcc23b4c13ae26058681023d25c725
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl |
|---|---|
| Size | 24.6 kB |
| Tags | CPython 3.10 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
828730a3dbee6dc4fe2b0ae40686247868023f21ff7f4c2020a9f8ee34d733ac
|
|
BLAKE2b-256 checksum How to use checksums |
7cb4b631e594e10b0764e675eba6481eca47ca7856e37daff11024d6b4f2893e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp39-cp39-win_amd64.whl
| Download URL | fast_edit_distance-1.2.2-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 25.1 kB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
8269a5bbc00b5121586266255c2a37c52849e89afb58fca209cff11434a7da2b
|
|
BLAKE2b-256 checksum How to use checksums |
e46853b02ccf36a00f1956787423ceaddf671c5f98ae7163a20b9f134d012ab7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp39-cp39-win32.whl
| Download URL | fast_edit_distance-1.2.2-cp39-cp39-win32.whl |
|---|---|
| Size | 22.9 kB |
| Tags | CPython 3.9 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
0c407458fcda7f66b77dcbb63d5ed00400c8e8295ad82b18cf530751b90694a9
|
|
BLAKE2b-256 checksum How to use checksums |
c7ca2d332929a584c5922c198fa4a2d9d3b78996ed98235f29ff2c2a22e39596
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp39-cp39-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 117.3 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
9d4ba4b141a14b1f66b4dfa27cd5636fe3d2faf5614bfcca8bfeea45f0dbe115
|
|
BLAKE2b-256 checksum How to use checksums |
6be7bf8f67ebdc231f9f7299e8e31050917b3fb7ddcebf84aa2e903722147c4a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp39-cp39-musllinux_1_2_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp39-cp39-musllinux_1_2_i686.whl |
|---|---|
| Size | 114.0 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
f82836db07c5ed3eeaa55ab1d8272116aac746ed069bc1c69d2cadf97951c1fe
|
|
BLAKE2b-256 checksum How to use checksums |
34c476895261b11c6ee577bba6b2c4ec47e04e663fccda48e4f95c80e50bfaa8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 117.1 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
1e7e207a35c23d990cf6a4b12c4388c341df00314570e217a0600344dc4e3270
|
|
BLAKE2b-256 checksum How to use checksums |
2406d42d7da4e8c831f804f1857f07c815fd5b40530c7b1792cfe0a53e9716d1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 109.6 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
a4a2532012eacbc9552ce0e9d7573d7282bb0469eae35b02e980b9ce92c79f1f
|
|
BLAKE2b-256 checksum How to use checksums |
23c7968fedb7b8f92b8923d5c9ff94c9037b94829bfa446f2dc87e875c3b0156
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | fast_edit_distance-1.2.2-cp39-cp39-macosx_11_0_arm64.whl |
|---|---|
| Size | 24.1 kB |
| Tags | CPython 3.9 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
473a5300b360ff5c5dd20dac8a254cee8a197ece6cfa4260f327d34c6df5ecfe
|
|
BLAKE2b-256 checksum How to use checksums |
87cc11a18a389a4bb3e153fc1d4b1c4e8899bf8de0879864e4b0cb60359b4397
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp39-cp39-macosx_10_9_x86_64.whl |
|---|---|
| Size | 24.6 kB |
| Tags | CPython 3.9 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
f4d3f0dd0849affaef8c69315dedac8d00369b070298f13c15d1052bc783fcdd
|
|
BLAKE2b-256 checksum How to use checksums |
9a36602f84b40a6754efdad029db20eb68cf0d203d35058741b75718a718c447
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp38-cp38-win_amd64.whl
| Download URL | fast_edit_distance-1.2.2-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 25.1 kB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
5da67c14debb1899b4da683a1c61797c308112fc6de02a88e6c7a47289ffc10c
|
|
BLAKE2b-256 checksum How to use checksums |
6e1f5d88b4dde96e3121cd9d4aa5fba8b2e73cfba6cd8c580a92a62f6ec75486
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp38-cp38-win32.whl
| Download URL | fast_edit_distance-1.2.2-cp38-cp38-win32.whl |
|---|---|
| Size | 22.9 kB |
| Tags | CPython 3.8 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
5245703d113e3ce0180ab1e8b1e56dfbc7b8f0199b36ced2a30b0b894ddb7d9f
|
|
BLAKE2b-256 checksum How to use checksums |
849278aa7c5bd6b80ba63039999f150bf563f5e6ab3c9d5feaef4dfcc9b82584
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp38-cp38-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 117.2 kB |
| Tags | CPython 3.8 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
bac7914f29539c7e9b519c2cf8758ea0b946e564b45fddd897b5ebbe7b36dc2d
|
|
BLAKE2b-256 checksum How to use checksums |
f1a6a34193acbf1184b07a96a499c1508536dcb31fce072cf8e30a05b8fc45e8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp38-cp38-musllinux_1_2_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp38-cp38-musllinux_1_2_i686.whl |
|---|---|
| Size | 114.4 kB |
| Tags | CPython 3.8 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
b17165f9cdb7568a14c141418ba4048d1d36d90e32c60fae46b0c47c8864f9c8
|
|
BLAKE2b-256 checksum How to use checksums |
89803b496e795ca9870b4435cdde46e9175b63538d04de73b19cb47a47fb1275
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 117.8 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
d7d67f36d5f97eb88ba5679f048ed580dd4f06e143375d560fd358fdd618b101
|
|
BLAKE2b-256 checksum How to use checksums |
0bb35115a18c1b63dc26dd6a6925e99bfe99ad36bc11456a0f0ae22c65593a1f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 110.3 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
15fcac830b6b357d12eb59697e7ef7c4321cddf9e593a0955f97bcaf24e158e3
|
|
BLAKE2b-256 checksum How to use checksums |
787fccb60fce71953b1cbdbf3c26e9b20a81f98f90ba4f01a53910906801813b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | fast_edit_distance-1.2.2-cp38-cp38-macosx_11_0_arm64.whl |
|---|---|
| Size | 24.1 kB |
| Tags | CPython 3.8 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
1042ca207fa668189c6e9f3b9f87cdad1d5c53990afcd694d4a068945506882c
|
|
BLAKE2b-256 checksum How to use checksums |
9f6cac29e9acf06b71ab8f0ebd1ef1bb36b8f1dda677b29ce1d719427401c24a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp38-cp38-macosx_10_9_x86_64.whl |
|---|---|
| Size | 24.6 kB |
| Tags | CPython 3.8 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
a4612de65965399b20c9b5c331322d7f6f1ac6c1a9aa82fc0dce0685059c1376
|
|
BLAKE2b-256 checksum How to use checksums |
220df151f317ca58d9a9d177068fe0dd75c5329c11f67d1c584c698966d571e7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp37-cp37m-win_amd64.whl
| Download URL | fast_edit_distance-1.2.2-cp37-cp37m-win_amd64.whl |
|---|---|
| Size | 25.2 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
1ce6707075ee5cf1ddef3a53f4cc491ac3d92990c67d27a749cb1c12cb57b312
|
|
BLAKE2b-256 checksum How to use checksums |
3265a2723e1bae75f4b610fe71b1ef203f7587bda573d5bff3387a7b29046882
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp37-cp37m-win32.whl
| Download URL | fast_edit_distance-1.2.2-cp37-cp37m-win32.whl |
|---|---|
| Size | 22.5 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
fd6cef55c1e7d70d4257c6864231c9f04ef9841928847bbb0eada9b9abd7b4b7
|
|
BLAKE2b-256 checksum How to use checksums |
d6dda57830b04b4ecc207ff95b91f563e3ddb9bb24a31c3b743d9a611aff4a77
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp37-cp37m-musllinux_1_2_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp37-cp37m-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 109.9 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
c18437d726fd64104973e29539d391f7ca421fdcc68939846f12042b23f51ff1
|
|
BLAKE2b-256 checksum How to use checksums |
83930e7e966f63d1e86fe45977c36d6d9a164bb646307573d2ef11f0f7711b12
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp37-cp37m-musllinux_1_2_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp37-cp37m-musllinux_1_2_i686.whl |
|---|---|
| Size | 106.3 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
4275870aac54c37aae29d6ca97da04905c91941f6a08dda8423434b5bcd31a20
|
|
BLAKE2b-256 checksum How to use checksums |
c09db625d213ceb3154f63f87dff47382b1122eb6028a52015bcf15b3d715b2e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 109.3 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
b524a34c378743392f6504d8727dbb38319eac2d7b73190b50a5ff18cfec14a5
|
|
BLAKE2b-256 checksum How to use checksums |
6219433e3348faecf7cdcb645bf2969932e2bd93a86563da43e8b2413575cd7d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | fast_edit_distance-1.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 102.0 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
a20efd02ab7391ba22681525dba648590804351b511d060a64d2d297391cf316
|
|
BLAKE2b-256 checksum How to use checksums |
ae216b34fd2af0dea40977994da44182da90953b9a6a2a268eb45fb6c5f9387e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|
Release files / fast_edit_distance-1.2.2-cp37-cp37m-macosx_10_9_x86_64.whl
| Download URL | fast_edit_distance-1.2.2-cp37-cp37m-macosx_10_9_x86_64.whl |
|---|---|
| Size | 24.4 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
92f6117c20907907e483b2a444c27b674d60865e02476e4e4115ff181a9dc296
|
|
BLAKE2b-256 checksum How to use checksums |
25e2b1d227ffa60d8ef61bf3c659983667c797dd9db16d510485cf5749028dee
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/5.1.1 CPython/3.12.6
|