Skip to main content

A fuzzy search tool for python written in C++

Project description

FuzzyBunny Logo

FuzzyBunny

A high-performance, lightweight Python library for fuzzy string matching and ranking, implemented in C++ with Pybind11.

Features

  • Blazing Fast: C++ core for 2-5x speed improvement over pure Python alternatives.
  • Multiple Scorers: Support for Levenshtein, Jaccard, and Token Sort ratios.
  • Partial Matching: Find the best substring matches.
  • Hybrid Scoring: Combine multiple scorers with custom weights.
  • Pandas & NumPy Integration: Native support for Series and Arrays.
  • Batch Processing: Parallelized matching for large datasets using OpenMP.
  • Unicode Support: Handles international characters and normalization.
  • Benchmarking Tools: Built-in utilities to measure performance.

Installation

pip install fuzzybunny

Quick Start

import fuzzybunny

# Basic matching
score = fuzzybunny.levenshtein("kitten", "sitting")
print(f"Similarity: {score:.2f}")

# Ranking candidates
candidates = ["apple", "apricot", "banana", "cherry"]
results = fuzzybunny.rank("app", candidates, top_n=2)
# [('apple', 0.6), ('apricot', 0.42)]

Advanced Usage

Hybrid Scorer

Combine different algorithms to get better results:

results = fuzzybunny.rank(
    "apple banana", 
    ["banana apple"], 
    scorer="hybrid", 
    weights={"levenshtein": 0.3, "token_sort": 0.7}
)

Pandas Integration

Use the specialized accessor for clean code:

import pandas as pd
import fuzzybunny

df = pd.DataFrame({"names": ["apple pie", "banana bread", "cherry tart"]})
results = df["names"].fuzzy.match("apple", mode="partial")

Benchmarking

Compare performance on your specific data:

perf = fuzzybunny.benchmark("query", candidates)
print(f"Levenshtein mean time: {perf['levenshtein']['mean']:.6f}s")

License

MIT

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.2.1.tar.gz (9.2 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.2.1-cp312-cp312-win_amd64.whl (91.1 kB view details)

Uploaded CPython 3.12Windows x86-64

fuzzybunny-0.2.1-cp312-cp312-win32.whl (79.5 kB view details)

Uploaded CPython 3.12Windows x86

fuzzybunny-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

fuzzybunny-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (97.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fuzzybunny-0.2.1-cp312-cp312-macosx_10_9_x86_64.whl (102.8 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

fuzzybunny-0.2.1-cp311-cp311-win_amd64.whl (89.9 kB view details)

Uploaded CPython 3.11Windows x86-64

fuzzybunny-0.2.1-cp311-cp311-win32.whl (78.6 kB view details)

Uploaded CPython 3.11Windows x86

fuzzybunny-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

fuzzybunny-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (96.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fuzzybunny-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl (101.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fuzzybunny-0.2.1-cp310-cp310-win_amd64.whl (88.9 kB view details)

Uploaded CPython 3.10Windows x86-64

fuzzybunny-0.2.1-cp310-cp310-win32.whl (77.5 kB view details)

Uploaded CPython 3.10Windows x86

fuzzybunny-0.2.1-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.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

fuzzybunny-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (95.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fuzzybunny-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl (100.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fuzzybunny-0.2.1-cp39-cp39-win_amd64.whl (89.7 kB view details)

Uploaded CPython 3.9Windows x86-64

fuzzybunny-0.2.1-cp39-cp39-win32.whl (77.3 kB view details)

Uploaded CPython 3.9Windows x86

fuzzybunny-0.2.1-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.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

fuzzybunny-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (95.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fuzzybunny-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl (100.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fuzzybunny-0.2.1-cp38-cp38-win_amd64.whl (88.6 kB view details)

Uploaded CPython 3.8Windows x86-64

fuzzybunny-0.2.1-cp38-cp38-win32.whl (77.5 kB view details)

Uploaded CPython 3.8Windows x86

fuzzybunny-0.2.1-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.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

fuzzybunny-0.2.1-cp38-cp38-macosx_11_0_arm64.whl (94.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fuzzybunny-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl (100.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fuzzybunny-0.2.1.tar.gz
Algorithm Hash digest
SHA256 f37ac40083b31b9819e8fb5f7de9f7c1546371a67a05e92025c8ac68c9ca156c
MD5 b24bf4ed6d90752bf8af3ff988f0f063
BLAKE2b-256 b063b41df80cc0376714c89e659216d346842c0244a7e046a687aca8c2460d2a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 91.1 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.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6945203b7dd242a813c63fb8e78f453b17b69abb646de83f7c3bce1e57dc15c2
MD5 f1b48f029c26d50ae39863e929cbdbe2
BLAKE2b-256 62224bea3ff6d29163dc9962db87c16438effd1d542d1bdd95344d4b063ff8aa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 79.5 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.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 56917a690b90bd777f95ff42c5cfa2e7c546f142f21d0d5c983f5c0a269ab51a
MD5 227d129ef5574b0337228b52c147cd42
BLAKE2b-256 4913aef0bf6dc30b29d38741d94701df6b1a4e3a0378d7b6aceec055637efb72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd7732f154e42135fbf7fa20b32557bf897ffa80e282d47fc7a804c87aff517f
MD5 ba0a66b3f31452c01f2ec6bdcef9e993
BLAKE2b-256 5cf2bcb7554ec70f9fc286243d1b11fd898100ad9bfe2aa829207a23f9cb0349

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 391d3f7bfacc65a79cd4b6f0f001d0df3d617ceee0593fc08359256884e81123
MD5 284117f90701dafc8b8c003a96960493
BLAKE2b-256 72dafa0878f66ef404abe783e2fcf88090ba2e1dfe205df2a8d3abe14dad7121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5191fd7564a33896cfb01d2826a809d75f6b032ed40b7da7a5f5e81037feb289
MD5 77f80267d0a27ca5948b84328880e336
BLAKE2b-256 e222b4e9bcdbc65f3f20e264e634db14c9a740009e74647a891bac30db4ba336

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a4f77dd3258e31588ebb1c3749e0e3038bc6e3a3565b4007934a2daf7824b626
MD5 ffc24bdc439102bdbc85e7ae2c8debac
BLAKE2b-256 3c9114729cdb5012869cc810ce3e79d612126e3700670354956622e13773576f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 89.9 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.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9fd2e7674f118a7d93cbe9878a1ed63ae0f965d709890d15a107cfc21efd6b56
MD5 854410718456a5190e1c4b39328ca369
BLAKE2b-256 a571c3c3f03c2b0252a92133978afe25201ca33f7f6bebfccd7fb5308902c497

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 78.6 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.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5561cca190250d9cca47e86ef8bb4fb39dec000f6003207ade4677d7e83e0fc7
MD5 0f6455008a9b900079045bff04c7c235
BLAKE2b-256 951ac78a520464145da6320acd4900c0981f1914a751eb0ba91e9601f52b7586

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10caf6e58ebaca800656518fe161ceb7fd32c1f174dcf4bb7f696c9422ffa667
MD5 f535ec7a05516143df6ba1c0096dcb64
BLAKE2b-256 723f26f9e4391005aaacc04c8987b0d1633a6c10f7a11539f7749023f2e5c91c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 438f0f3caf1aa49a7749b3e2ef777f444fb55243bd885560b464483886eaa817
MD5 6fcd105182edfbf029d668665ee4d10d
BLAKE2b-256 64fe77cd095339447f4211daebc4b0b80b33c6f25dda790848b7e9d77c87a9fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8aea0a3017b6a3a7e4dabe230b45d5f212f0b92a6cdc001be2f390c8bff2a30b
MD5 0fc02f3a462436103f96e0cfa71346d9
BLAKE2b-256 f3866e38eab8b0ecbad53b347fd21e4fa9ee461d809fc7e201d6bb48ad8b327b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 59d17f6bab0f08dcb6f358e8f93b47d1266ec1c8d99704f9a5f783ef7bd5ab13
MD5 82cef1f52ff86744c523010b380f08f1
BLAKE2b-256 94ed75dbe88660fe85f1abb3ddf29df0dea557b7f4b37a08780d625d13a96d66

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 88.9 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.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5ff0439fe6748e4443d1dfe68d411cc629ce4abab878a5560968e4d15de2ba14
MD5 6a67afddf1119520282d24591056c40e
BLAKE2b-256 d62ef6aa6f8ccf0ff8b3a793cb38c08e8e56ffd8f08bdc63306dbc91976b1d96

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.5 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.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 05def9db079a8888e3f628e73f765ed96d5da31818dec2b23300b358f4324c65
MD5 fcadb3af37bb291bbbd6ac8436ad3f0f
BLAKE2b-256 47abc34e5c1200e88caccf237f21f2d722849a111afa915298319542790892f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8d13a12ec71975618dfaf03917ff13e6a9c771ed5a02bc0213c3e5370f6189f
MD5 6b74ec2b9e7c8f85414ec0f1b7926124
BLAKE2b-256 23479377c68655946b510968345de6cc313524f362246e09a54a0bbbcc871c71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b01b59dbf6960507c1d11eba24de46663815a5d4d6ea5d68d6d2ce04df542cb8
MD5 ee435af6ff57780668c4413f1fa1794a
BLAKE2b-256 a9d09068cfb70ec18d7bf8a78bb73623fa673033f15eb6bcad479906e47f60b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94c55c72369e8a050505ffcbaac8fc9f150126b062905c12b94347b5831a8869
MD5 9357b8035e2f5ba14b38efbe36b4c511
BLAKE2b-256 a270c34d9582e302837081b22a9c25bcc6e9a78db7e54411c2e8c33fa56426d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce6e42a69f8595d697749d55e637e9f457dc93c556b4401425f69168b147d6ad
MD5 01a465b9548355a244ee9413602e89bc
BLAKE2b-256 e0233fe2865b395bb62497e7140bd7afe8abfa82e8690d7650e32369a828c41d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 89.7 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.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5d5a0abacff1b659d3440ee075e8b930d973a8da81aff44064dd53e7bd4d96d7
MD5 049c4c782fa12dbfc7bd82ba432ed778
BLAKE2b-256 10a704fc22d1f5248dcdcd2858de19db3dce0af2af2a0ef68685c4c5b76504cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.3 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.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 375aa239bcdb110ce951d1bfabceb6c792ef1af613054c245aea85051833c366
MD5 ed50e7b535db27f32db66c03e8a12eba
BLAKE2b-256 b5b91e28cc96232e97760ce2fc9c04345e783cc392dd4aaf26244b4d0bd8963d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a20ae290d9c5a400ce8995475faa9865c036e12cb39242bca38246f4610a868b
MD5 a9059ef7e169c501ea54dbdab00dd245
BLAKE2b-256 02d74c4a9ab7d23694856c223d5bc38374694b9e46e82f37bbe044d57ba46711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 340245e65d81f77a2611fef1d40b1550bf9f22e36073602416c2b394f736b309
MD5 8382c777819d4de9a223c00901af25b6
BLAKE2b-256 f0631ebb6281f3418859e00049545342cf4cbd4576b7e54be15dfedb50fd1ad2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a84a830958b60f5628d98a851bdc834a6e70040b0db00b4f5783cb3566b4af6
MD5 9ade3f34b0c6f6ad683de073c2bda4f3
BLAKE2b-256 aabe747f684e8cbd0bd9b5d4935d1d25e9455abb4aad43070aecbd45fbfce103

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a780c9c6c0969079eae79b501bcc7445f9893e4a8418435c09ee56f0c5028d9
MD5 85fafe1fff90e1a411aa8f6d3b74143c
BLAKE2b-256 8da6c228543613a98066debb8d61cc35fa9a08651ae4ffb1ab9d339eef23a565

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 88.6 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.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 343693cefe8319a09e7820371c651e2a32808e49e3f26e4b2c6a32df3b0ab661
MD5 7f3119a8aa015f82a20860d0d1b260d0
BLAKE2b-256 6ff9c6e924d003361e6fd3bfd7a92e81fddbac75b380289f7dcbfef19234523d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 77.5 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.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 775f17973fb36468f60ceef382ee75e125863d5bb84da20bc638c95f0bbd6f6a
MD5 02c652433c60ecf26cf9ee4f8819a3ce
BLAKE2b-256 8c8f2ad22ab4a5f24ede71ecac02f3fae73c6e6447a8d3fc9571b5db6428c03d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92c9c2ce3ccefbbe9a0ca1ff647450b71570eaf0e775363379b13c9e2b7f68f2
MD5 1968465e83272aa4a8996e9e733123b0
BLAKE2b-256 6e409eec19fca3309919186871bd4cfdd32143edd682c142497f99bf2d9c5fb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7179ea761b63cc7ee579598bdee5c3abb39f9e0a8db87f37a1ed213af703b0a4
MD5 f90afad118f79bec134db29f2e9cfe2b
BLAKE2b-256 e7575c3c37b4afebc4c681f570996dc99311f32c508c96951d6262dc5c3d85e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ff7c6438755c8828fbf1a0f9883455911108e0a0c11f05c1f85fd5ff74f02be
MD5 74451bf324e8a41322cd2b37ae584eda
BLAKE2b-256 c33996776c207f238318ffa131dc48c61954bec5781d280fc66da1db7bf505ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dcd026aca61c36f6203bb5dfdd809b1f5923f232bdb361d6caaf86e11f8aa151
MD5 f29b91c09fc414efde9a442708cee5f3
BLAKE2b-256 386f96462f002551bbdc0f0ac3df07044be970d3d42cbe949b6539d8345517fe

See more details on using hashes here.

Provenance

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