Skip to main content

fuzzysearch is useful for finding approximate subsequence matches

Project description

Latest Version Test Coverage Wheels Supported Python versions Supported Python implementations License

Fuzzy search: Find parts of long text or data, allowing for some changes/typos.

Highly optimized, simple to use, does one thing well.

>>> find_near_matches('PATTERN', '---PATERN---', max_l_dist=1)
[Match(start=3, end=9, dist=1, matched="PATERN")]
  • Two simple functions to use: one for in-memory data and one for files

    • Fastest search algorithm is chosen automatically

  • Levenshtein Distance metric with configurable parameters

    • Separately configure the max. allowed distance, substitutions, deletions and/or insertions

  • Advanced algorithms with optional C and Cython optimizations

  • Properly handles Unicode; special optimizations for binary data

  • Simple installation:
    • pip install fuzzysearch just works

    • pure-Python fallbacks for compiled modules

    • only one dependency (attrs)

  • Extensively tested

  • Free software: MIT license

For more info, see the documentation.

How is this different than FuzzyWuzzy or RapidFuzz?

The main difference is that fuzzysearch searches for fuzzy matches through long texts or data. FuzzyWuzzy and RapidFuzz, on the other hand, are intended for fuzzy comparison of pairs of strings, identifying how closely they match according to some metric such as the Levenshtein distance.

These are very different use-cases, and the solutions are very different as well.

How is this different than ElasticSearch and Lucene?

The main difference is that fuzzysearch does no indexing or other preparations; it directly searches through the given text or data for a given sub-string. Therefore, it is much simpler to use compared to systems based on text indexing.

Installation

fuzzysearch supports Python versions 3.8+, as well as PyPy 3.9 and 3.10.

$ pip install fuzzysearch

This will work even if installing the C and Cython extensions fails, using pure-Python fallbacks.

Usage

Just call find_near_matches() with the sub-sequence you’re looking for, the sequence to search, and the matching parameters:

>>> from fuzzysearch import find_near_matches
# search for 'PATTERN' with a maximum Levenshtein Distance of 1
>>> find_near_matches('PATTERN', '---PATERN---', max_l_dist=1)
[Match(start=3, end=9, dist=1, matched="PATERN")]

To search in a file, use find_near_matches_in_file():

>>> from fuzzysearch import find_near_matches_in_file
>>> with open('data_file', 'rb') as f:
...     find_near_matches_in_file(b'PATTERN', f, max_l_dist=1)
[Match(start=3, end=9, dist=1, matched="PATERN")]

Examples

fuzzysearch is great for ad-hoc searches of genetic data, such as DNA or protein sequences, before reaching for more complex tools:

>>> sequence = '''\
GACTAGCACTGTAGGGATAACAATTTCACACAGGTGGACAATTACATTGAAAATCACAGATTGGTCACACACACA
TTGGACATACATAGAAACACACACACATACATTAGATACGAACATAGAAACACACATTAGACGCGTACATAGACA
CAAACACATTGACAGGCAGTTCAGATGATGACGCCCGACTGATACTCGCGTAGTCGTGGGAGGCAAGGCACACAG
GGGATAGG'''
>>> subsequence = 'TGCACTGTAGGGATAACAAT' # distance = 1
>>> find_near_matches(subsequence, sequence, max_l_dist=2)
[Match(start=3, end=24, dist=1, matched="TAGCACTGTAGGGATAACAAT")]

BioPython sequences are also supported:

>>> from Bio.Seq import Seq
>>> from Bio.Alphabet import IUPAC
>>> sequence = Seq('''\
GACTAGCACTGTAGGGATAACAATTTCACACAGGTGGACAATTACATTGAAAATCACAGATTGGTCACACACACA
TTGGACATACATAGAAACACACACACATACATTAGATACGAACATAGAAACACACATTAGACGCGTACATAGACA
CAAACACATTGACAGGCAGTTCAGATGATGACGCCCGACTGATACTCGCGTAGTCGTGGGAGGCAAGGCACACAG
GGGATAGG''', IUPAC.unambiguous_dna)
>>> subsequence = Seq('TGCACTGTAGGGATAACAAT', IUPAC.unambiguous_dna)
>>> find_near_matches(subsequence, sequence, max_l_dist=2)
[Match(start=3, end=24, dist=1, matched="TAGCACTGTAGGGATAACAAT")]

Matching Criteria

The search function supports four possible match criteria, which may be supplied in any combination:

  • maximum Levenshtein distance (max_l_dist)

  • maximum # of subsitutions

  • maximum # of deletions (“delete” = skip a character in the sub-sequence)

  • maximum # of insertions (“insert” = skip a character in the sequence)

Not supplying a criterion means that there is no limit for it. For this reason, one must always supply max_l_dist and/or all other criteria.

>>> find_near_matches('PATTERN', '---PATERN---', max_l_dist=1)
[Match(start=3, end=9, dist=1, matched="PATERN")]

# this will not match since max-deletions is set to zero
>>> find_near_matches('PATTERN', '---PATERN---', max_l_dist=1, max_deletions=0)
[]

# note that a deletion + insertion may be combined to match a substution
>>> find_near_matches('PATTERN', '---PAT-ERN---', max_deletions=1, max_insertions=1, max_substitutions=0)
[Match(start=3, end=10, dist=1, matched="PAT-ERN")] # the Levenshtein distance is still 1

# ... but deletion + insertion may also match other, non-substitution differences
>>> find_near_matches('PATTERN', '---PATERRN---', max_deletions=1, max_insertions=1, max_substitutions=0)
[Match(start=3, end=10, dist=2, matched="PATERRN")]

History

0.8.0 (????-??-??)

  • Dropped support for Python 2.7, 3.5, 3.6 and 3.7.

  • Added support for Python 3.9, 3.10, 3.11 and 3.12.

0.7.3 (2020-06-27)

  • Fixed segmentation faults due to wrong handling of inputs in bytes-like-only functions in C extensions.

0.7.2 (2020-05-07)

  • Added PyPy support.

  • Several minor bug fixes.

0.7.1 (2020-04-05)

  • Dropped support for Python 3.4.

  • Removed deprecation warning with Python 3.8.

  • Fixed a couple of nasty bugs.

0.7.0 (2020-01-14)

  • Added matched attribue to Match objects containing the matched part of the sequence.

  • Added support for CPython 3.8. Now supporting CPython 2.7 and 3.4-3.8.

0.6.2 (2019-04-22)

  • Fix calling search_exact() without passing end_index.

  • Fix edge case: max. dist >= sub-sequence length.

0.6.1 (2018-12-08)

  • Fixed some C compiler warnings for the C and Cython modules

0.6.0 (2018-12-07)

  • Dropped support for Python versions 2.6, 3.2 and 3.3

  • Added support and testing for Python 3.7

  • Optimized the n-grams Levenshtein search for long sub-sequences

  • Further optimized the n-grams Levenshtein search

  • Cython versions of the optimized parts of the n-grams Levenshtein search

0.5.0 (2017-09-05)

  • Fixed search_exact_byteslike() to support supplying start and end indexes

  • Added support for lists, tuples and other Sequence types to search_exact()

  • Fixed a bug where find_near_matches() could return a wrong Match.end with max_l_dist=0

  • Added more tests and improved some existing ones.

0.4.0 (2017-07-06)

  • Added support and testing for Python 3.5 and 3.6

  • Many small improvements to README, setup.py and CI testing

0.3.0 (2015-02-12)

  • Added C extensions for several search functions as well as internal functions

  • Use C extensions if available, or pure-Python implementations otherwise

  • setup.py attempts to build C extensions, but installs without if build fails

  • Added --noexts setup.py option to avoid trying to build the C extensions

  • Greatly improved testing and coverage

0.2.2 (2014-03-27)

  • Added support for searching through BioPython Seq objects

  • Added specialized search function allowing only subsitutions and insertions

  • Fixed several bugs

0.2.1 (2014-03-14)

  • Fixed major match grouping bug

0.2.0 (2013-03-13)

  • New utility function find_near_matches() for easier use

  • Additional documentation

0.1.0 (2013-11-12)

  • Two working implementations

  • Extensive test suite; all tests passing

  • Full support for Python 2.6-2.7 and 3.1-3.3

  • Bumped status from Pre-Alpha to Alpha

0.0.1 (2013-11-01)

  • First release on PyPI.

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

fuzzysearch-0.8.0.tar.gz (39.2 kB view details)

Uploaded Source

Built Distributions

fuzzysearch-0.8.0-cp312-cp312-win_amd64.whl (36.6 kB view details)

Uploaded CPython 3.12Windows x86-64

fuzzysearch-0.8.0-cp312-cp312-win32.whl (35.0 kB view details)

Uploaded CPython 3.12Windows x86

fuzzysearch-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl (56.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fuzzysearch-0.8.0-cp312-cp312-musllinux_1_2_i686.whl (56.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fuzzysearch-0.8.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (57.0 kB view details)

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

fuzzysearch-0.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.1 kB view details)

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

fuzzysearch-0.8.0-cp312-cp312-macosx_11_0_arm64.whl (32.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fuzzysearch-0.8.0-cp312-cp312-macosx_10_9_x86_64.whl (31.6 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

fuzzysearch-0.8.0-cp311-cp311-win_amd64.whl (36.6 kB view details)

Uploaded CPython 3.11Windows x86-64

fuzzysearch-0.8.0-cp311-cp311-win32.whl (35.0 kB view details)

Uploaded CPython 3.11Windows x86

fuzzysearch-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl (55.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fuzzysearch-0.8.0-cp311-cp311-musllinux_1_2_i686.whl (55.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fuzzysearch-0.8.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (56.1 kB view details)

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

fuzzysearch-0.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.4 kB view details)

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

fuzzysearch-0.8.0-cp311-cp311-macosx_11_0_arm64.whl (32.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fuzzysearch-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl (31.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fuzzysearch-0.8.0-cp310-cp310-win_amd64.whl (36.6 kB view details)

Uploaded CPython 3.10Windows x86-64

fuzzysearch-0.8.0-cp310-cp310-win32.whl (35.0 kB view details)

Uploaded CPython 3.10Windows x86

fuzzysearch-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl (55.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fuzzysearch-0.8.0-cp310-cp310-musllinux_1_2_i686.whl (55.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fuzzysearch-0.8.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (56.1 kB view details)

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

fuzzysearch-0.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.3 kB view details)

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

fuzzysearch-0.8.0-cp310-cp310-macosx_11_0_arm64.whl (32.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fuzzysearch-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl (31.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fuzzysearch-0.8.0-cp39-cp39-win_amd64.whl (36.6 kB view details)

Uploaded CPython 3.9Windows x86-64

fuzzysearch-0.8.0-cp39-cp39-win32.whl (35.0 kB view details)

Uploaded CPython 3.9Windows x86

fuzzysearch-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl (55.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fuzzysearch-0.8.0-cp39-cp39-musllinux_1_2_i686.whl (54.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fuzzysearch-0.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (55.6 kB view details)

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

fuzzysearch-0.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (53.9 kB view details)

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

fuzzysearch-0.8.0-cp39-cp39-macosx_11_0_arm64.whl (32.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fuzzysearch-0.8.0-cp39-cp39-macosx_10_9_x86_64.whl (31.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fuzzysearch-0.8.0-cp38-cp38-win_amd64.whl (36.5 kB view details)

Uploaded CPython 3.8Windows x86-64

fuzzysearch-0.8.0-cp38-cp38-win32.whl (34.9 kB view details)

Uploaded CPython 3.8Windows x86

fuzzysearch-0.8.0-cp38-cp38-musllinux_1_2_x86_64.whl (55.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fuzzysearch-0.8.0-cp38-cp38-musllinux_1_2_i686.whl (55.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fuzzysearch-0.8.0-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.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

fuzzysearch-0.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.6 kB view details)

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

fuzzysearch-0.8.0-cp38-cp38-macosx_11_0_arm64.whl (32.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fuzzysearch-0.8.0-cp38-cp38-macosx_10_9_x86_64.whl (31.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file fuzzysearch-0.8.0.tar.gz.

File metadata

  • Download URL: fuzzysearch-0.8.0.tar.gz
  • Upload date:
  • Size: 39.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for fuzzysearch-0.8.0.tar.gz
Algorithm Hash digest
SHA256 27e13f7f1ec57c4c335752eb22c378254feb81eb67107ef5e3ab0fde0eba266e
MD5 1e6fb72fabd9e0bc68da5f7ae8b3bb41
BLAKE2b-256 e1d0a82bb8e4f35e585246e599129700060594da70f4f38e0b3933af03c4c960

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0.tar.gz:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7ed3a11c26aff3cee6b926a17151b437219f6a819c2aec9f44b8bb3d464d77e0
MD5 58d3e9c84bc6e1a33b87db1feebe4054
BLAKE2b-256 b48bca2f7d6976c3e21deaf4272c2bf730ba83d0d87eadab98e4de7c9c0cba52

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: fuzzysearch-0.8.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 35.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for fuzzysearch-0.8.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 673b61bd19563f8d0998f00695bf14f4aefbef76715e20b1770ddc388b5ff989
MD5 496c91723e83f978f5751c138ce46a09
BLAKE2b-256 3861357862465d4273e545dc458e5e5553fa7e2d770dfcf54e7fc3e0ebb0a2ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp312-cp312-win32.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 263130a42639d0b568a79a909a7ef114ac600c706d4a706b79fbac182dcec604
MD5 0861a41aaf2aa2860b50be7f396ecb49
BLAKE2b-256 41bdf6b80474e2cb1759d9bbb6c7acde77903e465422dcec252c692a1ccebdc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 47b31621c8ebdb92b86d1398116f6bbbcde3863b08c62e69b4d519aa8927f5c5
MD5 c85a841dbb3ca5e23b9d8b5027bd112b
BLAKE2b-256 ae7bb6915fb35d51804698fb35adba86ab673e1c8890ba81655b7a7c8ea86a6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-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 fuzzysearch-0.8.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb41f628730ef56de01509cadc1c97fac98c73eaa4298099e76522a3f75532a2
MD5 6c4d69fd64578fcdfb23d20654c4f5ee
BLAKE2b-256 e1dade45043a2df875592f74975ab7fb98269854a71c8f9a98f2c86f4f3c8179

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 84f18de10852914d57212c2d197d978b44f93b051bc83cd10fba08c4aaadced0
MD5 62992fad374abe4941c189f6a71c5ee7
BLAKE2b-256 4e7ff19be91f9dfe3cd1ff39cc7782efccee53370473c9346bbc6c53331690e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45d666f1a1a112f36b8ee8520ee0733267a5573d2ce7e96f944aa2c64b2bde11
MD5 2a38f5bbe4dca8f81a66e566a6cd51a7
BLAKE2b-256 0f5a11042e3f7be023e99d449591948c03611a2f4236001d7f8fa58770312a6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 123bf07d08e3829ba6ebdea0a2dc013797f10ac0348fe94e8ad65789455716d1
MD5 0342f8677a702ed10c9cffcc4831bfcf
BLAKE2b-256 51a646db1a0776f18b6568bf3c410bf565204867883dec068c67640a9b1bea69

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e0ae9f564206a948f2f787800d04842b7b1b35db4d7b9e0a29997976f940ddb3
MD5 65026157a910c0e472dbbfc48f2238e9
BLAKE2b-256 1515d7dfc9efed069dd6d2da2467f601dc8d60850937b05e6860d88e18302d54

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: fuzzysearch-0.8.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 35.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for fuzzysearch-0.8.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c3a0551088b771fd5178128fccdf2ee4977060c7182a580d52375ef2c4724ea7
MD5 312829374695c4d3817f8be30f22f85e
BLAKE2b-256 1d96343adb1f2193a19c2e17b9228706ff7740dc7c555d05d1551f58b837b41c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp311-cp311-win32.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4c730bdf31675c05a0ce91bb2aa17e871bae1ba441747675f36ef34145bda64
MD5 af9bbe747621cf7bb95876555d053206
BLAKE2b-256 b97d35d4bfbfe821780ba682a7e5ddbdd1f3d82c1cc9de553cb4052ebfba4a73

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e1d7e7ddf28cf6c6ac36946eaaa7e5d759dd2dfec0653ef9460d2d4ffbd1ad1
MD5 50f089811b69370b2d47be9c9e4fcd86
BLAKE2b-256 3d9005e7ca469909bb16a09312cab3ce6a2b17994bd02a1944f4e7357d8f1749

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-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 fuzzysearch-0.8.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2ae1619a2e4369170e93d371834fb22c88a208368d29c6851cbc15b3f0e507b
MD5 aa3b99a6dc9c9cf315b4027cf8d904a7
BLAKE2b-256 280c5e0ed8865640013e4d0bcdff40e56e0a416d2a3ac33898e6c08f11623729

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af33b3dfe7347ac92f3a879681f0b91766461de7bd433153a4202120b0b35f74
MD5 0cab37d2c1ed511401589663e75f1228
BLAKE2b-256 8e572d88b22d197bf79c4543a8d709bfaf1c198c6a173a4fb1636b002e1ed3ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98f16a1698321f8103c5889c97595071cb0e8669ccddbf5c6ee953b3e52b7c76
MD5 060bdd7ad2f660a507e4d822d0708990
BLAKE2b-256 fc8e2912a278e7f4d9f5f641c448658e7a76995c5f3397cf0be3e53e90622449

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8fcce0480d1ebcb27d6d5b104901b7f1d478ead28fab8b4e11a5ab2e8c55b41e
MD5 f2e0bdba049c194f6129a766c877669c
BLAKE2b-256 5253787e339680f78e037d76034f15d6733fcf15a197aff7849b1bf1505d5a8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1d714e49e1d9108fc3d9922872f300aa0c648648b9e64981a11c5fba8494d79a
MD5 95f8c3c7ee2a31a2609e0b3589cfcf02
BLAKE2b-256 87bb98a136e38854a9f8ae7665771acede93ca8ed993927840478e1661dce2e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: fuzzysearch-0.8.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 35.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for fuzzysearch-0.8.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0cb1652c8667951ec49122f34dfbdcb1d85687078d01f38d4e4d1b55727065e3
MD5 6a252bffd96da8dc4d45ca1991c46023
BLAKE2b-256 1cc6bbcc138069182af7ea0204e19ff24d8defdbf49082125a15374460c3666a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp310-cp310-win32.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51afc619f8afcc74c8b11baa835378c6bfac301346c83ff0893d8686bd7770f6
MD5 0178e5d00920f1f9a8de8a095186064d
BLAKE2b-256 d63fde059888124a5f4053906a5daf025cad4f5a7d1f133faf0ae7901027669e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90607558085c075c90005a784263a15a48a461085093ba8d57012a23a3f863b6
MD5 70bb7cb5821bb9aa27a8cd532fd5a958
BLAKE2b-256 078992f5796bd15ee4bf54957d262731cac3c65ba040d827ef8da22e9fd2c0fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-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 fuzzysearch-0.8.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2eaa32f8509fe59f88d8d0cecf09bf99716e8d31fb15517cebba8cf0f62fe796
MD5 b54038dcf086cb1773c02111729565ba
BLAKE2b-256 a7b7c39a22dd2adc8ed20c5f08baf5a9ad8e89175f0f05cc5b2d4980f324901e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 18e89d84f1481d64c645d337c548845be8b796488af0bb4d9cd544135aa7f146
MD5 a566ac349151c48ed981353a126f5000
BLAKE2b-256 e30cb52d97c8d3941fa94dcaea16bb0844e50b5b2b56af945bf804a1da3eadbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cd6439ce44dea9efb0fd96084ca330159109cfcc9ec5f6f4ce0d7e0f46181e0
MD5 0638ed21f05b1bd52d4f34f09a15ee2d
BLAKE2b-256 364def2ac3bafda37e61e8d523473b567a9e767ab0d8597e9928a0175df2cc9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1299c628b07d5f2ca7acba5dc294d67020f722ab23267029762038a8a9cf5787
MD5 c694a4ff7189bdd6e8c4872ae0f83977
BLAKE2b-256 a062f308044019fcc3057adf7c2a3e9e9819a8a41c385f63b1bd19aab38fd3c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fuzzysearch-0.8.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 36.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for fuzzysearch-0.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 75bbabfb4eaab3c317243e0c58af03caa8f117ff5a329bea99fafd3d3e57380b
MD5 36a4a3fd99e71f818bf48d79cdd41d5a
BLAKE2b-256 19e41a5c0b7a0691e9a51af0672be73018beaeecd54b36484bf8c475f005628a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: fuzzysearch-0.8.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 35.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for fuzzysearch-0.8.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 78d688355ba63b5b36aad87dc8df75dc1ecd5d14c1c4464a64390d501bf93dee
MD5 0ec575cade5c0de7784e91a23c400363
BLAKE2b-256 606624737dda70ef0b4a14a504182c553b555e8cbfcb36516f7ed26e5128fc5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp39-cp39-win32.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22c203490651e453bbbe4647230f45f0013b01b4197c1a75015405207b4f5a62
MD5 ae9bad1e5a0f2a586e500631660a5599
BLAKE2b-256 9842f96384b2c89fc91772bb2fc2e3821a06783fb458eed3c13e26fb4783c0b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cefec6ffcaa29e0f63bf235f2a91b19cb9315051d77e4e948585f017476186a4
MD5 487f3796478459250df984d81602f76b
BLAKE2b-256 d9e487de1e39bb08aec8f571e5bd771a8ab0a632ede6f3f7c2f995c6ab3581c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-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 fuzzysearch-0.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d3a80fecc8c7461b1e06e1bd3f2aeeb4073e771c0fb807f2109c58245451a44
MD5 bdba4056585b918bc5b8ad6348cd65a0
BLAKE2b-256 2d2790f61b6c9275c53c9a0a5f4f185d7d4b25ccbe04036b82e85f63c1a5d4b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c5722bdfcfe8905828c71615d0ca4cffef5851fbfac17d12de2b69fb6ba920c
MD5 2c593628d92187928ae568f0516cdbe0
BLAKE2b-256 18f398c8ffd3dee3ea9f6a0ff8a731b3d1fe24c73564f8f69a4302916af3178b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b93f178a3d544ca986247426d22563056602be5e2eb4bf8e50479b61a7400b6
MD5 d2d7b1d3507a81eea04d21977f68d051
BLAKE2b-256 641cb35480b6efdbd3f1851d8c1009f31ea9b3a20dce9462c7116870b28e89fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3c65df2bfafc1eeeec85deb9bc35f256779ca5b9a9995616e101e976b7ec370
MD5 468c2ea85143f8225bc03c8d7ac7c8ab
BLAKE2b-256 6c3f09ca8cfdee5e70ee84bdadf94db2b924691faf2af0d1f69481b6c42e3356

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fuzzysearch-0.8.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 36.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for fuzzysearch-0.8.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d1e9414f55442be2ed277ebede5418cabc41fd93e40e33eae972ca7f80a7ba0e
MD5 973a5d462733c9d5b6cd09d96eca41f6
BLAKE2b-256 b2599a60d9bc1c5659389d6d421797a4ab8be64640c27d12b9fd931f0c31db32

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp38-cp38-win_amd64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: fuzzysearch-0.8.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 34.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for fuzzysearch-0.8.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 68351b130d72babf8add76e6ef9e4ad2169de274ad660d623114457365d8f318
MD5 7ced6b24d0c397ef3dba7111d53a78ac
BLAKE2b-256 80f0cd3121baf9272702843913696c0c2622a90d96f985c184fac4d50e34b733

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp38-cp38-win32.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a7128a38bfdece45823ff271afbf279724a54c918f911def76cde3ec30b8b05
MD5 5b00d0e5054755061602489bc69faf16
BLAKE2b-256 1c0895650606a1e7346a84e9f9112c53407aaa307789b25c515a5f48905bd956

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 073cb01ce04e099d3ce494b352408034b2f7bf9d2948e6215feb1942d6685ca6
MD5 4542859198b39381dfd2b4810ff179d4
BLAKE2b-256 0706138f8728e9d3f23920b3b14de90c937dc0438bd5d2454af31c23fb52389d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-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 fuzzysearch-0.8.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 688376522404e5c532e6975bc8c6c9656815109d361d638239eb86405debaed4
MD5 adac52d6e314f4535b8b9395ceb23080
BLAKE2b-256 9f7b9395e220eba7ebf682bfdd66b1ef0ab9b4b85040968e86bf88eea5c8c2f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e86332cfec64530fb44c0b8bc6aced23451f37148dd7618008f3bae4537c4178
MD5 9cfa21774f76b077263723685a1c4eb8
BLAKE2b-256 a98bcc04b6246901424a83b344e875f0872b4665cf629331fd9fcaf143b5953f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 416298e92adfd83580e4ad13351c458dc79b273becbfa663b49e5828c74b7588
MD5 70470ca1c70da4c5076fb5f89e82e612
BLAKE2b-256 d2d453a7eb0d7410ed4b5da9bac31406a662d4f0be123eef159cf8e783d21fbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fuzzysearch-0.8.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzysearch-0.8.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47cdf5c04633a5fb970d23096b6e753018986e7eabc73ece8cf56fc8cfb0018c
MD5 79a9a323e36baebce642d2c606c1448e
BLAKE2b-256 8abd8f2ce27002733b26f94c37c48179e0f8ee86a4b0e11745e321bfc09269ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzysearch-0.8.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build.yml on taleinat/fuzzysearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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