Skip to main content

Python extension for computing string edit distances and similarities.

Project description

Levenshtein

Introduction

The Levenshtein Python C extension module contains functions for fast computation of:

  • Levenshtein (edit) distance, and edit operations
  • string similarity
  • approximate median strings, and generally string averaging
  • string sequence and set similarity

This is a fork of ztane/python-Levenshtein <https://github.com/ztane/python-Levenshtein>_, since the original project is no longer actively maintained.

Requirements

  • Python 2.7 or later

Installation

.. code-block:: bash pip install levenshtein

Documentation

The documentation for the current version can be found at <https://maxbachmann.github.io/Levenshtein/>_

License

Levenshtein is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

See the file COPYING <https://github.com/maxbachmann/Levenshtein/blob/main/COPYING>_ for the full text of GNU General Public License version 2.

Changelog

v0.13.0

  • Maintainership passed to Max Bachmann
  • use faster bitparallel implementations for distance and ratio
  • avoid string copies in distance, ratio and hamming
  • Fix usage of deprecated Unicode APIs in distance, ratio and hamming
  • Fixed incorrect window size inside Jaro and Jaro-Winkler implementation
  • Fixed incorrect exception messages
  • Removed unused functions and compiler specific hacks
  • Split the Python and C implementations to simplify building of the C library
  • Fixed multiple bugs which prevented the use as C library, since some functions only got defined when compiling for Python
  • Build and deliver python wheels for the library
  • Fixed incorrect allocation size in lev_editops_matching_blocks and lev_opcodes_matching_blocks

v0.12.1

  • Fixed handling of numerous possible wraparounds in calculating the size of memory allocations; incorrect handling of which could cause denial of service or even possible remote code execution in previous versions of the library.

v0.12.0

  • Fixed a bug in StringMatcher.StringMatcher.get_matching_blocks / extract_editops for Python 3; now allow only str editops on both Python 2 and Python 3, for simpler and working code.
  • Added documentation in the source distribution and in GIT
  • Fixed the package layout: renamed the .so/.dll to _levenshtein, and made it reside inside a package, along with the StringMatcher class.
  • Fixed spelling errors.

v0.11.2

  • Fixed a bug in setup.py: installation would fail on Python 3 if the locale did not specify UTF-8 charset (Felix Yan).

  • Added COPYING, StringMatcher.py, gendoc.sh and NEWS in MANIFEST.in, as they were missing from source distributions.

v0.11.1

  • Added Levenshtein.h to MANIFEST.in

v0.11.0

  • Python 3 support, maintainership passed to Antti Haapala

v0.10.2

  • Made python-Lehvenstein Git compatible and use setuptools for PyPi upload
  • Created HISTORY.txt and made README reST compatible

v0.10.1

  • apply_edit() broken for Unicodes was fixed (thanks to Radovan Garabik)
  • subtract_edit() function was added

v0.10.0

  • Hamming distance, Jaro similarity metric and Jaro-Winkler similarity metric were added
  • ValueErrors raised on wrong argument types were fixed to TypeErrors

v0.9.0

  • a poor-but-fast generalized median method quickmedian() was added
  • some auxiliary functions added to the C api (lev_set_median_index, lev_editops_normalize, ...)

v0.8.2

  • fixed missing `static' in the method list

v0.8.1

  • some compilation problems with non-gcc were fixed

v0.8.0

  • median_improve(), a generalized median improving function, was added
  • an arbitrary length limitation imposed on greedy median() result was removed
  • out of memory should be handled more gracefully (on systems w/o memory overcomitting)
  • the documentation now passes doctest

v0.7.0

  • fixed greedy median() for Unicode characters > U+FFFF, it's now usable with whatever integer type wchar_t happens to be
  • added missing MANIFEST
  • renamed exported C functions, all public names now have lev_, LEV_ or Lev prefix; defined lev_byte, lev_wchar, and otherwise santinized the (still unstable) C interface
  • added edit-ops group of functions, with two interfaces: native, useful for string averaging, and difflib-like for interoperability
  • added an example SequenceMatcher-like class StringMatcher

v0.6.0

  • a segfault in seqratio()/setratio() on invalid input has been fixed to an exception
  • optimized ratio() and distance() (about 20%)
  • Levenshtein.h header file was added to make it easier to actually use it as a C library

v0.5.0

  • a segfault in setratio() was fixed
  • median() handles all empty strings situation more gracefully

v0.4.0

  • new functions seqratio() and setratio() computing similarity between string sequences and sets
  • Levenshtein optimizations (affects all routines except median())
  • all Sequence objects are accepted, not just Lists

v0.3.0

  • setmedian() finding set median was added
  • median() initial overhead for Unicodes was reduced

v0.2.0

  • ratio() and distance() now accept both Strings and Unicodes
  • removed uratio() and udistance()
  • Levenshtein.c is now compilable as a C library (with -DNO_PYTHON)
  • a median() function finding approximate weighted median of a string set was added

v0.1.0

  • Inital release

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

Levenshtein-0.13.0.tar.gz (164.8 kB view details)

Uploaded Source

Built Distributions

Levenshtein-0.13.0-pp37-pypy37_pp73-win32.whl (77.9 kB view details)

Uploaded PyPy Windows x86

Levenshtein-0.13.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (125.1 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

Levenshtein-0.13.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (96.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Levenshtein-0.13.0-pp36-pypy36_pp73-win32.whl (77.9 kB view details)

Uploaded PyPy Windows x86

Levenshtein-0.13.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (125.1 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

Levenshtein-0.13.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (96.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Levenshtein-0.13.0-cp39-cp39-win_amd64.whl (88.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

Levenshtein-0.13.0-cp39-cp39-win32.whl (80.4 kB view details)

Uploaded CPython 3.9 Windows x86

Levenshtein-0.13.0-cp39-cp39-manylinux2014_s390x.whl (133.4 kB view details)

Uploaded CPython 3.9

Levenshtein-0.13.0-cp39-cp39-manylinux2014_ppc64le.whl (143.2 kB view details)

Uploaded CPython 3.9

Levenshtein-0.13.0-cp39-cp39-manylinux2014_aarch64.whl (124.1 kB view details)

Uploaded CPython 3.9

Levenshtein-0.13.0-cp39-cp39-manylinux2010_x86_64.whl (130.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

Levenshtein-0.13.0-cp39-cp39-manylinux2010_i686.whl (146.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

Levenshtein-0.13.0-cp39-cp39-manylinux1_x86_64.whl (130.6 kB view details)

Uploaded CPython 3.9

Levenshtein-0.13.0-cp39-cp39-manylinux1_i686.whl (146.8 kB view details)

Uploaded CPython 3.9

Levenshtein-0.13.0-cp39-cp39-macosx_11_0_arm64.whl (80.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

Levenshtein-0.13.0-cp39-cp39-macosx_10_9_x86_64.whl (101.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

Levenshtein-0.13.0-cp39-cp39-macosx_10_9_universal2.whl (171.0 kB view details)

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

Levenshtein-0.13.0-cp38-cp38-win_amd64.whl (88.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

Levenshtein-0.13.0-cp38-cp38-win32.whl (80.3 kB view details)

Uploaded CPython 3.8 Windows x86

Levenshtein-0.13.0-cp38-cp38-manylinux2014_s390x.whl (133.4 kB view details)

Uploaded CPython 3.8

Levenshtein-0.13.0-cp38-cp38-manylinux2014_ppc64le.whl (143.2 kB view details)

Uploaded CPython 3.8

Levenshtein-0.13.0-cp38-cp38-manylinux2014_aarch64.whl (124.1 kB view details)

Uploaded CPython 3.8

Levenshtein-0.13.0-cp38-cp38-manylinux2010_x86_64.whl (130.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

Levenshtein-0.13.0-cp38-cp38-manylinux2010_i686.whl (146.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

Levenshtein-0.13.0-cp38-cp38-manylinux1_x86_64.whl (130.7 kB view details)

Uploaded CPython 3.8

Levenshtein-0.13.0-cp38-cp38-manylinux1_i686.whl (146.9 kB view details)

Uploaded CPython 3.8

Levenshtein-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl (101.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

Levenshtein-0.13.0-cp37-cp37m-win_amd64.whl (88.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

Levenshtein-0.13.0-cp37-cp37m-win32.whl (80.1 kB view details)

Uploaded CPython 3.7m Windows x86

Levenshtein-0.13.0-cp37-cp37m-manylinux2014_s390x.whl (133.5 kB view details)

Uploaded CPython 3.7m

Levenshtein-0.13.0-cp37-cp37m-manylinux2014_ppc64le.whl (143.4 kB view details)

Uploaded CPython 3.7m

Levenshtein-0.13.0-cp37-cp37m-manylinux2014_aarch64.whl (124.4 kB view details)

Uploaded CPython 3.7m

Levenshtein-0.13.0-cp37-cp37m-manylinux2010_x86_64.whl (130.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

Levenshtein-0.13.0-cp37-cp37m-manylinux2010_i686.whl (147.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

Levenshtein-0.13.0-cp37-cp37m-manylinux1_x86_64.whl (130.7 kB view details)

Uploaded CPython 3.7m

Levenshtein-0.13.0-cp37-cp37m-manylinux1_i686.whl (147.3 kB view details)

Uploaded CPython 3.7m

Levenshtein-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl (101.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

Levenshtein-0.13.0-cp36-cp36m-win_amd64.whl (86.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

Levenshtein-0.13.0-cp36-cp36m-win32.whl (78.6 kB view details)

Uploaded CPython 3.6m Windows x86

Levenshtein-0.13.0-cp36-cp36m-manylinux2014_s390x.whl (130.9 kB view details)

Uploaded CPython 3.6m

Levenshtein-0.13.0-cp36-cp36m-manylinux2014_ppc64le.whl (140.3 kB view details)

Uploaded CPython 3.6m

Levenshtein-0.13.0-cp36-cp36m-manylinux2014_aarch64.whl (122.4 kB view details)

Uploaded CPython 3.6m

Levenshtein-0.13.0-cp36-cp36m-manylinux2010_x86_64.whl (127.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

Levenshtein-0.13.0-cp36-cp36m-manylinux2010_i686.whl (144.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

Levenshtein-0.13.0-cp36-cp36m-manylinux1_x86_64.whl (127.9 kB view details)

Uploaded CPython 3.6m

Levenshtein-0.13.0-cp36-cp36m-manylinux1_i686.whl (144.8 kB view details)

Uploaded CPython 3.6m

Levenshtein-0.13.0-cp36-cp36m-macosx_10_9_x86_64.whl (99.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

Levenshtein-0.13.0-cp35-cp35m-win_amd64.whl (86.7 kB view details)

Uploaded CPython 3.5m Windows x86-64

Levenshtein-0.13.0-cp35-cp35m-win32.whl (78.6 kB view details)

Uploaded CPython 3.5m Windows x86

Levenshtein-0.13.0-cp35-cp35m-manylinux2014_s390x.whl (130.8 kB view details)

Uploaded CPython 3.5m

Levenshtein-0.13.0-cp35-cp35m-manylinux2014_ppc64le.whl (140.0 kB view details)

Uploaded CPython 3.5m

Levenshtein-0.13.0-cp35-cp35m-manylinux2014_aarch64.whl (122.3 kB view details)

Uploaded CPython 3.5m

Levenshtein-0.13.0-cp35-cp35m-manylinux2010_x86_64.whl (128.1 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

Levenshtein-0.13.0-cp35-cp35m-manylinux2010_i686.whl (144.6 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

Levenshtein-0.13.0-cp35-cp35m-manylinux1_x86_64.whl (128.1 kB view details)

Uploaded CPython 3.5m

Levenshtein-0.13.0-cp35-cp35m-manylinux1_i686.whl (144.6 kB view details)

Uploaded CPython 3.5m

Levenshtein-0.13.0-cp35-cp35m-macosx_10_9_x86_64.whl (95.3 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

Details for the file Levenshtein-0.13.0.tar.gz.

File metadata

  • Download URL: Levenshtein-0.13.0.tar.gz
  • Upload date:
  • Size: 164.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0.tar.gz
Algorithm Hash digest
SHA256 2e6e0e6836ef0969102280807358bfa4db2db0c753e8bb3328cd673dfeb380f3
MD5 c474da2a12b472a680d1a48aa8c72c32
BLAKE2b-256 eaeb16cc6cb985aa9ab6af724a3025490cd83bf7b4fdc6486f4759ce26b02f48

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 f2f22d1de15c30693edc5b2121ed04d5426fa998ec050730914ebeb7a82c0289
MD5 34bbfac01356c74e3ee7db913abf3eff
BLAKE2b-256 732245c1559d66fb04337950eca3d55cf15f3601197e2282ee5d95e1919817c6

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 125.1 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 025da1ca5f3b1fd42edcd702f3cb02afd6d9531e44202d5734eb2e22c0664434
MD5 791081c8380cf5ba3d29c415945e8f8b
BLAKE2b-256 8941b591c7d9723ca66303798c3be6c1a6426db162ee28d8abffd82d29ffad11

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for Levenshtein-0.13.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b618f77b474b11dfe9c4e76bda08897ebdb3f050de98fdef0eec0ced578acec5
MD5 55aa2babf430db0eb737f1c8b41dff3f
BLAKE2b-256 5b727901f4add0d8c3bb5ca3d0fb17f92ac23615aeb2c95f1e90421dedf4e274

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.6 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7f56f664ce6c56abb6edc9f02dc42bd7303cd8c1233780f4c4545c8f3498712
MD5 cb886caabdf5bed790af4586c2110d0b
BLAKE2b-256 00946f64e4d9bdfe04704d67025e2a3fd7da710240f7b8bfbd703dd5511a0df1

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 deba5fa742255939817347da2f8495c7201a392e0f5ee76a002a1b13ba17f455
MD5 88424b24571f7b93cd62f2047f59b7c6
BLAKE2b-256 daf699ee3abc14bf82183283f2175716a49373ce7cbe546bbbbf872d901d6713

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 125.1 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1d14769df88aa64c1def4ac1bd8d1ac2e5d4d6b2be7338159c53139c03c681db
MD5 284d6a61f2f5e9dab4e68ecfcde573d5
BLAKE2b-256 035c41565fdf443391022f40f56dd69e2361c06fce2b866f8125f7b32a765281

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for Levenshtein-0.13.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 599aad46f535b2fcce29fae4ce1f07e5556b3a1b777c9df23174a70221a4fc8a
MD5 37f8759bdbd7d5f921b588675943b223
BLAKE2b-256 5a4c9145a7f0c0d2ddcf5f5cfcb4c8ab005b1022d376eaa4f892adf920261867

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.6 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3de942bc6c874b27c0dcc9d4339a9729ba6b9e8ff1fd5e345b94c7ff2c2b662
MD5 f89d12fa106ae9e19decd201a3295254
BLAKE2b-256 c920010534f6f240919136701fcb7587e07e9f550d1b9329f9cc4cffc1f115c4

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 88.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 616a567db8c45a058dcf37efdd86546007b7b71b554fb01607d8dbb069fa61cf
MD5 aec037c0cfe09e6b43c33f0d53bcc89b
BLAKE2b-256 faddee34bb9b656bc24e524af638f9417d5810bfe8a12b45bd71b2d44c97e28e

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 80.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9b0485f50610811543aa9af21f42c41e1cd6efe6e8a054848feb01753e83ba00
MD5 0087146fb1627b5402ce9e82b8ebf5c6
BLAKE2b-256 477fa2829f19abdc834925b5ecd7d3ad24bbcc31fea89fb6ad971d98b7d0c751

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp39-cp39-manylinux2014_s390x.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 133.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1bcd0e525b0d35bc2015244970da6edd9972fe567b616a3a76d933d425bedcc
MD5 5261dc7873795f5fea1daf6e5d20e742
BLAKE2b-256 a9c2b4eb0ec0aa6a721c860d6a37571d9627a9466938ccd60921137b78f8deaf

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 143.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e88df394117c00e6547f8d0391f59b4092df980c6eb2aba386f048ede9496f99
MD5 34ba7aa51e48040d89c7bc53a28b934a
BLAKE2b-256 cf3be42522f3af224e36107efc452140c055a8338de3f78d456ea71b2d0498cd

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 124.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 354d41df38053779f0c21184c8f48b290e2a563b9e5b1d3cf8cae66bfbd2ca96
MD5 f4e6667b7945bf55315ad6798b141873
BLAKE2b-256 02fb6ae520571fea7911cef718db68b689b08daaf0db75483fe3475b158ee1f2

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 130.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 87cb5030d3d56ccc3b9bad6ed3e7e446448d7778341fed7313ec42ca23505a06
MD5 79295b2a84e3bc5ed305908e24762970
BLAKE2b-256 4b24488ebdba1c67851f29364842ceef67c85ef97bcfe7d7952f08a047e02a26

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 146.8 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 83220fc5e33f106b1f88196962890f8551e43cae561894038bcc90bdfdfb756b
MD5 a6afa31a7fda7d2b3aba640d0ead5fd5
BLAKE2b-256 7874b17a9e2b26b370ad8782affeec4c7a8935d38a2d8f7d597516f03ef950da

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 130.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2e291ddf36c023c1a457eec7b9df6aa600c17dc0b6abdb9bd27e980f461fc0a5
MD5 9f147eef524b2a6ce0240a7d2541799b
BLAKE2b-256 9575107bfcbad8a9cde0585598be70936f510a11c2ff95f61778f104430dc380

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 146.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d5109014155fb8a337ac1bdbcb2cdc4bc54ed044389a540e249c9ca0e8387f1
MD5 14c3ab21c44a7c4880d4b74e7eaa2f4d
BLAKE2b-256 b1dfdcdc1e1c0a85aad7bde71584a42b547a2c91ca4aea59ef48515fc3508972

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 80.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 162388ab7c6ee2848e391d975de981e89d5300373f595cd89caa89f6f22c6913
MD5 f8e7e3d1d95236225aa37826bc5e6990
BLAKE2b-256 8a08368f57f3c729419a0ad6717a42efd4c2d86a213fabdb1ea0887ae0a36ecc

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 101.6 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64d7f6eb536b2dcbe8d03139c46fc601ced79196093058c6aab0bfdee03cf76d
MD5 0dd377c0ed91c02cd3882571c3f7775a
BLAKE2b-256 2f0a939978c14df26ace5f187684ff8d2f9bbf7f2fb6e7c84e06c14cc2cfc916

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 171.0 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d99ea811e6d7ee16618dc48195ef6c6adc713bd87010bf270de9a897650f22a4
MD5 c86e893942e7673778aa737be16cdcb4
BLAKE2b-256 85c49e1c616a7ea1a81d90b20576dfcfe256e5ff4812e6cfb632aee40bd27778

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 88.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 714017d60c68dc4eee3b61fb0eb496dcf558622fdfe2155d799531268179ff8b
MD5 d1d8eb381df8324e1e9e50087096333d
BLAKE2b-256 6345a58af8e70536849999776885746b13c94720a1891bf882bc97e51c43f57f

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 80.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b67c7614c67212f12baec998b74de624cc48773e481c306280a8174860b33b03
MD5 d5d330a3e85030cdeab19bee861fde04
BLAKE2b-256 20a3512df6392e2adf35429cbd52c22022eda96a92b242412cc0b6077e0db679

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp38-cp38-manylinux2014_s390x.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 133.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4da4ae741f4f61e783d127240f490184ee0722a3f44c493e71cddee652d7fca2
MD5 a2d3ef37f8dfb547f09578247eb04250
BLAKE2b-256 a74340084ce3c78a11c98bdf266c439c8b70b0abc8b6528e2d5bfc304da3d62e

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 143.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b34d603176bb2bb86cb2996b39b4762805ec41cb2bc5b222a24447c92fa642c7
MD5 bd2fa9dce42b7e391f6831b7bf1a230a
BLAKE2b-256 55987b6ae6acb2f1ec62fd43b356d596477d71bb1f07ba1e5dbbf668453e9912

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 124.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f16a9bbab9bea0d4f5f17ecfedca0ed087b50b414db69ae37285002c7b8b6d7b
MD5 5e17781e6230e8b1842111f04dc9e3df
BLAKE2b-256 3c65f060379a68c8dee1e5bf25f648b3ca2ec5664e4a60867c79117d28298d9d

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 130.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0572dd77ac5848c6f64f58bd1404c1ddb20b777c36f88e619f59e1cb23427c03
MD5 5e311cd7759e8bf6c43ed8ff5947a41b
BLAKE2b-256 4e81f248dfe7aad06a556b29a502d390b5d4382b02a373971f3ff801578d2779

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 146.9 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 44e4f927caea9e4d99db5630c8601f472f410ab57376827ead30f5726e4191e6
MD5 2477c504baabd874c37c72082967e0c1
BLAKE2b-256 bfb3a754a02de54671b300a7c099aff5a2c94d4df1c978ec263d73b027003df6

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 130.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 86a833fecc7b2f35f17aceb42ce0737fdbe64b352c5dce4b5b6b6d1199f612be
MD5 3239e76ef3aa6ccf98f69ba0b7b71ae4
BLAKE2b-256 f1ff59e541094c39817f4196948f7b32a36a2de139af17b6ae7d865640545802

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 146.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 71dc4b997faeaad646c25e0ba5220a7642c45d75d3e91f7261f094069ef4b4db
MD5 706864d2a59f431f58cdefad472015ba
BLAKE2b-256 311be94f75e21ea663d87d8118c47135febbf21113dfd8caaa216cf02d5911b5

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 101.7 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bf09c386db518ac5b949599044c4ac9664df9ca7d3cc08778e959bc5a8d1bfa
MD5 5dfd02d5309e17e97e36b4ffb56202e1
BLAKE2b-256 aa3cdbffa46c440b4e866c4f825049e4bb319fd5a3439825a8056f8406204896

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 88.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c13c6e261c05aa8b0a9b334ecda4501e086af47379947a8261e99ec292b7f2e2
MD5 61e5d911d404c49ca4073e853e320830
BLAKE2b-256 96c3144e27ea772ccbdef6ed6306843c7444b48649a94efae0e8b8fb3987154c

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 80.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 13532933b95461e6dedeb135a7a1e1472323cb83d50cac12943537b7172b4698
MD5 8a68a509c7d7c4b1d9aae362da48cc52
BLAKE2b-256 555320e9f7376f7869efbf6ecfbaa76b14695a775c47589696bdb27329491d29

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp37-cp37m-manylinux2014_s390x.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 133.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2cab50517a6fd14177b22f4e81987aec87522b3d7596c42211af0eca655d91af
MD5 98025f8afb1c48e5391502db2f34cb31
BLAKE2b-256 22df052f62138607c9c4446f12dcfeffa2033a9e369632f722f6a1a80ca911a1

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 143.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7e02b983ed908808614bede36bc9b4fa664f22db52c59ce7714378ddc64b41a
MD5 77e5d67a6dd3c1bd6cfce3946183fe84
BLAKE2b-256 47a71b0d2879063b05672630e26fac050af721d6d5561194b642aef1a869474c

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 124.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 747a608803249461d93bd22341beecae52cc3e942b1d9db354dccc20291eed92
MD5 2f8d53de303435e79562b84ae4b19c6b
BLAKE2b-256 75fdb5fdd2c6ef3e218c51587efcb4d7a434f45b0a3b5f5ba5ab34342d461205

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 130.7 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 41875abe632118d503c03ee9bedad6ba1f9c501c3f6f61b3241635982415474e
MD5 d0dfda2b6a1ef6c864eb99e02db45b09
BLAKE2b-256 89e2ddbb4b6192f083429f2044d19da9a4916ea2d882e7f6212a64ad37d18963

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 147.3 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a16be63a1eac7258f8c6e844a922fd7ea6b5746c4c5857654d94e9c50b53da7c
MD5 c01d4e37df9f91e701d8578afce724fe
BLAKE2b-256 261f4cfeff8cd62033dc4a9b7a8796cd9a17575fad83d9c1541ff20d78a0ce21

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 130.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b3ff9ba1c9766efd592e59988985c81061bf47e97b1b8b983c9fe4c4f1dee4fd
MD5 8e19c72c66e34552933cfdf423c33263
BLAKE2b-256 2375cdd347a2c738abb123d831e2ae06a6121601a7df6373d591788d9950bc6e

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 147.3 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e3db5d6dd6345eb0940ca14e3c3305d13d4651ee052ed1eb2dd05dd8b3fe7284
MD5 cd60d9094f3152291454a625784ccc63
BLAKE2b-256 aeeba68347ab77be185a9fc6bb5e2cce07305855f244c6ed1a1a8389e2c937e8

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 101.5 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d6429a677486936590d4728dc8b2abed7d82a5bb816ebff620a79a0771753298
MD5 ff5878c327d04e9b38c0f9332542d744
BLAKE2b-256 293c371f139838267987cb1fe760659b634f4b33c70cbba01d6f4c5594915623

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 86.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e13bfb16eec734f24664403efdd96130b57e15e36156ff26c71117e176c760e2
MD5 34ebfa87b65c80b8042a702d22a6f691
BLAKE2b-256 b36418e1f249d70739b87cde178aaadf25e0fa9c0c5a3df23e804a9b3263b69e

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 78.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 24c29fa766364a664ddbab8cf25e38d56eac0ce99b81f1a163219c674c731cae
MD5 1065fb99c4bfa3868c727baf59ed7c64
BLAKE2b-256 fd04151ed35867c0bf415a2180a00d5db3cefe0adad3a008f9c931e7c325f88a

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp36-cp36m-manylinux2014_s390x.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 130.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 22fb7848097245d552e1bf85f23a030fd984d3cf2bcb033e54d68b599723c9cd
MD5 c1a8291bc34b55c318f78dae0175e122
BLAKE2b-256 3c39ef6243e327eb32b986f37c8439da683f0a468484408490ebe589ec575927

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp36-cp36m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 140.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0966aab2bf1eebe56a23dcb8189054aad0dcd25f5e846f79698601f1adf9a9b
MD5 c0619b35ff305ebd348d9bfd4d8e9479
BLAKE2b-256 55d47e9adf31e57909a36d74d6f1dfbd55e24d0ceb5eeffb846eb8c09c904398

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 122.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4bd322fc2e057102cade0cf86f72676d1c22be2e920e98eab4abac55118bfe34
MD5 3d52879a5cba09b7e5308b8daf0b882d
BLAKE2b-256 959b53d47b933b0b4c14c7bd02f008a9bf8924de7f0ea6547d8ddd47d7ba97a9

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 127.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dcd1849314c29b403b1928f0a72980149f64376305368ed4061cf8aff5f75dcb
MD5 ed4fbb412263e330f6f2b895c7a4702e
BLAKE2b-256 d1d654348ab0c2e6ab6b5ff28957861a2965c6d7f7116d2898482f3822005211

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 144.8 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b755e796a1ab72b4520a75d20da175e69f443eb8648214a8f233de6c79ce70fa
MD5 8c6e47099af313ec5aab0e764edcc603
BLAKE2b-256 aa7c5d4e8fa022e8bff2762e372cd783dcf59186b31e1b0c0c429a363b90a5f4

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 127.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ec249d2f3f3c1cf1d53f04d61de1bb5378d22865651c7d21c395581d197e942e
MD5 e0d8c3cfb129d4fe2d2ab8c4ea4b503a
BLAKE2b-256 0a89e8cc72e8efa98f118c9a55b803d548a1672280c666a3a66a015e3a6dacb5

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 144.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 adae32eb8c292f249f13532ae63ce9ca33ed9327a93ac20059ee47eba571fd51
MD5 fbd49ba8afbb540ef3969039a295cd71
BLAKE2b-256 c1ae13ccb19e4b6e9b9ee915a817b060d704aa4e9910cf2520eef5a08b8f9a36

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 99.6 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f648d38e710ed4d0b37c3197b047087bcecf7ba466c0819a5d29479795add609
MD5 d1aad0ef086d75cdd39a8fe688abb7a2
BLAKE2b-256 fd0db6b583e7f3b303231fc32cb4ca25f39aebb231ccd3a450f12c7aee5856fc

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 86.7 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 557fd5e905dfa09a358f68c20c1906f9b134fa5e529f37f750e499527cffa46b
MD5 d43e65b55ffaeed9e12d139027fee113
BLAKE2b-256 c36dac34fe6aa0f2f4058fb8abd6b4820d094981e3de3d1d4c57f58aa994bbc0

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 78.6 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a09a509f13a46fadff6f31ebd5fcc49485f59556cee1ec5b080fd3c69a4161ac
MD5 8e0f6a7618436025cd452e08d7f26643
BLAKE2b-256 8951068d871a26e137094e1130cfad9641ff6554efd00ee65aba22f97519be1d

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp35-cp35m-manylinux2014_s390x.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp35-cp35m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 130.8 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5db88bf4d8a8bda677386d7ac68a643855c417e357d36ac760860cedb24be8e7
MD5 066ba41832823a9f4772dc67b75f952b
BLAKE2b-256 611fefb3ace71d13eb184df0a84b022b1dd556d8f0689df19e35cc3851dade41

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp35-cp35m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp35-cp35m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 140.0 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6854628006c38cd1b707f621cb211e5e618f25214d607c7002f5fbbc9c31eff4
MD5 571c5b6b6a3e4822fae5a84bebcb6550
BLAKE2b-256 9052e9a5e4c2f57ac9fb07e58ae69b09a4ab1f53654e2bdee114884c74d63093

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 122.3 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cff5999f33c5fbf262e040ca53152749f804f54149a4bd4b4584c918ca0f275e
MD5 b891f6188e08ca7eef3ea37e69b3c64b
BLAKE2b-256 e863d66ca7507f2404b821caba827a83c1ecfb81e3ce80dab5e821259927a613

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 128.1 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0d619cc01d818abb7bf95618a04d23adb069f0e93d6c58abf9c6fbcdad9a96c6
MD5 7ce6ba1b79101a0c7a1e78f0bdeab32b
BLAKE2b-256 c160e6168adc394d75abbce5d00912209b79eae5b6eb13f2cc9d9344e1361071

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 144.6 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0c54ecf6b8edfccfd873bb53c8759a4be528828fed22fd77f173df73cd2c0c75
MD5 6e4af4f106c05c5f1b71eeade3c698ef
BLAKE2b-256 2bfc57d51f01b5fb40f2bcb127baa623346f1b0cf855c41e2e2904a58a790b64

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 128.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2c2a61f0b323cabbfbf603f279619012231e2aa609cb86c63f37df1e7c04749b
MD5 b63899fca157fd424e206d1913f8ed38
BLAKE2b-256 ab48ed3c298776aed54e7b7574bc544bb6c08e798c4dde1a73902bba98f8effa

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 144.6 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a49bb6e0b46a0fd85c497475dc5751e2e87aa30f436ee2f5011c97ee9c71f4a3
MD5 9015eae1775274782240424c6983e0cc
BLAKE2b-256 d8cce411936a7921afaafd58b5a55a127639bf20a59dcad6f08b66606b9815eb

See more details on using hashes here.

File details

Details for the file Levenshtein-0.13.0-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Levenshtein-0.13.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 95.3 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6

File hashes

Hashes for Levenshtein-0.13.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62b0004a24271ce8c69016364e371ec448eded0a9a0df0d1672ff0027cfc2f0b
MD5 a2343667cbd42318a230b963142acf6a
BLAKE2b-256 1fee9345a4bba5ab61fa89aee1ca0415546f9da4b2662fe93fa04710807549de

See more details on using hashes here.

Supported by

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