Skip to main content

A fuzzy search tool written in python (actually C++)

Project description

FuzzyBunny Logo

FuzzyBunny

A fuzzy search tool written in C++ with Python bindings

Overview

FuzzyBunny is a lightweight, high-performance Python library for fuzzy string matching and ranking. It is implemented in C++ for speed and exposes a Pythonic API via Pybind11. It supports various scoring algorithms including Levenshtein, Jaccard, and Token Sort, along with partial matching capabilities.

Features

  • Fast C++ Core: Optimized string matching algorithms.
  • Multiple Scorers:
    • levenshtein: Standard edit distance ratio.
    • jaccard: Set-based similarity.
    • token_sort: Sorts tokens before comparing (good for "Apple Banana" vs "Banana Apple").
  • Ranking: Efficiently rank a list of candidates against a query.
  • Partial Matching: Support for substring matching via mode='partial'.
  • Unicode Support: Correctly handles UTF-8 input.

Installation

Prerequisites

  • Python 3.8+
  • C++17 compatible compiler (GCC, Clang, MSVC)

Using uv (Recommended)

uv pip install .

Using pip

pip install .

Usage

import fuzzybunny

# Basic Levenshtein Ratio
score = fuzzybunny.levenshtein("kitten", "sitting")
print(f"Score: {score}")  # ~0.57

# Partial Matching
# "apple" is a perfect substring of "apple pie"
score = fuzzybunny.partial_ratio("apple", "apple pie")
print(f"Partial Score: {score}")  # 1.0

# Ranking Candidates
candidates = ["apple pie", "banana bread", "cherry tart", "apple crisp"]
results = fuzzybunny.rank(
    query="apple", 
    candidates=candidates, 
    scorer="levenshtein", 
    mode="partial", 
    top_n=2
)

for candidate, score in results:
    print(f"{candidate}: {score}")
# Output:
# apple pie: 1.0
# apple crisp: 1.0

Development

  1. Setup Environment:

    uv venv
    source .venv/bin/activate
    
  2. Install in Editable Mode:

    uv pip install -e .
    
  3. Run Tests:

    pytest
    

License

This project is 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

fuzzybunny-0.1.0.tar.gz (6.7 kB view details)

Uploaded Source

Built Distributions

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

fuzzybunny-0.1.0-cp312-cp312-win_amd64.whl (85.8 kB view details)

Uploaded CPython 3.12Windows x86-64

fuzzybunny-0.1.0-cp312-cp312-win32.whl (74.0 kB view details)

Uploaded CPython 3.12Windows x86

fuzzybunny-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fuzzybunny-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

fuzzybunny-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fuzzybunny-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl (97.2 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

fuzzybunny-0.1.0-cp311-cp311-win_amd64.whl (84.5 kB view details)

Uploaded CPython 3.11Windows x86-64

fuzzybunny-0.1.0-cp311-cp311-win32.whl (73.1 kB view details)

Uploaded CPython 3.11Windows x86

fuzzybunny-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fuzzybunny-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

fuzzybunny-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (91.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fuzzybunny-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (96.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fuzzybunny-0.1.0-cp310-cp310-win_amd64.whl (83.6 kB view details)

Uploaded CPython 3.10Windows x86-64

fuzzybunny-0.1.0-cp310-cp310-win32.whl (72.0 kB view details)

Uploaded CPython 3.10Windows x86

fuzzybunny-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fuzzybunny-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

fuzzybunny-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (89.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fuzzybunny-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (94.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fuzzybunny-0.1.0-cp39-cp39-win_amd64.whl (84.3 kB view details)

Uploaded CPython 3.9Windows x86-64

fuzzybunny-0.1.0-cp39-cp39-win32.whl (71.9 kB view details)

Uploaded CPython 3.9Windows x86

fuzzybunny-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fuzzybunny-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

fuzzybunny-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (89.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fuzzybunny-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl (94.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fuzzybunny-0.1.0-cp38-cp38-win_amd64.whl (83.3 kB view details)

Uploaded CPython 3.8Windows x86-64

fuzzybunny-0.1.0-cp38-cp38-win32.whl (72.0 kB view details)

Uploaded CPython 3.8Windows x86

fuzzybunny-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fuzzybunny-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

fuzzybunny-0.1.0-cp38-cp38-macosx_11_0_arm64.whl (89.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fuzzybunny-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl (94.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file fuzzybunny-0.1.0.tar.gz.

File metadata

  • Download URL: fuzzybunny-0.1.0.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fuzzybunny-0.1.0.tar.gz
Algorithm Hash digest
SHA256 053b3a77886486d948578e04e8b089fdae55752dc125749290fd2358c4ad247b
MD5 77145d9c85b44df1a3da8fc36fe5a196
BLAKE2b-256 03c8797a004369532feea082ba3de88e8068d32cbc1dca2a0529954f6de1e81d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0.tar.gz:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fuzzybunny-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 85.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fuzzybunny-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6dd63ffb93b7068a4397f4cb23a6636eae1b0906b4eed8486a8c642ad0464056
MD5 6a31150b1ca17943083b1d3949274590
BLAKE2b-256 74ad10f474eeef5f982ff1121395012ac8ab1f4f6a14d09c1d4c7678fc711b0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: fuzzybunny-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 74.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fuzzybunny-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 42a44ed6f5e0f9f28e9c5b2d3e35ec911c2b28e82e5f19546401ddf88dca5a54
MD5 5c5d479a3a5085dddf121326a0542b14
BLAKE2b-256 e93de540bfeae59451943fcc9d048c1ce71c8f95780a0ee48ab464cd9a8bb3a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp312-cp312-win32.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7ddd6bae0e00c5cf34821bf5cf8b839b90dfe44cc4da6f6644fe4c8e50a9434
MD5 f8fc8e2d51a6da0c96002a3d57d964fa
BLAKE2b-256 b69152ab271fecd63cc131f17bbbe83f501ccf40a651684b4acf35169f946aee

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24b89362b994c5f48adc31755a43aaa4e75e2d67cecdbd0b61ea61dddb4e6aa1
MD5 67e1ec314101e60753fe052f67fabb0c
BLAKE2b-256 2497f16c4861923daa4694d0569511627683cc86424c378098b53b0ba406dc3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6145616378c0ff6d1f00e736d4192232381d4f96e0157ef65bc86fe914a96963
MD5 6232a5bb78dcdccc7052a1dc8d1ef7ce
BLAKE2b-256 960792e762ef71b8a45d29fa7f512677698809eb486b4240851033efb458dc9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56ee0b9131e00b8ac236c7b135212a9f2a1dc5ff9e1f65b3edce2ee97e9dd076
MD5 069d115e0eaba25cec5011be17852e1e
BLAKE2b-256 832da1ae1a5cc39097130bdcd985143db2579b1e8eb97e51ee484b2593a587a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fuzzybunny-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 84.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fuzzybunny-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 299a74110198b8375b851bba94ac1f0fe160c44a552e4489cd4ab9d9550d603d
MD5 b8d47d7cef23126f00f9a3e8c3679b55
BLAKE2b-256 74273765ae7e2a6e9a28a30b20ed0270d335a5dc9cadf26810874db9dbae339b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: fuzzybunny-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 73.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fuzzybunny-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0aa80dbe4b47215327749e4f5e0cb17312d5ab277a2d500e4c9639fdb653316c
MD5 50888a145f8018515e5689bc56d8ac59
BLAKE2b-256 1d4ef8e2a1e807470aa18d2eafac345dbf194807456963d3482830a9bd89f0f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp311-cp311-win32.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54ea3917980442cbe44aa5cf4d00874ebf596a5127a2c0cbe6b9639e88f34488
MD5 2e475a01a2c94949d41a8c857bb349ce
BLAKE2b-256 7ffd8706531d51077e18a69f9268b1498193e5786ed2e7c3017db7cd303f6265

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 efb5d6e048b7ef364662227199befb4436743731224460f00909f046e4dc8412
MD5 2629239328ba78c3af12c3c09000a39a
BLAKE2b-256 aab5d5140d88be8432084648b18a1f39e810af80fc65a1e2cc6fe7a929e73e1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3d53e07507ffcc909b6b0be1ae994ff55af405a2a22dc4370ad63da07c1e5de
MD5 bfec57e77986741a62d1612cfce5e2fa
BLAKE2b-256 9a05f85c1944ed967fbca37baa16ee047cbed0119165d9bc0630121390499b27

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84f50da8c3739a05790be714abf9dc9e256f466da2f03c4110e95c1b3960e456
MD5 1c1063bde982a77eb694577e26916970
BLAKE2b-256 26ecb05faaba4b66c963e0d7f05060d524b562f28173241276959679505572b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fuzzybunny-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 83.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fuzzybunny-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 01322884d2cfd6c54cb55dab882fe21dcce39646eb72a5703448d209ba2ba172
MD5 bcf707664d7c8c67cee6dbd440a20d48
BLAKE2b-256 a55d6d0e789d8415034ed2e16c2b942c7fbc8a47f2f5cd92e8854f72eea4a150

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: fuzzybunny-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 72.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fuzzybunny-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 37201eb4116827b7f2c7935efd6edead889572a254029fd9f123058f5d59fe19
MD5 66cecab4012996bb45926b5a7f1af5e3
BLAKE2b-256 d891d77201172a708e8a5dd1b24d0754b33d76dd405469f1fc6d71676e86103f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp310-cp310-win32.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d87b2d8fcd5e6fb99addd0c8de7a24dbdefa2f15e12001deb302d8b69df3edf1
MD5 b4972014fa08a6e6130fdbef66959e29
BLAKE2b-256 49a62ac1d1749a1c4fdaf5c5bb9ec30ad566cbab582f3e6a06db7a8d21c7e0c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f93a88991f39aa0f5249aeff937b53561916eea7c34194e9fa8dc2c6a010a1ab
MD5 d0e23808c35ac3bb9651872813c5f838
BLAKE2b-256 85a35855e931a5cbd3ee0d9d78b0c634b7966ac3636b267a6e5f0013c2e583de

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 678b5425bd4670466cc64144cba47ca3749279ed78f1901756ef41af8c471783
MD5 6aad4d6f155bf6a77efad8dd9695f9f1
BLAKE2b-256 af0d8a746e0d848c1c6550d6f84c16a0e7745442b0de11f114f871fa842087aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2678ef65d53ae33d7703ab975eea3dd22915cf27f96985395520e9eee7813bd
MD5 6767ec30f860e0840f8b4d9148b1476a
BLAKE2b-256 d85eb952d3d39893beb3c222d4f33b76b8e583b5a355efd03548bfda712ee361

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fuzzybunny-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 84.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fuzzybunny-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 369ab6ad5329943f601956518e621b4120c6229e2a6ce8682e746e34c1b7983e
MD5 faf0ed845142e2b44150804e38bbed2a
BLAKE2b-256 7ce7e45cccac9272350686672698a3c13d9341311b0eed4939fc28d939dd4061

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: fuzzybunny-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 71.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fuzzybunny-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7ced3abb740f5e0b13257ff8ccea4268a9d8d51f413b171b3228740078a4a091
MD5 a724eafcec9f3ebdcaaf6caa5e2aefe5
BLAKE2b-256 d66bc4f7261c673488535d94831dd211d57b5dfd028207c791b252aad724c9b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp39-cp39-win32.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67ee1bb5d7425d9724930d757e4d41c3212e1e22b76ba5289b02c32349976670
MD5 a3839bd03c5078d28eb9fa0bf7c4a4bd
BLAKE2b-256 028b6b2960b2abf2e06eac2dc74a4a7a29f27ae66593c1e8b464a1815316789a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85410cb7525ca9781d43fabd5003ac70962c48ee0b8b5fb8f89f6717e1c22efe
MD5 8c4114dc9f700585364a6c3603369e13
BLAKE2b-256 b5f6d744039635236eba5655f09a9c891cca5e8fdda47e8678549f0952034040

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 868a640683f88516126c307d5abc4838eb215537ff15c92d3ca85c79ab396673
MD5 70c823b382af1acee357bebe17955108
BLAKE2b-256 79d9ed6a4d01230d1babb02026c450cbdd47ecc52867fbf47fef67252c4f7024

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f28b90e1715307caa7721b0cbc8173deb33b030ff3fd8d75ecbcbc54d63df2b
MD5 b54028e7b3420f805cff44206aa51bc7
BLAKE2b-256 57f7b7b4f8898903583cc91d42551bacbe5a36f5abf45d257e894741c4fecde4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fuzzybunny-0.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 83.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fuzzybunny-0.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bcd768deaedd86c20555dcf8231ca04f8976e6f7a94dea117110314ab5d54384
MD5 d82f380189e4df3cd6785f22d6b0a264
BLAKE2b-256 ebe242f72d9b35ccb8234bf4a9513494aa923441f9f0abd0c80284e41b4665e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp38-cp38-win_amd64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: fuzzybunny-0.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 72.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fuzzybunny-0.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b4688bd2470246c01269fa326def99775ca4ff3dcfa2be35450073aa359a75f5
MD5 97bd4704f54bd8fe579267def43cb69e
BLAKE2b-256 828d44063aa6534d91205403da5c5098ed10e747e9b15ffb47cadf523d947e23

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp38-cp38-win32.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f157ff1448e48f5905d91fbbe6e9c16c17b39712265be59db5fc73fe80c72ff0
MD5 93d1a4786c79b54941ba878576dd42a2
BLAKE2b-256 926b4b0dfb9aee2178447e21ea100c4cb2bbcaaae3ff93a9ab78a92ac32e0d10

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6df292721bcbcbf6c0480352836a66c6ae88ed494407325973415ebc5c4cb27b
MD5 438b44bdf18506b522261b2a8aefcc67
BLAKE2b-256 bda3c4a0419cf25516287197771fd1f57f607323f232280b80ecfc12d63489da

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ca5bcc73f64f1db5d26912940c03cff24abaa5964c40666d9fdbeb975b9c4ce
MD5 36b5bab946349d6148f66c5861e15b8f
BLAKE2b-256 87b6cca6bf19fb39c07aff59adeb2d92ca2807e9aebdacbc7a40239501177be9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

Details for the file fuzzybunny-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d3a297c85bfbc47800a1ef40a0b7184eb2e6afc79fcff87466a15b4e60039bf3
MD5 e807b62aabcaed3f216b93f99b031b4f
BLAKE2b-256 15296f059e69647560e194f1825f464a63ecdd4a1f784e5197aad0ebbcbeb0a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: publish.yml on cachevector/fuzzybunny

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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page