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.0.tar.gz (9.0 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.0-cp312-cp312-win_amd64.whl (91.0 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

fuzzybunny-0.2.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (97.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fuzzybunny-0.2.0-cp312-cp312-macosx_10_9_x86_64.whl (102.7 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

fuzzybunny-0.2.0-cp311-cp311-win_amd64.whl (89.8 kB view details)

Uploaded CPython 3.11Windows x86-64

fuzzybunny-0.2.0-cp311-cp311-win32.whl (78.5 kB view details)

Uploaded CPython 3.11Windows x86

fuzzybunny-0.2.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (96.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fuzzybunny-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (101.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fuzzybunny-0.2.0-cp310-cp310-win_amd64.whl (88.8 kB view details)

Uploaded CPython 3.10Windows x86-64

fuzzybunny-0.2.0-cp310-cp310-win32.whl (77.4 kB view details)

Uploaded CPython 3.10Windows x86

fuzzybunny-0.2.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (94.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fuzzybunny-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (100.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fuzzybunny-0.2.0-cp39-cp39-win_amd64.whl (89.6 kB view details)

Uploaded CPython 3.9Windows x86-64

fuzzybunny-0.2.0-cp39-cp39-win32.whl (77.2 kB view details)

Uploaded CPython 3.9Windows x86

fuzzybunny-0.2.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (95.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fuzzybunny-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (100.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fuzzybunny-0.2.0-cp38-cp38-win_amd64.whl (88.5 kB view details)

Uploaded CPython 3.8Windows x86-64

fuzzybunny-0.2.0-cp38-cp38-win32.whl (77.4 kB view details)

Uploaded CPython 3.8Windows x86

fuzzybunny-0.2.0-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.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (94.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fuzzybunny-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl (99.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fuzzybunny-0.2.0.tar.gz
  • Upload date:
  • Size: 9.0 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.0.tar.gz
Algorithm Hash digest
SHA256 92596f59bb613c0954d9ae26a6dad914eb8eaac30b91b23a39dbaf3557550aad
MD5 e0fe569007b27bcdd012916e55f09b87
BLAKE2b-256 d7a0922373060612d41e68c50d3cd2b897b87d1f82ed32d7b2da7fb974f4c31b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 91.0 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 03f5bc11026d839d645d25c4869a49ab2581884cfc8a1bff5931b244b28f8995
MD5 ccf08b2bfd39bee7a7ef83e1a56dfae7
BLAKE2b-256 cbe9bdbe09f2da496c190da645fbcd7623d322fdb8f9a23c0b2e1eef14d0ae3d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c38d3b9fba3808822d9247667f6321f08e5c35c9d9efccec7bb079abde8e0cf8
MD5 407197f338cb64eb5cbbea77bda830f6
BLAKE2b-256 7558d0940046df5764310d5cbb8f404d2a7bd320ede39bf8fba7ce47c252c1fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7dc797ad3d2cfbb915897ad5fa20f10d216840fe56a55d012f524954db889952
MD5 10acb597210f1170ae1d64463b8e4b70
BLAKE2b-256 731f04863947015921e962042ab103f537324e97fb6e160145e9cda34df78948

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be13bae71ebb86ce2753e989be4e5684e5797b44556f234e135291956721894c
MD5 2f109308c232eb877c0a3c160c2e8198
BLAKE2b-256 8e84724fd1023d53e43a5f1ed5692982f6d9425212858e6c1a1385003c0415de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90e1b619bc3756e13d92b76b2512d946c78f3f0b87611370332fb95d8b47db6d
MD5 7be891400d7ad3dbd65c88570bfabc8a
BLAKE2b-256 6977366b67b81b54abe7855d4d16699f14b2f13f19dffaf303343391244b6e3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 997f929f5facfcb32990f24545752f980a92be44fb2a1bbb29c0dab31ffc6f8f
MD5 507bac7a87a2ce133dbbfa0b204c0682
BLAKE2b-256 cdb53bf6908886d0402cbe359b943c5157f59e45cbfd40ab85e0e9b64feaff74

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 89.8 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 73b023ec14e5daac148bc0fd3fa2d263225801620378b066a7aebc724cdc5656
MD5 7c2f39df24366fcc191c5dd8f5f0ba4e
BLAKE2b-256 5d3d1b0fb6393937617bea75aeb90e661e961bd4a87c26eb92233ca1e25b82de

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 78.5 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d26c5eac579c3963a4e3489c56d96fc436724501016ef76d95c32a321d881095
MD5 5ea00b6304b6ae3467547e58fa73e027
BLAKE2b-256 9036e2a159c477a0c1ed5e0790284784d195d23f91c09e6459a60e1d91f13303

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca5d016b448e55760329c9fac78a02bf2708b2e01dfea8664fecefd51765516e
MD5 d38d1916851b81502e73cf4f05cfe7a0
BLAKE2b-256 1b0dbfc3297c85f51bce46070ce6b3fcf4da9c3c72fce9a5c3748d6eca4047fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 90b76f1028c936817a595b491e1b5c88c124fb4d97e83d1143ffcca2af73e8a3
MD5 6f72d1274a98c1d5e59ac33eaa2e8c03
BLAKE2b-256 e84d0737908872abfca6eaaeac4825774a77aeb759e711dc18133978ff527f5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a07d242e64cfc2ffc4ba9d3bb6b775402cdf029f461704801060a75dbd1c9393
MD5 915f3685524a39bd42ddd4b741c40b9a
BLAKE2b-256 5834069d56d213e078f59176b3749537500e966d31be634f64289d1dbd340926

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d38012681ddf258c694f738e2300bfc432a071a93c8afbe62efb7cdb590f3ed
MD5 0f10803c08390918963e728c8746cb76
BLAKE2b-256 73df79292b0a956b9b0f856245ec870c18c0177ac4ddfc603b9c87855b85695e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 88.8 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 278faa03b4628ab714306bd0bb79fd4af1cfc57980c2fff0729146b299342caf
MD5 46fd1e2a48e6a6dd70355fc3d1cd9b82
BLAKE2b-256 b7c0bab7204b68451fab081b8fa9baaa4f6e9163ec1971d9eab5542a4eb06141

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.4 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 85d05929195a70a41dd01ca293a1dd1f4b5b237089f40b8b96b892297c746d1b
MD5 690a2910655683a68510077c0fb8deff
BLAKE2b-256 24f143132344893744a1f6db543b7670a4712d1f49f918e0f409fb4e020f1dad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 759f988a505061b51802aafa7f6f38f39fe319d40b878d7070f9005ccc3c7824
MD5 54af668156607201ae230cd470f047e9
BLAKE2b-256 5830810b43f20224588d30373767c6c2b2c3326ffd2adb7fc09b3c867ea0ffa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3275efffce43bdb784d98243c8bad39d6b520b9f4a4ecbc9fa40b4478192a040
MD5 0830725cebbcc2e39005dde2ac49c453
BLAKE2b-256 ba2d8ed373ecb8cc79ea6b0f7326a9f0b1be6fc3287265b9e2400cf98292e908

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5eab397ad32ceaf4051c23771ec49941e4d68277d4b43c88004f91f5cc3ffc0
MD5 c479f670e9e1ccabc71c6a6f40d25db2
BLAKE2b-256 6f8824e8b72b722e2d7608372d7c5899881f6ad22c3014530a2346d7c184099d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e88e8d57ef602b3987d392508c788b63a2016222f8beed68313aaeb4ef48f64
MD5 556693b17e3fa9ccbb400ebede87305f
BLAKE2b-256 3519baba97c59acf8e4933557b93b1d1210c9580a1c01f542da26da3b1803a1c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 89.6 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0d5151144f410192c51746265c0506f159ea1aee7017ef59b5dc8761f06538d6
MD5 9bb03c7dbba9d17f4ab3d9c9c445204f
BLAKE2b-256 57489e74e61c2327687bc400574bb24bf658369eef69e64e84b3decde4c0fdd0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.2 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c46541d85d4ca3c0188620e066e66b0a376ff43331590cc218917aa6a0625ea9
MD5 89769d5e4712877da26ffe10f4a43fb7
BLAKE2b-256 6b2d4c204ebf9ea3dad5e651bf51668abe389a442dd69b0bec4c55495d0d1d2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17f21676e2da4e1cd1eeb6c518b0858b4875484411b3dc8a79586e4b03ba75d6
MD5 3d6e255c64c288951f713539a7dcea8a
BLAKE2b-256 1bc014a7d0361dfca9aa66c9fbdf47fd285e24875e66ec2200a3b5ebb14c456a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f481a6e1a6444d1fec852f857ae60c82093a65e7214ae4b10c6db493983150c4
MD5 26082c81dcf94ef4e84839d274ed79ff
BLAKE2b-256 b9e3a6c389f779901fbd08e39de20e5558792f3a1a2b6f222fe325bc25eb2092

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71c4ec053cece4e4899d61b39c69b88bff48202f78b82c031451464da31e28f3
MD5 cea168de6d68192f8a1da0ca0b1e54d9
BLAKE2b-256 4bf50fa60b1646dd109f41fbb7e4afe11857d8531913cfa0a8bcb440e311a559

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee29b86e2f31b38d557bfe606d14c4fa839befc5a9ef2d181170ad40caca80a9
MD5 a3a9fc16ddbf629d5881e1b8d2f20922
BLAKE2b-256 c88b75f53d4c9e9769f2f177a3cb9c477a63ca34e976adbcb2855857808302a7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 88.5 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1225697a5043d72a8e4f5501b7a0d998385064c7c09fa1c987cbaabccf4392fb
MD5 fca76c39aa6ec98c4a86f8f8d463120a
BLAKE2b-256 4da2bd74513aaca97b6306dd07f827a0aea85ad6cb761424ac4828942fb384c3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 77.4 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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 19b70cee8e0bc37fb4943a2c8b66e6f646fd9506a3cb67b5d17b84a4e2609287
MD5 8efaecdd42df37a57ab918eea30528f0
BLAKE2b-256 e1dedb5ce096c1e4111c38be555850b42bd7052b7d2c94b24b8bf31b411cf2f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28cb0f4e73cd2b7c4d463c3ca5db0642f9e2b6a665b4852ae6a9e32565ab5203
MD5 cc875fd851b5f759d204dadfab20c487
BLAKE2b-256 225919582b73fccad2b0aeeefada70fd6e5b35d8a4b8265244c72312ebe8864b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a2293c78318d9229494aca4498982781548b3787be1ce11982d70aec90b0538
MD5 ea46f0c940e70cdb460e910e2c8e639c
BLAKE2b-256 57e426b69d69d86f6120e7c75a926cda90f83c0f86a04bea28b626c780a3e60b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5a45756ea55b3519b50ad1832c952087482ae46ce68824c1585354938bed439
MD5 f8e7b4431725afe2cd34d866b53b1cc5
BLAKE2b-256 b8e7fbdbbc4a8271c604cba67d5e2e5e31103f1fd3432c9006268c28989c3072

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 20401be7dd25ec569e60e097eca80d896b150eb67e737a68d8615fa51a12303f
MD5 d6a745410c465248d68bd51ae6bc4d05
BLAKE2b-256 668b8a82208520a93df80b7c6c39556e1a9bc2853031821b0bea13e8886e0d0c

See more details on using hashes here.

Provenance

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