Skip to main content

A simple python fuzzyset implementation.

Project description

Note

This is a maintained fork of the unfortunately no longer maintained fuzzyset package package by Mike Axiak. This fork is available on PyPi as fuzzyset2.

fuzzyset is a data structure that performs something akin to fulltext search against data to determine likely misspellings and approximate string matching.

Usage

The usage is simple. Just add a string to the set, and ask for it later by using either .get or []:

>>> a = fuzzyset.FuzzySet()
>>> a.add("michael axiak")
>>> a.get("micael asiak")
[(0.8461538461538461, u'michael axiak')]

The result will be a list of (score, matched_value) tuples. The score is between 0 and 1, with 1 being a perfect match.

For roughly 15% performance increase, there is also a Cython-implemented version called cfuzzyset. So you can write the following, akin to cStringIO and cPickle:

try:
    from cfuzzyset import cFuzzySet as FuzzySet
except ImportError:
    from fuzzyset import FuzzySet

Construction Arguments

  • iterable: An iterable that yields strings to initialize the data structure with

  • gram_size_lower: The lower bound of gram sizes to use, inclusive (see Theory of operation). Default: 2

  • gram_size_upper: The upper bound of gram sizes to use, inclusive (see Theory of operation). Default: 3

  • use_levenshtein: Whether or not to use the levenshtein distance to determine the match scoring. Default: True

Theory of operation

Adding to the data structure

First let’s look at adding a string, ‘michaelich’ to an empty set. We first break apart the string into n-grams (strings of length n). So trigrams of ‘michaelich’ would look like:

'-mi'
'mic'
'ich'
'cha'
'hae'
'ael'
'eli'
'lic'
'ich'
'ch-'

Note that fuzzyset will first normalize the string by removing non word characters except for spaces and commas and force everything to be lowercase.

Next the fuzzyset essentially creates a reverse index on those grams. Maintaining a dictionary that says:

'mic' -> (1, 0)
'ich' -> (2, 0)
...

And there’s a list that looks like:

[(3.31, 'michaelich')]

Note that we maintain this reverse index for all grams from gram_size_lower to gram_size_upper in the constructor. This becomes important in a second.

Retrieving

To search the data structure, we take the n-grams of the query string and perform a reverse index look up. To illustrate, let’s consider looking up 'michael' in our fictitious set containing 'michaelich' where the gram_size_upper and gram_size_lower parameters are default (3 and 2 respectively).

We begin by considering first all trigrams (the value of gram_size_upper). Those grams are:

'-mi'
'mic'
'ich'
'cha'
'el-'

Then we create a list of any element in the set that has at least one occurrence of a trigram listed above. Note that this is just a dictionary lookup 5 times. For each of these matched elements, we compute the cosine similarity between each element and the query string. We then sort to get the most similar matched elements.

If use_levenshtein is false, then we return all top matched elements with the same cosine similarity.

If use_levenshtein is true, then we truncate the possible search space to 50, compute a score based on the levenshtein distance (so that we handle transpositions), and return based on that.

In the event that none of the trigrams matched, we try the whole thing again with bigrams (note though that if there are no matches, the failure to match will be quick). Bigram searching will always be slower because there will be a much larger set to order.

Install

pip install fuzzyset2

Afterwards, you can import the package simply with:

try:
    from cfuzzyset import cFuzzySet as FuzzySet
except ImportError:
    from fuzzyset import FuzzySet

License

BSD

Author

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

fuzzyset2-0.2.4.tar.gz (323.9 kB view details)

Uploaded Source

Built Distributions

fuzzyset2-0.2.4-cp312-cp312-win_amd64.whl (37.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

fuzzyset2-0.2.4-cp312-cp312-win32.whl (34.4 kB view details)

Uploaded CPython 3.12 Windows x86

fuzzyset2-0.2.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (56.0 kB view details)

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

fuzzyset2-0.2.4-cp312-cp312-macosx_11_0_arm64.whl (40.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

fuzzyset2-0.2.4-cp312-cp312-macosx_10_9_x86_64.whl (43.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

fuzzyset2-0.2.4-cp311-cp311-win_amd64.whl (37.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

fuzzyset2-0.2.4-cp311-cp311-win32.whl (34.3 kB view details)

Uploaded CPython 3.11 Windows x86

fuzzyset2-0.2.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (57.8 kB view details)

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

fuzzyset2-0.2.4-cp311-cp311-macosx_11_0_arm64.whl (40.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

fuzzyset2-0.2.4-cp311-cp311-macosx_10_9_x86_64.whl (43.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

fuzzyset2-0.2.4-cp310-cp310-win_amd64.whl (37.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

fuzzyset2-0.2.4-cp310-cp310-win32.whl (34.6 kB view details)

Uploaded CPython 3.10 Windows x86

fuzzyset2-0.2.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (57.2 kB view details)

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

fuzzyset2-0.2.4-cp310-cp310-macosx_11_0_arm64.whl (41.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

fuzzyset2-0.2.4-cp310-cp310-macosx_10_9_x86_64.whl (44.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

fuzzyset2-0.2.4-cp39-cp39-win_amd64.whl (38.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

fuzzyset2-0.2.4-cp39-cp39-win32.whl (35.8 kB view details)

Uploaded CPython 3.9 Windows x86

fuzzyset2-0.2.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (57.2 kB view details)

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

fuzzyset2-0.2.4-cp39-cp39-macosx_11_0_arm64.whl (42.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

fuzzyset2-0.2.4-cp39-cp39-macosx_10_9_x86_64.whl (45.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

fuzzyset2-0.2.4-cp38-cp38-win_amd64.whl (38.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

fuzzyset2-0.2.4-cp38-cp38-win32.whl (35.8 kB view details)

Uploaded CPython 3.8 Windows x86

fuzzyset2-0.2.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (57.4 kB view details)

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

fuzzyset2-0.2.4-cp38-cp38-macosx_11_0_arm64.whl (42.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

fuzzyset2-0.2.4-cp38-cp38-macosx_10_9_x86_64.whl (44.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file fuzzyset2-0.2.4.tar.gz.

File metadata

  • Download URL: fuzzyset2-0.2.4.tar.gz
  • Upload date:
  • Size: 323.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for fuzzyset2-0.2.4.tar.gz
Algorithm Hash digest
SHA256 97de8218b20ad00e07aae0156943afa0da91655a43ee8ae5caa79bf163c79efe
MD5 f0026a625dff9b5462bbba85094dfb92
BLAKE2b-256 b4d2f2be47222e34b12b1750425cd490c911559b0048cc8915827ecb94c27aad

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b9df46fcfecb8ec26f798dfe489c244b36eb16fb799b98e3e4841331eebae386
MD5 dbf958378d28b3e98790c67b58520420
BLAKE2b-256 944946661010933bed421b3985e1afb65539d386f6273e49f5f09a7ad937a64d

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: fuzzyset2-0.2.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for fuzzyset2-0.2.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 db52ee44fb3b056858ca1c5a53bda2dd64663dc887fb757154d4f678ea95cdaa
MD5 24728890750cdd10f19ab1c6f94007dc
BLAKE2b-256 defe99b3c1551ea4c458019af4f5d330131970ce4d7e34488efac099cd691fcb

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67c6c32e42b7b5f0523e770f0d1735e67763ef6938acf6315b2fc0dfa8fcecb9
MD5 90316f332c245e1414a9a148c58c602b
BLAKE2b-256 9f5f58dbf3369b0421dcdbd069ee7a4355127747bd2a63a06dfecc09eb33284a

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f8c3359f9c83a62d4173aa7b74423c7132e0a5663f1da9cc35371bacc6c9dd7
MD5 6c59f502380da065dd882aeb98962d50
BLAKE2b-256 3e8135d37340bde6820dcd96c08d68565716661617f696671dc2b319539aa622

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ae3d651b8df25ce66d52b0960b47ae23420d8466c27a7b2cf5f083d1bd854af
MD5 5f10771506349b9c7ba0e8bee206ad4c
BLAKE2b-256 04ce429a527fac75b55aed468b735473290fa4774d06c7b722f7091bbbd3fb5b

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 18d8a8d0166b34835669e12a43db810995724881ce13b0b309fc661fe5b0168b
MD5 71cc49655609d4bdeef5694209704a2d
BLAKE2b-256 203749a7945be63b8564145fe66f2d745116dadbd44e870b4fbd0484b0470754

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: fuzzyset2-0.2.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for fuzzyset2-0.2.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e6d560a7f43250e32aac8d016e38d3f1bcdc9b4f6ad03eb0fd633f3f30b5d55d
MD5 9da0e9e8da6fa553c74626dd4c9e5584
BLAKE2b-256 cb53dbc7884633d99b9e45b589ca11184ba33c42df36a927c7cd4f84d97ee4e2

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ab191ee6b8bd9455fcb745703ff6680e8f31fe15043a2e08414d8ff46a52735
MD5 e9a4eeab27f04f0e5b3d39dba6446f8b
BLAKE2b-256 eb572232ecdeb85c275a99f3bc64565e7c796e61d84f58f20ef823a98abaa31f

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bda49bc31ecc1006b7a5c5e1dc78633b7ea12745767be4524a19c6c840e1739
MD5 0c3c8dce4be7fec6b37df7fc27988419
BLAKE2b-256 3155ccd8d3d9d8ab5c51729cb6d50a1151e072f3125b0b9c89d17864911485b8

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 532dd0a39ae266c4543fe330b402165820a853d803633e55962df69269e6917f
MD5 cca741386e41af3988c15953dcf93521
BLAKE2b-256 94d18d5cc1708e05890e6758a8c069e5b6f59e449de2dd0949489554acb0e1d8

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e9298f7368e0ba398c3e08821312ccd457d7519ef2b23140996c59729645858c
MD5 5018ea4e68d0d94ce7bc24fb9d5fe155
BLAKE2b-256 2527785ed5330dc93fe49aec1f950f77b3a92b1ed0c3508c088da07064252cf8

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: fuzzyset2-0.2.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 34.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for fuzzyset2-0.2.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3d65dcd8646d47992ec0900e1457ca4a27f94e33cd9371bedae22b7332928e0f
MD5 6fb6ed1a459c1769eade77cb0024bbff
BLAKE2b-256 808f2df4b5459613d003bf4cba81f6fc66931a1be991ce2eda30661b2d325073

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a494489486a5d355c261904d3ee2bf0cb53ad6eca3b1e8c4f4b397f3a839a530
MD5 c7e7007c4edc8589b8d749ed7e65204d
BLAKE2b-256 365d04582b46051b1382e5583e01d4425644afe8b8a44e0dd7a0910a55c77e56

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13e75ce77fc15e6cc95a909b8f2a473e4fda9cf1216399b3e3915f696d0e8c43
MD5 4206e353dd65b95877183788cd325421
BLAKE2b-256 f0e868edb2cbf9856d685cc293237c3fc355eccb374e33b2da73d5b44fb3b59e

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6da7e1937e71e13aa780e319e698d508ddafdfa7dc1689d71fb79446724b1576
MD5 591fd95ae53c709960ba5e1cdc7889d3
BLAKE2b-256 5c6e50053a88a7e245010c5a647d064e653e85dd2687da8d9f950a01105a0434

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fuzzyset2-0.2.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for fuzzyset2-0.2.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9b724e12c9102bc08f543d171a92343fbcfc3fdabfb456a57fee44fb304099df
MD5 dd3c6aef282b2df2e5ff33a07c624ed1
BLAKE2b-256 cd432d69b27e313e17bd943cb5cd7da04845def3840993b15d3f5e893b96b31b

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: fuzzyset2-0.2.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 35.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for fuzzyset2-0.2.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 50f14495898403b9053ba5e03b3bcab7000ac3557e7ab0e34494a77ed6892c26
MD5 1b59572bdbfc3db3a2a269ebe0b61bca
BLAKE2b-256 f97e8f73996715eefb1fe0731cf5100e8f9082d58709e00ed7f6a9f9f4f9c60d

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ece844ccc7a5108047d8798b7bf7e206fba4a384561c05011e59bebcf4a7914
MD5 46b88765841add19dc721938a3df1bdb
BLAKE2b-256 f96e672815f2b87d9eb5270f3747a2a491d390541c0a9615dc81d1344f41afd1

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9d2d0aed7f328514356a3657454dd80471a45162c0a716d490aded4a04af1e2
MD5 a9054057b62ca60498e67ed766aba424
BLAKE2b-256 54d60cb3a67d3391e6421d703bb07c65894a80e75f547135d573091572e590b3

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10328193a77be860b0809bea8be5149c31d9e78c6f8d0144e657ab737096d186
MD5 36c37a88d1bf001193058c35c8adc3cf
BLAKE2b-256 006148289c739c676c380cda5e98ec494d1235ef7f3c053aeb69f70c48d5c3d6

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fuzzyset2-0.2.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for fuzzyset2-0.2.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 aa6d6dbd2ed384ae15407ce86d8c8b77caeaaea799e7da9e5b04d91d7ef49053
MD5 86fe45795bb0d6a522ea7d1b80be0687
BLAKE2b-256 576f7c8edfbf8d16b92a39da5a4dacc294adaf7ca77c612efb41fe4ed4a9a646

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: fuzzyset2-0.2.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 35.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for fuzzyset2-0.2.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 90c905da1e972019a9a365c2a76d3c93c904e52fad250280a19b646f81989de9
MD5 eac9b0a949cffc3cfe88f9a40fd9f244
BLAKE2b-256 ba3af756cbbc3912dfb9f713db222ecbc8e6be8738f06300267edd94b268c970

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8265ef5413a058a72c65ad4887e8d485d3b1a5f0f743fcd29f66d5511550df3b
MD5 ac7f43512ca3066858477a5743ef5d79
BLAKE2b-256 d40d270dfc05bb9b8ea3553cefbe6a0cfd40dd14114742987163822e1aac7487

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d3901b0dd0407b01ddb93edec9d8b65291e384f52dcaea079374fec4c7e0228
MD5 d3d3961cb0c24ff231737c0a085c4ca8
BLAKE2b-256 b0f29a6c99b0db1a334d8897490518fffac0c367d070126dcca1ba030ef4b731

See more details on using hashes here.

File details

Details for the file fuzzyset2-0.2.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzyset2-0.2.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc95ddc413b1816c167721093426941539cb3e196cbcdee472a5837fc2e310fc
MD5 94b304ddda68f2e911a9a7b635f9e63b
BLAKE2b-256 263f040cc72fe4ab73de1f61c958e98b4290cfb70fdb23d841de1d4473b1c671

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