Skip to main content

library for fast approximate string matching using Jaro and Jaro-Winkler similarity

Project description

JaroWinkler

Continous Integration PyPI package version Python versions
GitHub license

JaroWinkler is a library to calculate the Jaro and Jaro-Winkler similarity. It is easy to use, is far more performant than all alternatives and is designed to integrate seemingless with RapidFuzz.

:zap: Quickstart

>>> from jarowinkler import *

>>> jaro_similarity("Johnathan", "Jonathan")
0.8796296296296297

>>> jarowinkler_similarity("Johnathan", "Jonathan")
0.9037037037037037

🚀 Benchmarks

The implementation is based on a novel approach to calculate the Jaro-Winkler similarity using bitparallelism. This is significantly faster than the original approach used in other libraries. The following benchmark shows the performance difference to jellyfish and python-Levenshtein.

Benchmark JaroWinkler

⚙️ Installation

You can install this library from PyPI with pip:

pip install jarowinkler

JaroWinkler provides binary wheels for all common platforms.

Source builds

For a source build (for example from a SDist packaged) you only require a C++14 compatible compiler. You can install directly from GitHub if you would like.

pip install git+https://github.com/maxbachmann/JaroWinkler.git@main

📖 Usage

Any algorithms in JaroWinkler can not only be used with strings, but with any arbitary sequences of hashable objects:

from jarowinkler import jarowinkler_similarity


jarowinkler_similarity("this is an example".split(), ["this", "is", "a", "example"])
# 0.8666666666666667

So as long as two objects have the same hash they are treated as similar. You can provide a __hash__ method for your own object instances.

class MyObject:
    def __init__(self, hash):
        self.hash = hash

    def __hash__(self):
        return self.hash

jarowinkler_similarity([MyObject(1), MyObject(2)], [MyObject(1), MyObject(2), MyObject(3)])
# 0.9111111111111111

All algorithms provide a score_cutoff parameter. This parameter can be used to filter out bad matches. Internally this allows JaroWinkler to select faster implementations in some places:

jaro_similarity("Johnathan", "Jonathan", score_cutoff=0.9)
# 0.0

jaro_similarity("Johnathan", "Jonathan", score_cutoff=0.85)
# 0.8796296296296297

JaroWinkler can be used with RapidFuzz, which provides multiple methods to compute string metrics on collections of inputs. JaroWinkler implements the RapidFuzz C-API which allows RapidFuzz to call the functions without any of the usual overhead of python, which makes this even faster.

from rapidfuzz import process

process.cdist(["Johnathan", "Jonathan"], ["Johnathan", "Jonathan"], scorer=jarowinkler_similarity)
array([[1.       , 0.9037037],
       [0.9037037, 1.       ]], dtype=float32)

👍 Contributing

PRs are welcome!

  • Found a bug? Report it in form of an issue or even better fix it!
  • Can make something faster? Great! Just avoid external dependencies and remember that existing functionality should still work.
  • Something else that do you think is good? Do it! Just make sure that CI passes and everything from the README is still applicable (interface, features, and so on).
  • Have no time to code? Tell your friends and subscribers about JaroWinkler. More users, more contributions, more amazing features.

Thank you :heart:

⚠️ License

Copyright 2021 - present maxbachmann. JaroWinkler is free and open-source software licensed under the MIT License.

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

jarowinkler-1.2.1.tar.gz (85.7 kB view details)

Uploaded Source

Built Distributions

jarowinkler-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (92.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

jarowinkler-1.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (89.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

jarowinkler-1.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (118.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

jarowinkler-1.2.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (63.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

jarowinkler-1.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (92.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

jarowinkler-1.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (89.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

jarowinkler-1.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (118.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

jarowinkler-1.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (64.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

jarowinkler-1.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (92.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

jarowinkler-1.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (89.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

jarowinkler-1.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (118.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

jarowinkler-1.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (64.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

jarowinkler-1.2.1-cp311-cp311-win_amd64.whl (62.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

jarowinkler-1.2.1-cp311-cp311-win32.whl (68.0 kB view details)

Uploaded CPython 3.11 Windows x86

jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl (631.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_s390x.whl (688.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_ppc64le.whl (671.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_i686.whl (718.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl (613.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

jarowinkler-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (106.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

jarowinkler-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (104.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

jarowinkler-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (115.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

jarowinkler-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

jarowinkler-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (135.7 kB view details)

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

jarowinkler-1.2.1-cp311-cp311-macosx_11_0_arm64.whl (58.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

jarowinkler-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl (72.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

jarowinkler-1.2.1-cp311-cp311-macosx_10_9_universal2.whl (124.8 kB view details)

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

jarowinkler-1.2.1-cp310-cp310-win_amd64.whl (61.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

jarowinkler-1.2.1-cp310-cp310-win32.whl (67.6 kB view details)

Uploaded CPython 3.10 Windows x86

jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl (630.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_s390x.whl (685.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_ppc64le.whl (669.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_i686.whl (717.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl (613.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

jarowinkler-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

jarowinkler-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (104.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

jarowinkler-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (115.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

jarowinkler-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

jarowinkler-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (134.7 kB view details)

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

jarowinkler-1.2.1-cp310-cp310-macosx_11_0_arm64.whl (57.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

jarowinkler-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl (71.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

jarowinkler-1.2.1-cp310-cp310-macosx_10_9_universal2.whl (122.2 kB view details)

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

jarowinkler-1.2.1-cp39-cp39-win_amd64.whl (61.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

jarowinkler-1.2.1-cp39-cp39-win32.whl (67.9 kB view details)

Uploaded CPython 3.9 Windows x86

jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl (630.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_s390x.whl (687.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_ppc64le.whl (670.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_i686.whl (718.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl (613.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

jarowinkler-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

jarowinkler-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (105.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

jarowinkler-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (114.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

jarowinkler-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

jarowinkler-1.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (134.9 kB view details)

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

jarowinkler-1.2.1-cp39-cp39-macosx_11_0_arm64.whl (58.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

jarowinkler-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl (72.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

jarowinkler-1.2.1-cp39-cp39-macosx_10_9_universal2.whl (123.6 kB view details)

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

jarowinkler-1.2.1-cp38-cp38-win_amd64.whl (61.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

jarowinkler-1.2.1-cp38-cp38-win32.whl (68.0 kB view details)

Uploaded CPython 3.8 Windows x86

jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_x86_64.whl (630.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_s390x.whl (687.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_ppc64le.whl (670.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_i686.whl (717.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_aarch64.whl (613.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

jarowinkler-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

jarowinkler-1.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (103.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

jarowinkler-1.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (115.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

jarowinkler-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

jarowinkler-1.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (135.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

jarowinkler-1.2.1-cp38-cp38-macosx_11_0_arm64.whl (58.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

jarowinkler-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl (71.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

jarowinkler-1.2.1-cp38-cp38-macosx_10_9_universal2.whl (123.4 kB view details)

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

jarowinkler-1.2.1-cp37-cp37m-win_amd64.whl (62.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

jarowinkler-1.2.1-cp37-cp37m-win32.whl (68.1 kB view details)

Uploaded CPython 3.7m Windows x86

jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl (630.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_s390x.whl (688.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_ppc64le.whl (669.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_i686.whl (717.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl (613.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

jarowinkler-1.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (104.9 kB view details)

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

jarowinkler-1.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (104.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

jarowinkler-1.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (112.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

jarowinkler-1.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

jarowinkler-1.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (135.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

jarowinkler-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl (72.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

jarowinkler-1.2.1-cp36-cp36m-win_amd64.whl (60.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

jarowinkler-1.2.1-cp36-cp36m-win32.whl (66.6 kB view details)

Uploaded CPython 3.6m Windows x86

jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl (626.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_s390x.whl (685.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_ppc64le.whl (665.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_i686.whl (715.2 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_aarch64.whl (609.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

jarowinkler-1.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (101.6 kB view details)

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

jarowinkler-1.2.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (100.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

jarowinkler-1.2.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (109.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

jarowinkler-1.2.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (96.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

jarowinkler-1.2.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (133.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

jarowinkler-1.2.1-cp36-cp36m-macosx_10_9_x86_64.whl (69.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file jarowinkler-1.2.1.tar.gz.

File metadata

  • Download URL: jarowinkler-1.2.1.tar.gz
  • Upload date:
  • Size: 85.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for jarowinkler-1.2.1.tar.gz
Algorithm Hash digest
SHA256 206364a885ce296f7f79c669734317f2741f6bbd964907e49e3b9ea0e9de5029
MD5 8dc4a945e20d94f97bdd7fdd6b529e00
BLAKE2b-256 68f906c40775785b7f427b327cf0f6faaa7cce3b1b33ff52d280fd59663b3cbd

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f571a597ce417cb0fd3647f1adbb69b5793d449b098410eb249de7994c107f88
MD5 2c1c36619df2a0ea47b2b17d52a83e22
BLAKE2b-256 1c345fab0449e86ca4564cbd2bc56c0b4b6db7bcebfcccd31ec19f6196b22aa3

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b106de1e1122ebb1663720474be6fcdceffbdf6c2509e3c50d19401f73fe7d3
MD5 5b38404b540fda3199e1ba70b67acb83
BLAKE2b-256 f59f13e8204f332017329fe912b8ff5bf5a7d22a1fe278fc3b8f4de58eb7a561

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9511fbbd8a3f6cb979cb35c637e43759607c7102f836aae755e4c2f29c033bac
MD5 af4cd7bb947e6fbfe3c02345e3157473
BLAKE2b-256 b9511d6439648d04ffeebfb26846362b26d691097a0c877bbba19c760a82a049

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 926d9174c651b552193239557ff1da0044720d12dc2ad6fb754be29a46926ebb
MD5 252dbdc2405ddcc8ac624aa665ef7d1d
BLAKE2b-256 25588b60c33def0dad7e6845228caa2f4ba23fd483e83c117f56fa0094d2c010

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7049ef0ab6676837b200c7170492bae58d2780647c847f840615c72ae6ae8f8b
MD5 3200337da959e2e5114f364e39a616d1
BLAKE2b-256 f8b47103ecc062832aeaed8121bffc9ca68c21fdc3fd8aeee2ae8020dfde2c72

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56f24f5778b2f5837459739573c3294b79f274f526ff1406fdb2160e81371db2
MD5 71ac984ba76706aa65f1cb7ad66787da
BLAKE2b-256 0225e1c7d6eed128175c28e2085ddaa949580f221aaae8f0287d01ffce0e0f75

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92196b5238ac9063c91d8221dc38cb3a1c22c68b11e547b52ddaa120cd9a93d9
MD5 74e76455ca4319afecc59c45e0be48b9
BLAKE2b-256 dcde389338702786dffe747cebd586c38fe4f297dafd609cc6af9d17673129ca

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dbd784c599e6cb36b0f072ad5502ee98d256cee73d23adc6fa7c5c30d2c614f4
MD5 d52a34af6d467cad2305ffdc1c06fd3f
BLAKE2b-256 bcc994bf0a5e3446c0043b92810f0434b836cebee293fe5dea2e66051f726d68

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f95cc000493db9aacdad56b7890964517a60c8cb275d546524b9669e32922c49
MD5 e667099ade462487b2f0d41caf5014f7
BLAKE2b-256 358b9507839729cad97ad79bee0e43797ce24401f8528cfe19d1f1e6b1ddc2a4

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 787a2c382e774c0d97a5ebc84c8051e72d82208ae124c8fc07dec09e3e69e885
MD5 9b7c8f537e5e3887969706ac5fcd11c1
BLAKE2b-256 405399fcea7787a81f45aaafc5c9b9d986e9ffba21eb76dfbd36e4cba86b17cb

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e90dabfc948838412082e308c37408d36948bb51844f97d3fc2698eaa0d7441e
MD5 d650110797bd65d47e272eb3837d7d6a
BLAKE2b-256 b382a76ee07fae089ad1e36c564eda37531a8f064bdc733edd54934743d01e26

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d61b40b466c258386949329b40d97b2554f3cd4934756bf3931104da1d888236
MD5 658f3fd193e0272f8f037e1b8d2d45f6
BLAKE2b-256 f116914c98b487a69f7d6d69d6cdaec2f1bd261def424f28dc30a317e2fb162e

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6cc53c9c2bda481d2184221d13121847b26271a90e2522c96169de7e3b00d704
MD5 75557afa08b6550ce03a43bd79160926
BLAKE2b-256 8dac3aba2b51f26fa4725e44289292eab6473f05067f8ae948f033c3e7dedeba

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: jarowinkler-1.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 68.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 892e7825acae0d4cd21b811e1996d976574e5e209785f644e5830ac4f86b12d7
MD5 6b361bafccb1e11b02012dfa88160cad
BLAKE2b-256 67613365ea4f40a4aa78bdc5a3f5fe2f6d8366f1165928b20393068061bdf3c7

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fefb9f8a51bbd3704a9b0fa9ca3a01a66b322e82ac75093bda56a7e108a97801
MD5 beac10a61b3a878d63d696892765e511
BLAKE2b-256 7065a12232260de093e9ee56e74493ed4148e09cbd0ae961e25b5df0bc06de07

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 afbe29453712afe00bee3bb21f36fef7852129584c05039df40086cdfed9b95e
MD5 df9b8f570f783cadfc37b0147d173ddd
BLAKE2b-256 12a9fb53fc00f348b68e87c0fe2832c0b30434f99718a3b2d1a12cdd2bc5a599

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 60f6c9889432382fc6ecaae3f29e59ec560152bd1d1246eaca6b8d63c5029cd5
MD5 567560341f0a4c2092052bd18d6eacaa
BLAKE2b-256 5f7462c8123ec5d8a26efd328e11f83ca6e7642eb4ed7050e5e2a60d88e7dbf9

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5037674a5b41aa22d7a9e1ad53e4560f2441c5584b514e333476db457e5644dc
MD5 170653ff0964be2a6773a25f465d2c56
BLAKE2b-256 fc6c8fa5d0ccb045e02d7dbb23b11ba59019bf83d9c307dc83aa5505a6ba0a1e

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 de0b323a34205326351e5ab9ec103294365285b587e3dafe7361f78f735eaf02
MD5 0106d0034bfac383610bee28c735ed9b
BLAKE2b-256 5d7eb0cbb3e6d0994b58483d18b93d363c59824684602b537b3d8fa7ae866d3a

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0895225e4b3fcc1786c7298616f368b0e479cc9f7087ced7a9b2042808fe855
MD5 87f978fec2c10090366bca0c61c6f2b9
BLAKE2b-256 621a067cbaab42f70b998c75745c390484f51bf69960a07cbe698b5d225b9261

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e242e7c2d65865cf81e98d35ce0d51f165e1739bcd1fffa450beb55ddea2aaa
MD5 2fdbcf98e3bf7f74de89e9ac7f268d9e
BLAKE2b-256 fd922e77fd53f439c6ec27df72f3b184f35cedcc828c8ba62a5cbbcf08c09943

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25a7fd1c00beb08f023c28fa8e6c27939daac4ae5d700b875dd0f2c6e352fdb7
MD5 7ca104498a7eaa569a6fa32258d69a7e
BLAKE2b-256 dc072610783c42a710a45069f0dfda7cc5c210867f2a80c7b323e2c72e94ebdf

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a79bed41cdc671881d04ce1250498a8c5b1444761920a2cb569a09c07d39403d
MD5 474dffe830c903506b30a6e7a31598eb
BLAKE2b-256 398cf172038e80d699899ccb3c1179d912382d14d7b616533cdf6496a254e3bb

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0a84aac689fd95b45865122a36843f18aa0a58664c44558ea809060b200b1cf1
MD5 0e70722d1231e1ffd6a0b674bf5fc033
BLAKE2b-256 5ce4dadfac0e07d57eb173634db2dd892bca1160da0d245e14cf57115290a8db

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 687d4af42b2fb0450ab0e4cc094ef33e5c42b5f77596b1bd40d4ecb2a18cf99f
MD5 ba031f7143e79be77486bf3fbe801b9b
BLAKE2b-256 7188f8c668dc693c409c0621db78855d3b7f8f7beb93e757b5bd548bb9eb086e

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d48b85ccdb4885b1f7c5ff14ac0a179e1e8d13fa7e2380557bc8cfa570f94750
MD5 4be63c3519d8ef793776fdfdc957b083
BLAKE2b-256 62dbaab18aeb5621ed9c279f905ed8f93364c8c7f7edf17eb4979d299e12c2c5

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2e265c6a3c87872a4badd72d7e2beb4ef968b9d04f024f4ce3e6e4e048f767e1
MD5 6f410d195893886e90ed3903ed26759d
BLAKE2b-256 8b8b780cba0f4bc2f75475d931874c06478ed9c6f3e551bdabc5fae11738992b

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 193bc642d46cfade301f5c7684b4254035f3a870e8f608f7a46a4c4d66cc625a
MD5 64788de557ba22cd9a4b0597b94c6041
BLAKE2b-256 9da1caac17121a5e5c6c988700d209fc157f3cbd9b28ffccfc0923b34997b52e

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: jarowinkler-1.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 67.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a06e89556baecd2fdcd77ea2f044acca4ffbfcf7f28d42dc9bffd1dc96fca8a8
MD5 23ee003fcc0b88d5673f8bea8c2da104
BLAKE2b-256 6418535ce61e885df9553680d9918e595b54f44cd611940cd2e71977d85c24f3

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8761c045f1310e682d2f32e17f5054ed7663289c90d63d9fb82af8c233ed1c95
MD5 042387192adbef5405cbcfa798ecf5c5
BLAKE2b-256 0582638155c85ce6d5c9204acc84336f94d07d1590dc9eda7826b5e25c209efb

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4a40c702154034815cd4b74f5c22b90c9741e562afb24592e1f3674b8cd661d1
MD5 e2e155f6b70513445826e2ab872b3a60
BLAKE2b-256 450b34f081c920f19e6ed57cb1d8febb1e6c364f732492c1a2836f32309e2297

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 dfe72578d3f1c8e0da15685d0e3b75361866dda77fcee411b8402ec794a82cbf
MD5 d647c48c8387bd6de97c515092045913
BLAKE2b-256 0ec3aa9f8eccbfda9436f228811c6009c7dd537ce41e6aaa45b76d26e7a166a5

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 df33e200e5ea7ce1d2c2253582f5aaccd5fcbb18b9f8c9e67bce000277cceb5f
MD5 990b8d792993375ae2d53f68a418a8c2
BLAKE2b-256 07bc7ea5c962f954ca061992b4d99b9476a1c82721fe622b865e19100940014e

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 88e74b1fdbb4251d1ce42b0fd411f540d3da51a04d0b0440f77ddc6b613e4042
MD5 bc6ccad26273a90a6d0b1b2412792e33
BLAKE2b-256 982c7e8613f3c48ddab8d0f0470166f0f6fa6321dea5a1a3cb0625d202fad0e8

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3873cae784f744dab3c592aecacab8c584c3a5156dc402528b07372449559ae5
MD5 d4cd6af15924febee80df32cd84004c7
BLAKE2b-256 751cce7f38827122cafa7091fd0d3f0039a969b94b56f11518757f2cf0a11fd7

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b440840e67574b4b069c0f298ebd02c1a4fe703b90863e044688d0cad01be636
MD5 dcff54f47e9f696e6fc00af432e95f05
BLAKE2b-256 dc2db76acd38e29c80a9e324a8be1d1c862d13220a0aa11f0247242cd9b6fed8

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7315dcbfeb73130b9343513cf147c1fc50bfae0988c2b03128fb424b84d3866
MD5 5858a9000c66aa22be09001f6707ff88
BLAKE2b-256 8f18c92c125f0e2924bd40aa0ee3bf8820b04721d93bfd3178edde74dc48e8d2

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41b8c9eae4662fc96c71d9192ba6d30f43433ff4fd20398920c276245fe414ce
MD5 3a077afd57b9f3e14f3093ca6e0790d8
BLAKE2b-256 54e9a03156862347d14b521dcf65820a5d1c3fe71f320e2874854f2a90d70646

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1859480ae1140e06e3c99886623711b0bbede53754201cad92e6c087e6f42123
MD5 7cdca628500c4e98731679c7ccd8a534
BLAKE2b-256 f3f75615fb431683380a6a4086e50b453da0282590146e3d0449a57207d06032

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94fd891230a08f8b285c78c1799b1e4c44587746cb761e1914873fc2922c8e42
MD5 9c8b3ddefeffb9b983383e23ba2a8a2a
BLAKE2b-256 d5110e62779cac91e4031cce669b310e15c4509203cd2023fa9b8ce1c1aa65db

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d32c821e3aef70686c0726fad936adedf39f5f2985a2b9f525fe2da784f39490
MD5 e97a2cd09d3748d4c6a99c4589390c76
BLAKE2b-256 7b692d62516a75460f9910f906d663f64e1220d4e50a08340f257441d6c4efa7

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e006017c2ab73533f96202bdeed7e510738a0ef7585f18cb2ab4122b15e8467e
MD5 2bea8d2a0610a5b7f95062e06e744f83
BLAKE2b-256 942136ff4dd8a8253d9cca26cab7f7784b106f917f8ef5ed7c2d184d4ce62793

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 438ff34e4cf801562e87fdf0319d6deeb839aaaf4e4e1a7e300e28f365f52cd1
MD5 a39db37969ac418cbfeb476c85defb8a
BLAKE2b-256 9bfb45500bac86d9a3bb0a668f94e9409a7e24ae73fe1df27919a33c11b0f575

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: jarowinkler-1.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 67.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e61bf2306727e5152f9c67a62c02ef09039181dc0b9611c81266ae46ba695d63
MD5 b05abb80b5e9c00618009472bee9e1a3
BLAKE2b-256 d516721e1e6d1c84c533600b416211f4a782e1fc3d49d3fcabee73ec36a7d37b

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a0936d5d98ed56a157b81d36209c562a0e6d3995244ee3117859b5f64be9c653
MD5 54293d93edd27ad9ad5e56a03bf7f82a
BLAKE2b-256 9f720656dbae555320ba10488fa1e6e8287faec2670d4ac5a4c8a57ab9410df6

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 46307dd8b0026f8062ff31fccd676dafd63f75f2bca4a29110b7b17bdf12d2c6
MD5 9049a0262cd91b71ffff8e4d6ffa3d49
BLAKE2b-256 c1ec369956af912ee986671c6f6b46e7f8c6794bc569a1b138e48b7dfff58c58

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 bf7c3f413c03320d452fb5c00d26177a1c3472c489e4c28f6d10c031a307f325
MD5 b0623c60239d09f8eb50ea883c6bbd66
BLAKE2b-256 95ebf5abc72f840a064e039342cf058a6372727d2efe3cbbc55a7e1a0495bb0b

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 116a5e8d8113b026f5c79a446c996282c70e6b1d2a9cc6fa335193a0a5d4fb11
MD5 3d83a0b370ff8379cdd1d0b253249c9b
BLAKE2b-256 0e7e095b73ac06a660cde7f4c02bff46fd82dbc5f7dca970e1821590b4ad133a

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 68efe1acfc3e920fc055c15dc139a8bb69ae0c292541a0985ab6df819133e80a
MD5 b1153c3a7f28a6448ee5f68b6b2987fc
BLAKE2b-256 c0b8b2c89dd7dde0da2c77d14e62f5028c32f517b37f716d46a6693d0e0f4274

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 667351b515d4678ceb0e5f596febd38c446c6bc64de1545b2868cd739f4389da
MD5 89aaa84cd6e3b8e9b1b56f31ccde03cd
BLAKE2b-256 f023c8a13b2d03954dd0424565f8d43e1b9af174a9f6e947597785b21335cef3

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84d5672a235c9b0fcdaf4236db78a7ec76384dee43e875016eb60d6365de72f4
MD5 46dd84b54b701d516d94d05fec4662c3
BLAKE2b-256 46fd905cf4836c9224a65729556f1be8ae42658910c31cb07899bc0d3fbdbd89

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27068fb2073a5dcb265411dd7c9beb2bf7fca5c5e1fb4de35eb2562bd89a6462
MD5 cec73dc127256b61f6717427289d83d5
BLAKE2b-256 a7f4a7f0f3a1de6ac3dfb7987089ef5dece647c51c0e2e9ae90ce0a6868bd01c

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04a451348e72b1703902faae9456e53aff25d9428a674d61d9d42a12780da7ae
MD5 4e8ccac121d77806379074d27bb9dd6c
BLAKE2b-256 3a0389c43860634785c6d3cdcbc01fd6c37a6359f4e8682bcd43880dd6db1601

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32eefc177aa6ca6f3aeb660b1923dd82527686f7a522e0267c877a511361bb25
MD5 c97606d98bf71553ef47dfa41c026f72
BLAKE2b-256 e42b0a3cca98424e5ebdec9a46871a73ca06a947660ecd4eb450377d3d473296

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc9b4a802cc69f8aeceed871e4caf1ae305ff0f2d55825d47117f367271d9111
MD5 f14997dae4e3e878c079b66a66df1c11
BLAKE2b-256 56cf16ad17dd8760f9996256225f2ed8d294e983a57f2cff9b28d34379f992cf

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d259319d4e37539166a4080ce8ca64b2d9c5c54cd5c2d8136fcaf777186c5c71
MD5 7b12f24c8f08209d5c742b105d01ee80
BLAKE2b-256 858448135ac241f3c5c19ac9d6f414dc56bf57e6b37ffdce7f74bd46bd67eafe

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 78f946d11aeb92aea59e2dea380fc59d54dd22339f3fa79093b71c466057ecca
MD5 22d58956616819d8e303032ac54a9d03
BLAKE2b-256 0b9a9fb4e1aad85556625459d28e82add7c8ca9a866846f8693a7ea9d14c633e

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9243e428655b956fa564708f037dffb28bc97dd699001c794344281774f3dfda
MD5 b80dbe7b508c0e29b0cb4a910068fba6
BLAKE2b-256 ebed53d435ddf1060f638753255192e9698a0a3faae2255502733559cc976e99

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: jarowinkler-1.2.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 68.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dcfbdb72dcfe2a7a8439243f2c5dccf85be7bd81c65ba9f7ecd73a78aef4ad28
MD5 369384bcbd63da6ec98069acc7df3012
BLAKE2b-256 864763c3c7f4f24e48d029fb9e85e8ef4e67c826401e9d2c00b65cbecdc3ea7f

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6f3213a9878c7f3c0e2a807275d38a9d9848a193dcb5ada748863a7a18a335f9
MD5 b74f677a6ac1c68e215fe7baf0cc625c
BLAKE2b-256 cc2806d897f50b0a6acc8ae416ddff865c538b79d4c54b6fbc876554f1227474

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 9f76759af8d383b18466b90c0661e54eed41ff5d405ce437000147ba7e4e4d07
MD5 6a3465c52ccee511f4aba36aeee60db7
BLAKE2b-256 efbb5759e043ecd3245a51bebc6d8855defbd4763a33defc5a249d63dbab79f6

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e0b822891ef854cf00c4df6269ddf04928d8f65c8741a8766839964cd8732c48
MD5 1a34feedcf900f611e380536c661b1f1
BLAKE2b-256 c78e1b1c7d76476057214092b3f9686f85f98f7e588e4a2e51e08bb983bf8745

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fce17899e967489ba4b932dc53b7c408454c3e3873eab92c126a98ddb20cc246
MD5 342457e44963d844cddf35a0d58568e1
BLAKE2b-256 e117ed333596bdbe15ded6bc9783f44da07967277ee0705f29541a5cf6e0e27d

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5b9747dab72c7c6a25e98a68ca7e3ba3a9f3a3de574dc635c92fa4551bd58505
MD5 1a2fc495f423adf0c31ada090e62c707
BLAKE2b-256 fa3c9e839f97c4bd5b4e2679a2d78f8fee7ce18a6c7988f98b167c765802b0fd

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ab4e24cbb27f4602e4b809397ee12138583132a0d3e80a92de1a5f150c9ca58
MD5 e7e747760e677eb64060534b1914d391
BLAKE2b-256 26c4b73c3944fc76424b7edfd08188f341adbf4caf84a71b10a797e8ee46a78e

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46b2106b56329699c2f775b65747940aaafd077dac124aae7864de4dcd7a79dd
MD5 dac1d9fae9ece21b8adf3c78484f4df4
BLAKE2b-256 79f93adf8ee054c8334e50279e6d0a438282be8499b4bbad7d3f284389926d80

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 245225d69ea54a4f3875c243a4448da235f31de2c8280fad597732815d22cc4b
MD5 dd84fa7748cbcc8745d5c8a80f129564
BLAKE2b-256 390caaafffd184e00d51eec03abcded6b7374f000e171bae5e915f142f8555e8

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41fad5783c09352a0bc1a0290fdbfd08d7301a6cf7c933c9b8b6fc0d07332aae
MD5 468080033a494d864662b2adb713a4b7
BLAKE2b-256 01876357cabd69e437dfc8ba67d43e507df1f7d010c7e095da41a73b1169bfde

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 088d1da357dc9781e85385e6437275e676333a30416d2b1cdde3936bb9abc80f
MD5 021d943cf91c7db7345ed327be303e7e
BLAKE2b-256 c1d0f2b100a27f2450bac4257b6a8500cd8c1ed0473fe19799ba3b1b55d496d2

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d476d34dbcb4ed8cbfa1e5e7d865440f2c9781cf023d1c64e4d8ec16167b52a
MD5 f7321870d85d6a14bd72f15304294e51
BLAKE2b-256 2d11abc44670b6eaf87c7c0906d43fc62f0edad85808a7bdb6fde9c41136c4f2

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 641ef0750468eb17bfd3a4e4c25ae14d37ecbcc9d7b10abfcf86b3881b1aca3a
MD5 6406f340c55311fafc8505dc85345685
BLAKE2b-256 bb8d7109402202843a5104d8418a6eb2e3b1796a80da5d7bbcfdf27a23b0e6b1

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a805a091d65f083da44f1bfdeef81818331ab76ae1475959077f41a94ee944ff
MD5 643fc9e6332b0c4b4a6ddfc1782d8f99
BLAKE2b-256 42d449381b535f13bccf34936c86d2f84512faceaf156cb30c2cea61bd68b0d1

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 09730ced0acb262396465086174229ac40328fdee57a698d0c033cf1c7447039
MD5 7543cf5cd3209ccb4c16567f9cda8509
BLAKE2b-256 841706aadaa68321479cd7269129a2d9d0925b86cde79ed6af04ce0caacb7e44

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: jarowinkler-1.2.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 68.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for jarowinkler-1.2.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9e4af981c50ee02eabe26b91091c51750dfef3a9ca4ae8fd9d5bde83ae802d27
MD5 d64fd14c918c9020cdd67a14ab07e924
BLAKE2b-256 14357b6484f670501cb34c1fde5b806c784f057b71d33d8431bf2d722fc22617

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ff3de9898a05d7902ed129714f32a66ac79af175a918663831f430da16578573
MD5 663a856f85016b4fd68cc04d0fc409c0
BLAKE2b-256 334e6c1113df33f7fe37c8bc699e0b4039966d9277801c1de2b84305402feaf5

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 90c624f1b660884415e0141a2c4fc8446fed00d3d795a9c8afafb6b6e304e8fd
MD5 c8746fb7977e8ac6b467fc145ae7681a
BLAKE2b-256 953f858aae4af22abe9a6c67d195ba7edab04d255f7e4399dbfc4600a255cd7d

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 615c09d4ebe5417c201c4a00cff703d7d5c335350f36b8ae856d1644fe1a38e9
MD5 2a49feb712c9b2c777d2df5d28504778
BLAKE2b-256 a58ef45cc82133dd2e968ccf194d4a545b1b256a184a7a9198cb1bc75e21d26a

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 793f4fd23c7e361197f8a07a035c059b6254ff4998b1a54d5484e558b78f143a
MD5 368323f72df6ceb5200051b036d6d5cf
BLAKE2b-256 2f9709b40e299eb948af6c116c176d5c34378d5d0fe609ae841d0479663d04f8

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3b6fce44c7bcbbaa38678cebc9fb0af0604aff234644976c6b7816257ce42420
MD5 171b13fec90f271dfc0ce7499880e2a9
BLAKE2b-256 1557d9122d9b36267aad54a9aa6413f9e25678d106ed18d0c4f8a5e23260813d

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 940ccc7d3f7fbd4cf220aab2ee106719976a408c13a56bf35d48db0d73d9467b
MD5 1625b8a3c38944f986f5f9436e5261f1
BLAKE2b-256 eda8094e87e92bf505dd808ee2652fbcdf73e2599e32de32d24703ecccdba32c

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 774b5f0e6daa07e1dae7539d4c691812f0f903fcdcc48d17ee225901ceec5767
MD5 b93983127f2b71d26977ea2e9736ada0
BLAKE2b-256 8236956e105a7a209bfda0942205ced4fc1ea116fccde5ec8634daa646d35d7d

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1dcfcb35081a08f127ab843bc1a6fb540c7cc5d6670f0126e546e6060243cdd
MD5 ac99cad5a8dc060ad45a0a39dc73d9b9
BLAKE2b-256 efde842a54c17210121b734f270ef4f17cb51aa17e3b80b75bc62e1f870056f7

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dc8d23c9abc5e61b00917b1bc040a165096fe9d0a1b44aae92199d0c605cc3c
MD5 9825bfae8688d3147ff235d0b817b34f
BLAKE2b-256 c7a546f72b4d000edd77594fe9e0c221080a7a44741860563a680c2d02b4a2ec

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7c34879601112fe728f167f099aea227a5a9790e85be09f079f85d94ece4af3
MD5 378460ba829263dfea993c8a092ea86c
BLAKE2b-256 3780c8c660bfda81b12eeb4b16466e33adfb47cf524e3056b45b860825a18952

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2760ba9c3c702c68c1d6b04da50bfa2595de87cb2f57ca65d14abc9f5fa587bb
MD5 0ddceb9ad207de5567e2ee9bd16ed5cf
BLAKE2b-256 2cb3a3ec9a1ff29a3312c6bde00e295ebacc70375747223a7ebb0e226c0e1134

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0b8b7c178ff0b8089815938d9c9b3f2bc17ab785dc5590a3ee5413a980c4872c
MD5 ed0f26a7851c0c16e0306c1dce054c13
BLAKE2b-256 6cd4b8a46bcb7140dbe442842006f9f22bc58619bd62e6fdca5a3fb87a1fc294

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: jarowinkler-1.2.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 66.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for jarowinkler-1.2.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 51f3d4bae8feac02776561e7d3bc8f449d41cde07203ef36fba49c60fc84921e
MD5 81a834c46475fe5d3c3a44fca6b62c35
BLAKE2b-256 f8790c479aa4d13d511f1c612da5afc0b87987459a95f9da63ba71404bd9f5f4

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d2ce7fe2a324f425d8639fbdd2b393432e70ff9cae5ddc16e8059b47d16be613
MD5 49711bf0f6a0f3a7b4c990f40038fbc2
BLAKE2b-256 70ee1a55c61f4eb629236464a2c24f80eb8447f98a47b6abb6fe53d704e3846a

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 40d17decb4a34be5f086cf3d492264003cd9412e85e4ad182a43b885ae89fa60
MD5 77111b4df7f94db48a6a8df2d21e06b9
BLAKE2b-256 99e79a14816488446c6de7f7010e81052747305023be493d3013fe9b86dbb1c5

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 ea3d4521d90b0d8bf3174e97b039b5706935ea7830d5ad672363a85a57c30d9e
MD5 2520fe686b906c4be7ffde8978b17590
BLAKE2b-256 45fcaeb6e0697f9c785966bc53ddb8dc78223d54bc51ced80ef2271447daf3d3

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f4ac432ffff5c2b119c1d231a37e27ca6b0f5f1fcc5f27f715127df265ba4706
MD5 88593c9681ace7fb2240f9adaf889739
BLAKE2b-256 69d4b70ec254be255da136d26bb0a4b4328be92eb45f1e20160f1054d9d832ff

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d0a3271494a2298c72372ee064f83445636c257b3c77e4bbe2045ad974c4982f
MD5 69f7ecc03a7316ec58b1dbe39a05ccf0
BLAKE2b-256 9be643bf1187bde7b74c4dcff7cb0f821a3831e2670d9396b4e125afbcbccd97

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ea7ae636db15ca1143382681b41ca77cc6743aa48772455de0d5a172159ea13
MD5 149debf6498fc28f16beab8b64940336
BLAKE2b-256 2b27fa575a62648967f2381caac5127d5a57fc90cf1f7447ee9e457bb4f5adf5

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cfa6ff2260707e522a814a93c3074337e016ce60493b6b2cb6aa1350aae6e375
MD5 0fa2a20321ed4b8a9071b11a04409d45
BLAKE2b-256 cd837494ee33eea40d2bb90e2d78435e443a79030ea3098f0338c9bca5e4b4a9

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b30901cf2012c3aa01f5a9779cd6c7314167cf00750b76f3eba4872f61f830ba
MD5 d37a84da6022571769dcaceeb77721f3
BLAKE2b-256 c445c5cfc324a0a160ee69a6a6ba3f1d38e0a1659b092a5510fd16cd5edb9796

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fb7e227c991e0129daf3ca3794325c37aa490333ac6aa223eebb6dbe6b2c059
MD5 3eb4f790dab118468c8ae2f634105ffd
BLAKE2b-256 cd133bc0e2e1163d16491c3a0992065d2828ca934b71c829e0f968289f5ac4b6

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc61a8667cb4601801a472732f43319feb16eea7145755415e64462ab660cdc5
MD5 5a72122e17f91eb1765df6f731991f43
BLAKE2b-256 4dfb168385209f10e401378d5d2d29860a8aa5926cafdff7c02587e2a22c5bb6

See more details on using hashes here.

File details

Details for the file jarowinkler-1.2.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jarowinkler-1.2.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 068e7785ad2bbca5092c13cdf2720a8a968ae46f0e2972f76faa5de5185d911b
MD5 6ed9316e49be8f123c89c05eb4ea5d2e
BLAKE2b-256 b0369351ca682006c821dab6439c1c19dde588e5207f43126d047c0fa15ee368

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