Skip to main content

A fuzzy search tool for python written in 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.2.tar.gz (6.8 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.2-cp312-cp312-win_amd64.whl (86.5 kB view details)

Uploaded CPython 3.12Windows x86-64

fuzzybunny-0.1.2-cp312-cp312-win32.whl (74.7 kB view details)

Uploaded CPython 3.12Windows x86

fuzzybunny-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fuzzybunny-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

fuzzybunny-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (92.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fuzzybunny-0.1.2-cp312-cp312-macosx_10_9_x86_64.whl (98.2 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

fuzzybunny-0.1.2-cp311-cp311-win_amd64.whl (85.3 kB view details)

Uploaded CPython 3.11Windows x86-64

fuzzybunny-0.1.2-cp311-cp311-win32.whl (73.8 kB view details)

Uploaded CPython 3.11Windows x86

fuzzybunny-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fuzzybunny-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

fuzzybunny-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fuzzybunny-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl (97.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fuzzybunny-0.1.2-cp310-cp310-win_amd64.whl (84.4 kB view details)

Uploaded CPython 3.10Windows x86-64

fuzzybunny-0.1.2-cp310-cp310-win32.whl (72.8 kB view details)

Uploaded CPython 3.10Windows x86

fuzzybunny-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fuzzybunny-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

fuzzybunny-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (90.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fuzzybunny-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl (95.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fuzzybunny-0.1.2-cp39-cp39-win_amd64.whl (85.1 kB view details)

Uploaded CPython 3.9Windows x86-64

fuzzybunny-0.1.2-cp39-cp39-win32.whl (72.7 kB view details)

Uploaded CPython 3.9Windows x86

fuzzybunny-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fuzzybunny-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

fuzzybunny-0.1.2-cp39-cp39-macosx_11_0_arm64.whl (90.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fuzzybunny-0.1.2-cp39-cp39-macosx_10_9_x86_64.whl (95.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fuzzybunny-0.1.2-cp38-cp38-win_amd64.whl (84.0 kB view details)

Uploaded CPython 3.8Windows x86-64

fuzzybunny-0.1.2-cp38-cp38-win32.whl (72.8 kB view details)

Uploaded CPython 3.8Windows x86

fuzzybunny-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fuzzybunny-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

fuzzybunny-0.1.2-cp38-cp38-macosx_11_0_arm64.whl (90.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fuzzybunny-0.1.2-cp38-cp38-macosx_10_9_x86_64.whl (95.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fuzzybunny-0.1.2.tar.gz
  • Upload date:
  • Size: 6.8 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.2.tar.gz
Algorithm Hash digest
SHA256 136915a1ebd15075a9d07d5539dd263857d1e972ef754ee296da348ab97eed30
MD5 489f19849065fed3f1139c5ae4d00963
BLAKE2b-256 280fde5c962a91bafc3196c96d9fe837710f5a81c33bd4598d7e541f96fb7d32

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2.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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fuzzybunny-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 86.5 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bf566f54d7b025d67566590d51dec5569e14d6ef3f413d938ceab5564bd82224
MD5 0da03cbed63500af03c8acae52a95696
BLAKE2b-256 d6956cd52a3d848dcf0ad29d535373d213ae558c73544780cde5961a73fa267f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: fuzzybunny-0.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 74.7 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d0e36ece07e9ef3be8ad6b95e5bab0ba6073c80178fdd3d7bf4ad97eb1565c8b
MD5 11021a6e81c2d827a056fe605bc36514
BLAKE2b-256 0a7fe816d8c41e8698df9c69a595bceee439d492d9dbeddff506185ed73dae3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b760aaabbd7055b69fdd6fc72cf8e20a160f5a22558385204cc80e33902f59ee
MD5 6374df60c5d79684ea36148a8855fe15
BLAKE2b-256 fcde6b55a28c604297938037b0dd26e47ce65c17f6bb116484217b0b5af3b270

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d3ea4e1a6d2311fa2ff1e03d20f123042b565f810fca3def701f13cdb4ff74f
MD5 560b13c30c6315c259e623ef408475e0
BLAKE2b-256 1edeef27fe205db2c5fbb082feb2c63ab59f28ea01a25efcb3d6d5dde475266f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13ede5c598ca279d2abec567ebb90942e069c8624bcd902a04fc41878c836bfe
MD5 73abb6796196a7694669bb514003c272
BLAKE2b-256 f871d5c90125f45119de16a99ee39bef3b93e9a5e1fbfd9fb3f9e42c70aa7990

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89db634c5982f05fa8de50dd853e51cfaf8e7535c2bb0a24b3865fdb00361aa3
MD5 aa1d224bc099124b0b50f10c4674128f
BLAKE2b-256 353419bcfdc4175e1a152ac09d3d1c0719861a7ef3826bbcc212f90b9d2b183f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fuzzybunny-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 85.3 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ede1ae1a18fff0028ef57491a26a8380cf4dc3cfe83c686632144e115ac8e6bd
MD5 056469a5b7f976077acec9abbdaa6253
BLAKE2b-256 f23004a5c4f6d38cba628798bc6ba37143434c4fefffc3533ecd0edfd7abf70c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: fuzzybunny-0.1.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 73.8 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 100a45e0ca2da3c34fb887aa53f49a2020fcd0263da72507a5a5bc2ee5920082
MD5 009fe28a8f09b3c9fe5de0cab563cafe
BLAKE2b-256 451fff6ec2ca8b351fe41138fa91e380b023a9e07b70a80da192eae03e3a174d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9dff86faf40d94292a1d35f753fd89663eccb5b41129d29b7fe62417aabaf465
MD5 7357fc75cc06ef942d40eb65439acd76
BLAKE2b-256 0a343cb235ab6e0c25e027ac3ff3774c01a31300fce5764b0e3a039d3164bc6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5c415893b163150a9dde1de96683b3bbd2ab0e8e0be08ac9ca320e18190c44a
MD5 d4952a3ddaaaf8b8e9111903ae6daa84
BLAKE2b-256 e20de67a491b9d0489ce0f930f166dfd52b84378ac5bca4da6294e1b294ba787

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c50491a6a5ccbdb443c05fb3e8c04790d0121dceacee538eacfa126ec956a3c
MD5 a029dc9ffd016737311b356d1ac15cbf
BLAKE2b-256 b3210f3495e99e6a91d0a7c3e6632913bab7f0a368d6f3075acb6367c507caa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f0530a59b9476ea0af2dd93659071fe5e69f5bfead18bc9bd9af5e6c3285630
MD5 d0329d87d1606d2464e6704900308091
BLAKE2b-256 2cfc0b7b9113f0014ae595a9bfd9c5a1558ac0220f75c3080f410a574f905f68

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fuzzybunny-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 84.4 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ef7c8d953a5ab93d92d0dcf21d98412659152818c61c0a488491606065becf1
MD5 89aefc785e6b22f1b52ec29667d632de
BLAKE2b-256 798244a9ac3e62a9ea04ecf525db1c7c8818c481cebe7fc0aa5fc5f1f69677f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: fuzzybunny-0.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 72.8 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a06d17cfc123f1d1572277f9185a853b3bf5dda886d5176f0e94adda4efe7927
MD5 d646fc0b37bacab748fc63663c5c92d6
BLAKE2b-256 137bad8cd82e146b3f14f2b418abb4ee777649210a2492c345f3aff41a77c0ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5d3e61181c3387d3f33b83b700fdf64f235185f69bc6de3cb22487f8daffcf1
MD5 944e996e4961c6f4dc607990ffcf025e
BLAKE2b-256 d241fa448e12d28e6933d40e20ac2200b95cd1c2baeb2fcf0ab2e7ad355dd699

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06b897ea17588580b46d70fb4d1cd8f5c0ec617a6331fd7af94aa0a22ab057ba
MD5 b5311dca92be3581082007f86c4558eb
BLAKE2b-256 e027c4eaaaf35c121dcd5edcad8ba281a4945b3d9662aed7e88ea562d702408c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c86b36dedff179d074fdc7a97d1a66ba42b655bb3bd6141da004bcce3968ad1d
MD5 b29773bdf92e9b099e8b7192c7741b2d
BLAKE2b-256 b800358408c4dc1a9d187292a11d0f71d86b79a0c401b2e8c812319c57bb578b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0bdb56438ae8dd2d998296fef8e8c57a53e8395dc73addfdddb1c538a0b97eef
MD5 87cbd0ba5502a1b4f8377e638c9be3ff
BLAKE2b-256 794db4bff4cbd1380bad39e21fe8799349d56e34704b2fb6bb1de1b0ba8e57e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fuzzybunny-0.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 85.1 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3d3f4e34e7cee221440b6bcea7a8e03c84326542c95c16832bf669fb7a9cfee0
MD5 d95af4d31c3c27becaf0ff56cfde791e
BLAKE2b-256 8ce89db656f642f0c66073b718857c71c4fb136e4e4b28b737b1f217f42f5561

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: fuzzybunny-0.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 72.7 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6215e221fdb89307a990b3b9d677dc1144dfba36cbe11b14b5bc8cd902049e11
MD5 41589f8cf84cb5d742701ada8a63f353
BLAKE2b-256 363d67309da05508e8e8e50ef07017d80403fa22dfe9e123250d6c5c3e4f64aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d96b24012e92ff06f26b6b3f9a936d712605ae2bee60be52126a71e326c74c2
MD5 b4e06a1270cdbc815e03bedf5d833f29
BLAKE2b-256 83004d91c7d2efa4886ca5bd14f223ef69ccfd7322a63c40630cf3950d71bd35

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30ce15542d916c587c5350b822787b92451a032d0831c34ad4f055e1a71923ff
MD5 4a301a75c644a893aa26f3d04d517fc6
BLAKE2b-256 d98c1a9398e344ee082177ac534262d0d0d16bff574c5962eb2b57997d620e4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6d6a0a50a93c0f8a5affd57f8cf1452d81fb3abb1fc2e846a3c199739394886
MD5 76beba73cda6bc9a916400496201e6ad
BLAKE2b-256 943853933596c5c9155b0416990beacf8643eeca3f5ea93fa3b200ac0e59b417

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d3f94111170554aae916d5a73ee9c6cceccfc730916fa8a63f2e95886aa4d430
MD5 01a60011a1b034508bf1611983ac9773
BLAKE2b-256 14497e310f288c404039891a82187ad555637162c076cfaf20ee2e413a24fb36

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fuzzybunny-0.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 84.0 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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f88333c2e5e8ec062f72eb24e881bcf0e9896d0cfe70d5ae14fcb5a5e7a9757b
MD5 a5fbe7efe7212b52fc11ee0781ad89f9
BLAKE2b-256 451039526a9a6905736f5268a59953b5230cf1766b085d54e47c68ab3cd44dfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: fuzzybunny-0.1.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 72.8 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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 26f60f105166828b3e74c321f9e83a51c21ae9441d75d38670beafdb98cd74ae
MD5 e8e1e6d43d49bda70e3f41e11cfe3eca
BLAKE2b-256 c2c5796e5c83b373263500a664e841bd784b5cb99921808ae587456448310d80

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd3cff15b8841e5ff47c404f0863b69e93af6eea40fc066fc5c1c9901024c3b0
MD5 6540bcce8fef5f48bf369eff63040710
BLAKE2b-256 5dc1c0ee73fd99c47b84f46375007955b2ece4fe360886b850702333cc41cf62

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 54fe00ccd8ab16ed25b46a1259ecad3b55c85849591a3b771d81631ab3d4d4b4
MD5 9309cb220a59030d94d6f82e227b5698
BLAKE2b-256 11c80874b0e5513a3874970ae5b2695164dbf28277c4da2ed31b1a608163a43e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 def460c7d5618f342342d6f029dfebb0dcec8a2fe7ba067a3de4a4e825beb564
MD5 724cd52c9cc6a80434067edca36b83f2
BLAKE2b-256 504752e896d5660be2c02982856c9d5ea5504839851cc194acfb65006a1103a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.1.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ab6ea3b01a43430467c97dd271893ccd5c7940501334e67eaab2e093f83e298
MD5 f6cf6b2c487d54cc9959d39d90bbca6b
BLAKE2b-256 aad3a7b1f1d7efba49933e3cdb61b310d02dc5e40987c5cc55a2824197b0de89

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.1.2-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