Skip to main content

Package to calculate the Levenstein distance

Project description

levdist

PyPI - Python Version PyPI version PyPI - Downloads

CI codecov

A Python package to calculate the Levenstein distance algorithm implementation with non-GPL license, typing and speedups. The implementation is based on code samples from Levenstein Wiki.

Installation

pip install levdist

Usage

from levdist import levenshtein

distance = levenshtein("dog", "cat")

Development

Setup

  1. Install PDM using this documentation
  2. Install development dependencies pdm install
  3. Install pre-commit hooks pre-commit install

Testing

This project is using pytest for unit testing. To run the test you need to run pdm test In addition to that you can lint your code using pdm lint and check the typing by pdm mypy.

Type checks

mypy is configured to run in strict mode for files in src folder. Typing is not checked in tests folder.

CI

PR checks

Each PR run GitHub actions for all actual Python versions to check if native extension is built and tests pass. Also formatting and typing will be checked.

The coverage is published to CodeCov.

Dependency updates

To update dependencies and pre-commit hooks there is a GHA job that is scheduled to run weekly.

Release

To create a release, create a tag v<MAJOR>.<MINOR>.<PATCH>. The release will be created with the source code and wheels.

Benchmark

The benchmark of this package can be run using pdm benchmark console command. It compare its speed with other Python implementations. Check the BENCHMARK.md for the latest measurements.

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

levdist-1.0.3.tar.gz (7.5 kB view details)

Uploaded Source

Built Distributions

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

levdist-1.0.3-pp311-pypy311_pp73-win_amd64.whl (13.7 kB view details)

Uploaded PyPyWindows x86-64

levdist-1.0.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl (11.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

levdist-1.0.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (11.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

levdist-1.0.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

levdist-1.0.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (10.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

levdist-1.0.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (11.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

levdist-1.0.3-pp310-pypy310_pp73-win_amd64.whl (13.8 kB view details)

Uploaded PyPyWindows x86-64

levdist-1.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl (11.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

levdist-1.0.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (11.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

levdist-1.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

levdist-1.0.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (10.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

levdist-1.0.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (11.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

levdist-1.0.3-cp313-cp313-win_amd64.whl (13.7 kB view details)

Uploaded CPython 3.13Windows x86-64

levdist-1.0.3-cp313-cp313-win32.whl (13.2 kB view details)

Uploaded CPython 3.13Windows x86

levdist-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

levdist-1.0.3-cp313-cp313-musllinux_1_2_s390x.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

levdist-1.0.3-cp313-cp313-musllinux_1_2_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

levdist-1.0.3-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

levdist-1.0.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

levdist-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl (47.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

levdist-1.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (45.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

levdist-1.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (49.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

levdist-1.0.3-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (46.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

levdist-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

levdist-1.0.3-cp313-cp313-macosx_11_0_arm64.whl (11.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

levdist-1.0.3-cp313-cp313-macosx_10_13_x86_64.whl (12.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

levdist-1.0.3-cp312-cp312-win_amd64.whl (13.7 kB view details)

Uploaded CPython 3.12Windows x86-64

levdist-1.0.3-cp312-cp312-win32.whl (13.2 kB view details)

Uploaded CPython 3.12Windows x86

levdist-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

levdist-1.0.3-cp312-cp312-musllinux_1_2_s390x.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

levdist-1.0.3-cp312-cp312-musllinux_1_2_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

levdist-1.0.3-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

levdist-1.0.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

levdist-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl (47.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

levdist-1.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (45.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

levdist-1.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (49.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

levdist-1.0.3-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (46.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

levdist-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

levdist-1.0.3-cp312-cp312-macosx_11_0_arm64.whl (11.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

levdist-1.0.3-cp312-cp312-macosx_10_13_x86_64.whl (12.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

levdist-1.0.3-cp311-cp311-win_amd64.whl (13.7 kB view details)

Uploaded CPython 3.11Windows x86-64

levdist-1.0.3-cp311-cp311-win32.whl (13.2 kB view details)

Uploaded CPython 3.11Windows x86

levdist-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

levdist-1.0.3-cp311-cp311-musllinux_1_2_s390x.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

levdist-1.0.3-cp311-cp311-musllinux_1_2_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

levdist-1.0.3-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

levdist-1.0.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

levdist-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl (47.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

levdist-1.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (45.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

levdist-1.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (49.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

levdist-1.0.3-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (46.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

levdist-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

levdist-1.0.3-cp311-cp311-macosx_11_0_arm64.whl (11.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

levdist-1.0.3-cp311-cp311-macosx_10_9_x86_64.whl (12.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

levdist-1.0.3-cp310-cp310-win_amd64.whl (13.8 kB view details)

Uploaded CPython 3.10Windows x86-64

levdist-1.0.3-cp310-cp310-win32.whl (13.2 kB view details)

Uploaded CPython 3.10Windows x86

levdist-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

levdist-1.0.3-cp310-cp310-musllinux_1_2_s390x.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

levdist-1.0.3-cp310-cp310-musllinux_1_2_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

levdist-1.0.3-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

levdist-1.0.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

levdist-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl (44.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

levdist-1.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (43.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

levdist-1.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (46.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

levdist-1.0.3-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (43.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

levdist-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

levdist-1.0.3-cp310-cp310-macosx_11_0_arm64.whl (11.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

levdist-1.0.3-cp310-cp310-macosx_10_9_x86_64.whl (12.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

levdist-1.0.3-cp39-cp39-win_amd64.whl (13.8 kB view details)

Uploaded CPython 3.9Windows x86-64

levdist-1.0.3-cp39-cp39-win32.whl (13.2 kB view details)

Uploaded CPython 3.9Windows x86

levdist-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

levdist-1.0.3-cp39-cp39-musllinux_1_2_s390x.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

levdist-1.0.3-cp39-cp39-musllinux_1_2_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

levdist-1.0.3-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

levdist-1.0.3-cp39-cp39-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

levdist-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl (44.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

levdist-1.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (43.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

levdist-1.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (46.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

levdist-1.0.3-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (43.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

levdist-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

levdist-1.0.3-cp39-cp39-macosx_11_0_arm64.whl (11.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

levdist-1.0.3-cp39-cp39-macosx_10_9_x86_64.whl (12.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file levdist-1.0.3.tar.gz.

File metadata

  • Download URL: levdist-1.0.3.tar.gz
  • Upload date:
  • Size: 7.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for levdist-1.0.3.tar.gz
Algorithm Hash digest
SHA256 7fd335cc23ac161a988507d9d2d6de8e2bb26249278e34293906051bf769d256
MD5 6c701faed0bab691d385e11008c5c1ad
BLAKE2b-256 c7a1f86efee9c9186476a5fc2c04dea3c9d09fe3b4741388d5cdda33222b3998

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b7ccaad45ae695d1c184ae14132a98bfad13098e0f6ae208ca6be670dbb2ea4b
MD5 61732e6853c77abbf684ab87b1c4a348
BLAKE2b-256 f9319e5c8a86509971fc8c1d083ab13b80de8beb8e0863b37f0d65ddcdea4bb8

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb507d9b3e38b24c123b320f5961767a089d6adc9f42f76ee81b152324920340
MD5 d76129da3e784bca597665bcca6e73aa
BLAKE2b-256 396a6449776ab0602360e767d20380bb7179a7fc2f991c9b0d46eb185d2bfe08

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37d6572323e62b5b054c51fbb0bb61ac250d977381120127923800ea5b815797
MD5 24771f4534548822f1f697160b8242e4
BLAKE2b-256 dd7c190556323a4ad6c6d6f9bccc0aa8297dc403dd914a626ba2f41f98fdd5e7

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92d2d0e3ce2c0becd261e159ee6c935db5423a69d1ab56bea0a781b9e7c2deeb
MD5 3559e90c85ed11ab3e84d5a1831c7d66
BLAKE2b-256 1d21a20caa91d9f76569271684bdbb1c08266bddbd19265967840e1e69b76489

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cea0a69766a0af36862870685c05329d6527c24e1c835c5aa77794e6027f043
MD5 a829d7a0916bc18ce3a47afa54874c7c
BLAKE2b-256 243637b7a5c5470dac6e13cea31b5ffa82fe1b35183c848b55ac364ceedf1185

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 75e8af586ad31b3ee1a349eea692bc7f8c3fbb5c7230c2362bd020b1c58d622e
MD5 d14904a63175bc9d945cc034cbf2f43b
BLAKE2b-256 d2c471bd900e9225d0ee9e3f6b1e8c724d948b7123f5ae92019e6253e752ffe3

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9a4ab5d00ea278c67763c90f20885b072ab3754b7f2dbed2741747e6f6353f3e
MD5 16a0b010d699baab8af3d426c4021af0
BLAKE2b-256 7a98be7ea605fcb95eee35db360488037996e22412d26325d9a76edc01487979

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c05b8c4b6b0577ac62521c5ff043cf0c142eed2cb392abb769c374f5975d857
MD5 f469748a5297025d11df36d4567c09fb
BLAKE2b-256 d4260c666ea8950972d09f4d65bb3da80bf1b4a0b15b757c40ea4023a46a1f9a

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16cc7896958a424781de68af950a4234b5e12bed33001a0bca6906a09e2b674d
MD5 a5db00b46bd5b40f6e4d82f6129d8bc5
BLAKE2b-256 459099dfdfeb2a850ed61a47cec1c79c85cc73961a3d79fb209e268a79c2fdb4

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c99d178f88f7ffe9dcc6b8960ae7eb8ff436aee4169d509053ce0eeb7cd9187f
MD5 70bb0f34cf9e8077298ad22a13d1627e
BLAKE2b-256 7f40f13bca2ad0823b97d37b96da001739d36c0687f538e3048fb1e1787d770b

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02348761bff26fa2a2b445a480c5b49e61a07aa1d1e2e9ae8c89607a9f97c0a1
MD5 0c567b7136aaacfea11559775744f249
BLAKE2b-256 fa07cb9fd00c8bb06027f29bf0715fa7f5ed6ab8d100dd985674906092298e39

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe6e173fa0cc53af89611c68816cad69fdb05d3a221fc56561ab6c2358cfca5e
MD5 44bb1b99e148f203bcfe9237035941c1
BLAKE2b-256 5a45a73fab0ccdb7e9f004434dfb0dc732aed8f2994503f1be69427109d5bdbe

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: levdist-1.0.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 13.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for levdist-1.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 29ce88c25fa4ee120b73c0b100cee52a9536ed7b7c8981f83e0a7ebaee54bc4c
MD5 6b3387c73125480520a7f48445dacfd9
BLAKE2b-256 3195c52b30e0893df3b78e9a309690ca68ee6e261aa2bb1a37b880e12b72fe68

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: levdist-1.0.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for levdist-1.0.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4ada81eeddc142af3086d981bd573d7b27eacde26d73f7cc2fdde465c5e07e55
MD5 c16b77f9bc13a83b93c92c7f500bcdb2
BLAKE2b-256 911c26a6bcdb466fe4b91023d01ae50d570e3d4c9f2ab317377a5eb48bebd2b4

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbd95db970c21353abe5dbee1f11894222e52ee3285492964255092d5b2f8946
MD5 5a65a50269067de6d34937849736042f
BLAKE2b-256 381a49279c9e02c3d81f39001ed9aafe0a1ee66df8e6972b4bddfffb04298753

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9266a079f9e74b7d45986441d77f49f87c08c6311c68677cfe618c2054ed0136
MD5 53b8bc21be5bc06a2e4744e7d01adbb5
BLAKE2b-256 901633c0fd335514823a871aca26858dec0a82110facf36bd8f291db0a4720f5

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 197cb041b9fe434951daa89a8630f09e7577cfcee976273458b582adc3b7229d
MD5 33b1bf383910f91253d8889d2eb8773c
BLAKE2b-256 81ac8520e1d883aae7e400426c3795decb3a0ec8f617f1413bc32e857ba6725e

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89d34b8c44343d061f438d2024dca0f8d1df02b30bc99992fe6eea3a0ff088ec
MD5 86393c3a8caaec7e49e03d9cb5c53b8b
BLAKE2b-256 d9b8e6c10e7fa8fe6e7cbde010db7594bd36e6e0e241acba975fb746aa333f3a

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc98613d3431a0e77842885601c9086117079d8e4ae53adc17a3aad9c4a0962a
MD5 472eec6c91ad730eb73246720323286b
BLAKE2b-256 72ac6ff87377367d6ec99e1ef0b5556d283b19bf999dbc34183c48ac83ae9311

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 268e9ed4bdaddabe7b696dc97e8dd744bef61d0a9c8ec0a27a6c559552c7e413
MD5 739fce7f892f6ba9de1ce72a743ded15
BLAKE2b-256 18d35a25d608ef72e018ba01d8c4e8c0993e5912de0c4f71fef4cfa38ce024f4

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 551838b8aa535a7f2f66ee339f0141833d630aee7f4d71a496608dfdb480e159
MD5 4bc609a1d3cc9d97cccaf7c148754de3
BLAKE2b-256 0cefa2c2d9a82c59f3545b9d19bcdfb496485eff0eda9c5df391ff2b218ed186

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8aa2cd06b951939674193b727a01295a9777140b9ac6df7cd361e9ff0dbecdfd
MD5 d32a5a2657694289c6dbd8fbadadb1d2
BLAKE2b-256 5a7896e07e0720d76425d8c12af468341f6324fe6ee6ef7796ef74c1bb37fb0e

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07f353b5c17a8d519e93c964972b425a13c741c9dc5af8622bdbebdc301e5fb6
MD5 0810f419d4b6886fd62c3cf2e2168b84
BLAKE2b-256 ddabdf56aaa73de287f10e5e618b2cf0cf7b6eccf07d6658c0ff8a9f3abc2248

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcbe9c9bdd34132a6da6b5ba3c7aa4feac58d694604b9a662e019597dfbf9268
MD5 36f242765c38c1666d89ad51eb73f5c0
BLAKE2b-256 7c213ba0ef1f75e9302288f571b717f997e32b49171274930ad02ffdfed5daa0

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e11a9ca97581a8149d6706410c2cef3c29de5ea293d19277ca925fed20ad5744
MD5 e3e63c9e4cd0ca98b2a1fdab4546eba1
BLAKE2b-256 b01fdd388a2b8cd6b8b06f724d508dbb36b0685273178b9eb8f913448907981f

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7397f3f1db866fa9a3f503bf2713312b6ad1604fb6d4a2851fe38734b23fcdd3
MD5 4ccd95f2aba1bb47fecb9f247e5de9c2
BLAKE2b-256 d4b592f6246ec9169b6a2b43d92180d3c56609fefa8ff3ca933c160f0528453d

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: levdist-1.0.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 13.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for levdist-1.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 61620f1af52776c592d458c9eea0d96ca02b2db12729cb0545c06d3efd54c0ed
MD5 4823ed2cc7d0cd6e7095b2a0737ee3a7
BLAKE2b-256 6b975664ef8f822882e5073c7a9e1f9303fbfaf315ab1ed3bcd5344c0c4d919f

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: levdist-1.0.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for levdist-1.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 da66b05fb7ded6c5be3d83e04eb6113feb6cf6c4bd82d2acd867d9818162af52
MD5 cf135e594781c9f0fc698ddc94ce71d2
BLAKE2b-256 e6c5887be68171cb99081828e6608bdc83cd574d1a250b41f7e350bc5899ab45

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21beb7a46675bb80979694f6c94cdc0a751d52eeadd7fa13486de2f24498b6b5
MD5 38d0e88a19a35dde282d1c90da282d61
BLAKE2b-256 43afba0c4d50c8540a3c92f6dcfc9b7d77abfb467fb13ff29173197337fc4184

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cb7d15fcfc8ec6270ecab1fa439fe468227bd660fb3cd3347f00daeda3385158
MD5 808f24fd408136c4c08cea765d981aed
BLAKE2b-256 58ab1508284300fc452235b1b4e0aab90d505c8d0218f0bcbbde7941a4e34ba6

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e1e41b41f1f76ea1c72b95d27c8f5dc7e635be77bde4813cfc9f89d637375679
MD5 92d28f11346cc10d72efb21430742d5a
BLAKE2b-256 792325d84cfc458e93c5217800dd0c1c50eb33e7f2807b262638e2098bdd732e

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 456223a59dc6e3b56800c862c278ba99e02b7ad44f948a3e567f87db96ab1253
MD5 900d3a25950becc694c4982ab44e7796
BLAKE2b-256 a366b232242b626fe8331f534a5f052c8b6c84b348b03b6b9dfd6dd5960be24d

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33c3d2b3b203a156bec3f21c3a8231683445a034f27a7b9bc66ec79d74bb7c45
MD5 6f148e16e879d96b8607de7ecdcde252
BLAKE2b-256 a2941e2001d87ca1960bf9975e141f71d7c2ef590312a58bc3277c1a9d798841

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d23e0cf0985a29451971940f85d00b9a70932a8901be12c84eae3e63136db9f
MD5 eee62d26ff1cb3191bd0b884c31ce15f
BLAKE2b-256 4c67dcb47abe5df46aa92b9b985313d13d5f7a024aa1ba2a9f5642a5f30290af

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9566e584c3dd948cdeddd353467b87013633ca6f5df37dc41897657697005a67
MD5 1458d10bb45a212f9157ec49bd0f5665
BLAKE2b-256 20618f7bb9114e338b61356a6a62f8af2dc7890f9aa9a59eedee060269c57a6c

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d1b921c7d242e2fa93908ac316ba6ff9bdea2f38689b0b7382aa54da3c8159d7
MD5 1064aae4f493cdbd4d6dffc129c26b0e
BLAKE2b-256 f30ed6a69635a03e3d9b7bc1c35a17e9aba2605c5dcd93f9b7fc493d320929dd

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea7afb745e459a6c330cdeb23d040c4c2e0b880ae603926797585585382cf297
MD5 ade32ce295ab822e62da43cc8331b85e
BLAKE2b-256 f561da7b52e2dd2a31b219b017310248729ecb27c6b136788591fdbe4ae54a44

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 432b9f808d6c8a42b6f57cb1d232c59eed674e9704d34bc87e084ece9d2df321
MD5 6b4d37e60faf8c5b80d8cbb8e80ef335
BLAKE2b-256 cb1b3869decd418364405cfdd6ba8ce741b763252369dcb5d2f36460a7676dfd

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7669d60df4472f73fcc35eb6dda747e5056c4b40d1ff94447287f866cbfbc04
MD5 30f5214a65bda35bb0d5ec93a1e39b45
BLAKE2b-256 483c131fe133dd61d3f7e938f4e9f5d481c4220deb03fc154c492a705d3ad789

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4d7ff4454328ed0b1b6ee85bf01517e397dbb08d46b4bb5518632e5a82f4a507
MD5 61ee625eaabde493e4eb4c181dce0488
BLAKE2b-256 d695025cfa23d4bbee9ae4eb324112bc8a38eb16620237a7970721c700f4f8e1

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: levdist-1.0.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 13.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for levdist-1.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d3ffd24c50f4454e23946749c5d8f0e4edde7bd22db68bc6bf77c9333bef9504
MD5 02c7655fef9ba46e5fe14878ec08f79e
BLAKE2b-256 fa8ee440f506993d80b8acfa39a569532b116478f8d613cdabaa35b6a0e97fa0

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: levdist-1.0.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for levdist-1.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 102b3cc16943e00a5e464e309fdf0edaef907ff0336bc4210f3308fdf9fd3fcf
MD5 47bac8809f42aacf858398c1fed50120
BLAKE2b-256 f3d02c0e2fd0a0837af7dc06605f11d89a60179f8fe3f8355682232431ae0240

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88c4a1939d1f948b770473b5c2de2067cd9b2d7b837e35bcb559a6031458777d
MD5 99743e749c763e248dbd55190ba587af
BLAKE2b-256 73aa75ce06c2ca3141a01de0ecb46ac28b56012cbb3c40de18cb4de1fd46dd04

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 73c2ea99b5334a5511f57ee10c54d5fa5b91a69475b134aca9d7a3df9343011f
MD5 81850d568c0905906bac501ced17ab55
BLAKE2b-256 9ad790ce2bff7e8e72e484d469c5918776a09e2bc30718207406b7ea7554d54e

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fe4e8daa67798390e0c53105b9a664d663cdc83d614649bbb1a72a2e0c26f188
MD5 02bbda7b89afcd6c21e215d50cc624c0
BLAKE2b-256 c39d7439f457af5dedbe6d35d4a0ad56a12bfb1c079b199fa4eff8b7bb8796e5

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ef076586cbd3e0ea2d1b36e1c160e4177c879da84dbb26fe16cdf64474e4349
MD5 53ee6e7d63b0117ed222ab157853145a
BLAKE2b-256 edcc56679c9e74ba0a51da50d31064a6de8d84488774727dbaa91ec18eb2c0d6

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b8857a3bec72b6e99cecd00d7f4bcd5133442f99af3ab0ce251437cd0b98b50e
MD5 9f0effa98441dadde4e00c538ca1c6ad
BLAKE2b-256 780ea02b2e5605f82115f6f8fea50fe6a122e1ce429a8007defa0d5e21c4fe60

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 400eb55379b5e7ff63c9db70e87d2f219e6d4fd98fb60e36c1062915bba232b6
MD5 13a0777dfe59705faebc33a8979db25c
BLAKE2b-256 821eb1ec7a46df98b088d98aa26630e447514819579911600458fa5eb5ce1ddf

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 38489b8726d323883efa2a765f709b6d6661a3ce3730eda9646584f80347c98c
MD5 2e8812fc67aae8470ab4b11ca719f9cf
BLAKE2b-256 a720f55cfdfc6a01f98899350eb90f42f9608143c7669640b07ecb66b83504a6

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a40e151877eba886bad1ba7182667b7a1a8c16558b4bbb60dcd57983a9bf9320
MD5 c295899a588176622f322477284d51bf
BLAKE2b-256 fe45d4b98ab9f957288e1236f8e6c5bc9332fa4d334622adb1fc9e972714b7f5

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1d6022b1fee8246bfe645e74b51b2cf9f30e84cb2a85a5209ba795155c8e74b
MD5 b2cd3855727b927497afbc4dd5fade5d
BLAKE2b-256 b97bd6c62744434b5b4eb56e835aa5692f32230dd179a9ab6695acacbc5dbbdc

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63e72c66d57dc858501385edd9c1922de87632953dcfac6869feabb139a660d0
MD5 ea45e98376172a0ef974d78967cedea0
BLAKE2b-256 faf2c30758204a8f2ef8f13e7628de11eaffd19770639edfc2f61a578019a5ce

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c6c628319dd3f8a25ba3c76173968abde79f8982289ef8b538a3dd976e46f2c
MD5 67c15ec612ddb62db7ddf33444d668c1
BLAKE2b-256 a83b0d14e82df19fe5d63b2b789de27128a1b78d6bf8e9ead823cb41e7ec3ca2

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea6d89da1006077fe56e2747c1e5b9a86644314cc64895678264f9ca5ff78dc5
MD5 57ff8c39b0c7dabf388206a5667b4d3f
BLAKE2b-256 e51ebc06c4062d002e36ec3566fccbd5eba38608f1f2909f2c53a347bfb896ce

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: levdist-1.0.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 13.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for levdist-1.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eb21556646ea1361179094a8487588fffe44fcd37d27363493b1449ffce2fe05
MD5 cf1815242d24c23401f6b161c362c532
BLAKE2b-256 da27aac5bac5a4f834ebad2e8efd11f8d91cbb74bd9db014c58f5fabc553a46a

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: levdist-1.0.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for levdist-1.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fa5dc3a271b9d0791360058265a3f37dae22a56af457a710e4fa74aadd02589a
MD5 a7d80fcdfd883377082aec4c5c94264b
BLAKE2b-256 b39501c1db1bd5c5d5c148ecc966fedf5aa9641538be932f4d931a17ea839094

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 648567aa82e78d175b963e9168e25755a7b7515092f427a568240c3c10fee642
MD5 6978d328a2931bb3b8d591173e828adb
BLAKE2b-256 519c7563bf73f9699755ceaf9efbfec89e8e0fdc65c2457d3109c52428fb7392

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4f6e6f3b8f13d2aebb7fe00f4fd3bbb3cea9a3713d8dc82ec847fdd7c53726a3
MD5 a4bcfbe152ee7f5192e63d4ba422a908
BLAKE2b-256 9149d40f62887ed8f3b04dc85f0163605444787cd806e9dbba71f2ba5e9646e7

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c6a412ce9f2d6b3551e9a2715bc3e231fa82a22954b08819a37f310d743a495c
MD5 5b4afec13e59924eb15b8b5eff50e244
BLAKE2b-256 be215ef7232a31c4130052b4965cec692b63b35942f45b52e694ef179f88d7cb

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 edec510cc8a252f99ce1861e0c5cc8be39c4b90e9c3e672c23d79904ed96d53a
MD5 9010240b3118ffb8c8a8408bf627beab
BLAKE2b-256 bb16199aaac8c13252c7f240cdc1e22a3f6eaeec1fcbac0a2ea511bf9d3359bf

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae04a62784b122f7ef9442bf72ec0ad7f97e7b9d404a8401f7047132fe3ff768
MD5 ddf157b231d006bc63b11d93a63d93a8
BLAKE2b-256 4322e077fc23954369e32169efdfe47fed2a14f32bb4380d3001ab6f2ca42e0b

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e4c7539a54a74c0de872ddaba34276f572683625da1642225df52f19810d0b3
MD5 117042207809651f58cbc4f5a3851474
BLAKE2b-256 ed2befc35f495a077220f07c1a96aa856a238be71104feb0987b09f2f15bc9a5

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 907e2d686f01b034ed047c9e0b3e846e9eceebd8889c5b0894cab9bebcefcbc9
MD5 dc793a94fa9a57dffb95086a537998f7
BLAKE2b-256 78bfc9f57e82acbe14953dd780b1f2ee43df213557d2b2c7ee98865889f0ed90

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d4541af9ca55eeff90e792c9a81364c5ee575b930a936b4e75749dc17f1c07b
MD5 7d39f4ea4519e43be4548b1b5ff0eb3e
BLAKE2b-256 d82284331ec6ce04765df6ca101725712251fd5523f5204dc9ef995d362eaf3e

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5ccf8bded0b6091a495b40170764d4edb1113a2e704aa337986935fb22a3a558
MD5 a9e646f2763f016210bf843ea3992aed
BLAKE2b-256 8b065808b21792d091a7430d59d66749a474e5786da2f2f67bfe352557760a91

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4aaac9a3371e229d5cd92ac858ab0351074ccef3df74b44b846179a118b51cc
MD5 94774f33f546cb7237c8243e799a4736
BLAKE2b-256 63bc73990399ae246c0d8a62481e31e6675361ff75fd9fe5a939cce641b40ca7

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb03940f606f5ad5aa2c92715ca86b662e4a2100adcf2fd66db9988fc246858c
MD5 695a4c3dd4ed643b732e8f1ba215570d
BLAKE2b-256 eb5a64b1c4ea4bcbc3f06132a5ef177925ca10831e802eedf892c1319cee720d

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dde77196aee2ccf670bc73cd1c42e0fa08b20c1cc3928ed4f91eb16f9764115e
MD5 84550462a681167ff0135bbbbd637253
BLAKE2b-256 0a7ad81685edd4aa5b6e88876276995b578cea435bc5ebadbf375d851b5e627b

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: levdist-1.0.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 13.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for levdist-1.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4b676c82707389e281fc661cb18a08179137dabd0f06e0b1ec7997323c62e6aa
MD5 d6c5da404a6d56f03e1a48be92c1e377
BLAKE2b-256 05bdb77ed4522c00283a11b16c8c211ef9bd355c4f7dc8082e516d2e0787158a

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: levdist-1.0.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for levdist-1.0.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6d8a41bf8c1ab68fcb339f07de069ecb893fbdd0948fb29e0aec45668c39069c
MD5 4ac44c8cb2713885e2e429b9bcd7d500
BLAKE2b-256 e1a2a89fcae8b9974fdec2a245409e7cf213e09183fcb1938adb12aaf9afb35d

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca06be61d719021654c79266ff8eb0fdaa9b14b2317b214c5769741ad89682ca
MD5 82bd3abaf5df4a7150c4865a88e6db72
BLAKE2b-256 bae90944e4dbd75448ae2d6899b12a5731974393e415a3eec551164fda5588ff

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b85c0c3280f2874c5cc64dcd08e58e83ba524c480c985c6af001e351e1875bd3
MD5 c9b2196c5e36fe65093b5c42e437b373
BLAKE2b-256 27dacf389291d822e96118e3e2ed54efff04e80668699166077d620584e97680

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 244cb403cf8eaff6225bc6bcc94bacec8ecd70ad82934fa7dae3bbdeb3f098d0
MD5 1eddeadb0c2852701e1422da0d6bf5a9
BLAKE2b-256 f28da3706c082672d4b6f768cc68d60e1f5f0d648d0bfabd6fd34d31bc6adb6f

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c85818ddfd19da65b803bd5ace761b9636e98a4aebe696df95d16cb33bf2e8b7
MD5 554a9575615566310288d9972ca92960
BLAKE2b-256 fa80408ccd39648b6f0c325738c25027513713497488f41f6bedb307c15b1a42

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d93b14152e2b422aa8de68e69e58c401282167e99acf909f25339a0effc5031e
MD5 acf687f8b8d468c5917c9b797f7aaf50
BLAKE2b-256 123fb1ba649527111eeb7162a07c81b2a0a6c68e952cb9efe19de13314d6aa2e

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e5dde332c748d4e6f009b4ec4c32f2f29df0c722ab6b33eab4c261e938b2ca4
MD5 80986a43dba1ea521069f836dba8094e
BLAKE2b-256 c3f922652aeababd42abd829cf695574e75fc8977026b2daba0017851c16417d

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a9cbf60d127af8fc1e7f651f06f1b87a4d881b5543505bb7fead52f19001dea
MD5 718140ac1afc8a6763a001677b865cda
BLAKE2b-256 7ef06b504a186c23400f191c105c90efeefc2aff737f43b19c64ce7f3bad0ddd

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f89c5a1f3acd1bc2dd05bdafef6aab6f4c056b1aa6f8e8d2c630aef2f06a1f4
MD5 dd525623fcd5d29169ee3eeb95198078
BLAKE2b-256 16beb0c9b0151bfb91b8239833c4783fa403e7bc849643e3ceb96c370314fdbb

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae4fa9411a34438152e3e26d3facc5c7f86dc515973679f796fa902d5c8d3060
MD5 980c6a42dea8e5752d1511fec94f2043
BLAKE2b-256 19dfa1acc3909dc29db0e1f1982d8e45ef50a8545347c7cb8fe7b1c5dfb94fb3

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f224c72dc1a8583845ea91eb606fc1649e698c5d3a8ca2afe6a96bb3ee5f054e
MD5 3242cec94d599c38f5fce8ba63de059b
BLAKE2b-256 ebcccd27010fc45fe49655a6d12fc0ab59fb0b412a93d2112b92c693103e2ea1

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d3506a05b132519776a40f70b29324d454edff23b4bc203a4e8c701d0fb1384
MD5 505c8927290c19ca5d010f518484d42d
BLAKE2b-256 6cb92421b8c04a937f04916a0b1265097aa86c89980b74da8e2f339e3738bcfa

See more details on using hashes here.

File details

Details for the file levdist-1.0.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for levdist-1.0.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dfd3e69114be35a559970ed9137c748a609d1b62efaef348e18fa278c8b2be9e
MD5 3b8fb4f2fc7968426d366f9620a2daf0
BLAKE2b-256 ea320aa481e3d572638eb1641db4361b608a9b9e8aade6eabf57c408617b1bd6

See more details on using hashes here.

Supported by

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