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.
  • Thread Safe: Releases the GIL in C++ for better multi-threading performance.
  • Type Safe: Includes PEP 561 type stubs for full IDE and MyPy support.

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.3.0.tar.gz (15.3 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.3.0-cp313-cp313-win_amd64.whl (106.3 kB view details)

Uploaded CPython 3.13Windows x86-64

fuzzybunny-0.3.0-cp313-cp313-win32.whl (90.1 kB view details)

Uploaded CPython 3.13Windows x86

fuzzybunny-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fuzzybunny-0.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

fuzzybunny-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (114.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fuzzybunny-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl (122.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fuzzybunny-0.3.0-cp312-cp312-win_amd64.whl (106.2 kB view details)

Uploaded CPython 3.12Windows x86-64

fuzzybunny-0.3.0-cp312-cp312-win32.whl (90.1 kB view details)

Uploaded CPython 3.12Windows x86

fuzzybunny-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fuzzybunny-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

fuzzybunny-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (114.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fuzzybunny-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl (122.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fuzzybunny-0.3.0-cp311-cp311-win_amd64.whl (105.3 kB view details)

Uploaded CPython 3.11Windows x86-64

fuzzybunny-0.3.0-cp311-cp311-win32.whl (89.5 kB view details)

Uploaded CPython 3.11Windows x86

fuzzybunny-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fuzzybunny-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

fuzzybunny-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (114.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fuzzybunny-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl (121.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fuzzybunny-0.3.0-cp310-cp310-win_amd64.whl (104.4 kB view details)

Uploaded CPython 3.10Windows x86-64

fuzzybunny-0.3.0-cp310-cp310-win32.whl (88.6 kB view details)

Uploaded CPython 3.10Windows x86

fuzzybunny-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fuzzybunny-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

fuzzybunny-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (112.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fuzzybunny-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl (120.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fuzzybunny-0.3.0-cp39-cp39-win_amd64.whl (105.7 kB view details)

Uploaded CPython 3.9Windows x86-64

fuzzybunny-0.3.0-cp39-cp39-win32.whl (88.7 kB view details)

Uploaded CPython 3.9Windows x86

fuzzybunny-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fuzzybunny-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

fuzzybunny-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (112.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fuzzybunny-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (120.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fuzzybunny-0.3.0-cp38-cp38-win_amd64.whl (104.0 kB view details)

Uploaded CPython 3.8Windows x86-64

fuzzybunny-0.3.0-cp38-cp38-win32.whl (88.5 kB view details)

Uploaded CPython 3.8Windows x86

fuzzybunny-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fuzzybunny-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

fuzzybunny-0.3.0-cp38-cp38-macosx_11_0_arm64.whl (112.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fuzzybunny-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl (119.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fuzzybunny-0.3.0.tar.gz
Algorithm Hash digest
SHA256 989b0283d619b1d5f2e806cd2a8bd2dccee3d586075363e1c756ae96f9e9b06f
MD5 6872a1240c89e59f4b58916ceb589d2a
BLAKE2b-256 5363ebfdf49404c6b1ae9278095e534af5508b8bd1c19b54331ad621b7a3dc5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.3.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.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fuzzybunny-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 106.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fuzzybunny-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6b143c2aaa2a30f9fb02e245a917c1d2d22f964192712979f1fcfa4801ae01f8
MD5 35bb758ea2033474026f533a57407627
BLAKE2b-256 ef9bd92f504b923db06423e43c7917eefd4f0c0c5266346a3b9f694996dcdf62

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.3.0-cp313-cp313-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.3.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: fuzzybunny-0.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 90.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fuzzybunny-0.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 72f3427339c59516beb25814bd121fddac65d52329baadbb98e641b32d9e569b
MD5 4901466b57153d9c586e4d4b4cc84ff9
BLAKE2b-256 586ef65aeb3108a6c9c60978bb6b82024e9880e97252fb45cb1dbad8778c9426

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.3.0-cp313-cp313-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.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7255470a08c4165ead445cdbcfdce79c061ff871520770a903914b66eed7cde
MD5 5c6fae3f48275761cc068aa2f8fadf96
BLAKE2b-256 693e75acec0943df4a1eb945807aa399576072457aad2e6b82da4a4d1f83eed9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.3.0-cp313-cp313-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.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa2a7a81b0bc5a34a11222ac5fcdea7863dd51ddb872bc784acc97d5237b263f
MD5 169f72d8acefeb78ff41eea90dafd74f
BLAKE2b-256 ff2a11e8b1803673efba1cca61d3a7ed10c307d0309046ce173c0f909bf3e222

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.3.0-cp313-cp313-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.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b56e9cd943475c0b0b10046e1dd119eb334807a3254e116fc95a1f88d8812e9d
MD5 31d1ca228e26339acfcd2a7ed0c5ce0f
BLAKE2b-256 a9f688877760bb6ef6bd35fa76dea8dcba5d378825f3ed84031b1188d56c21de

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.3.0-cp313-cp313-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.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f4388902a5781f4ae1c710b7c3a7ffa52c574e76074e5349a43f79fa34a8ae4b
MD5 55296e4007b41bc54b12e79af2af5a6d
BLAKE2b-256 a9f5d35c12751f2f1f7da9b0214884cdc98403f322b53a46b5a45e2329ebd9ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.3.0-cp313-cp313-macosx_10_13_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.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fuzzybunny-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 106.2 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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 de823d42a2b7fd1ecb740509418cd53fe36de09fb280849379e06f737c5c4852
MD5 216b879c24e9795d8fd6f1aa5b020aab
BLAKE2b-256 82d30d20110067ed5130d90ea397356ff39ff624038dafeeaa46fab8091641f6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 90.1 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.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cdbac33c129a3ac6325ccc736117768c5ba8d68822c548d78a81a183db41b0e2
MD5 b6598ad952974f46255c3937d6a34858
BLAKE2b-256 632792435babde3f32314012ffe4070b7038272147245568f386b382df1be474

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 415bdf5001a7be92d72e0cccad129ab3cce408f445c990d3c76a0a54cf383678
MD5 59ed09d61e7922df4fec8ede3c5792d2
BLAKE2b-256 a83c25d0131521b05e91996a1c8ca846f98d33a14f23fb5dc31dd772c82e1e97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c06077d6f4c72392767b7f47658641ddb1cb2b83f2590441d74f7287a9f5bca9
MD5 06c877a88d8cc9c8cd65ed42a2b83a3b
BLAKE2b-256 704941c01d993c6970e5793d3d0630eaec481c633f694d4c828e09f33c5c88b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62af2d10498121a988a9f3c432aaf16147500c568281ee22d0347d09d2e301cf
MD5 13637f0d822bdd8b041a67f496af04ee
BLAKE2b-256 350df11438dbd354ac23baab53a0a7cb4cdfa32c19e32dfaf702f368b7666a6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.3.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.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6ce4ef473a19e25108066c4e366aeb763a8d4f4795bb225f806feb52b5110cbc
MD5 064e5b0b706a3926d3434fba9b0baac2
BLAKE2b-256 604f1d2e6f5348413d4a88f00d27d5da05c7cc04eb050aaddb80ebf28cfa6494

See more details on using hashes here.

Provenance

The following attestation bundles were made for fuzzybunny-0.3.0-cp312-cp312-macosx_10_13_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.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fuzzybunny-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 105.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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2510838ff4c0237075553562ee6f25f0278d074f7cf860855f5655e0e33fce2f
MD5 e81ef2eb2727ccd29a12fed2957b81f7
BLAKE2b-256 3d0aee1779ee0350c4ae0a31285421db86a2bd3119a10ac1a6587779e6fd0164

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 89.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.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 52f1102cbb7f4b639a3c75f83011719a3d02ff57bb126b732f6c2f6b61cac093
MD5 7d3aef2bd14b6d5517c1364f51488e00
BLAKE2b-256 23a6b319b320cc54e65d20806ddacd792958571e3f19c138373ec2717bd4940b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 488f6a2fa7c02579e39e43ea3f7df0002fc5f3344d8f8d1d8a4ea3caaeae38b5
MD5 433032ff83c300194b04453827475cb2
BLAKE2b-256 5a2f9be4cf247ce1cb019a7c31863bb3b3cc870a35487ce0130056de8f97d9a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 812e4c47e633f54259ed28967efb6101945f2e74548cedfdda9b324c9c510d47
MD5 51a32a57ea40c8f926223b485ff7c92f
BLAKE2b-256 888ed986e8b29a398737ded245016f06c30d4ee4569c0049b58b8a0368752e2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a88fc53e2fdf28ec29d437c80aea0a331a60daac31966a88994fae17e18ea292
MD5 079132181ad9ae91167c0afc4ee4ace8
BLAKE2b-256 a35503e846134a2d861be4a895b7309e3014545ceaaaee6d5233b3b1628dbfaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26b8b2a5c808d6ba69154e46352910b3d044aab013da0c1ca32a7bcf485b55ec
MD5 97293bbd9d2449df9070b69191ebe56f
BLAKE2b-256 0b3e25977472588175be2860e2f6119ed1fe269de594ec90e92c45a8dbb49576

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 104.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.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 664abb2d742cdb6bc9dddbf40d4644a7eaaa51a4075c963186c60ddae8d8616a
MD5 2fc049b035f9f7761fe5737be94d3efb
BLAKE2b-256 bc605f52165d2708a20b1864b92e4128be9f1fb121b288217346421291168f16

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 88.6 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.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 41b35873ba55aed5b78caeae49060651cc708fc850dd464b4c53babf059fea14
MD5 0431c32290a78a1759c3e5a0cd2355d4
BLAKE2b-256 282b040d0dcff2f4716b44f006be9ade0f57c2421bf1fbb43fd7e2f931f1de1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88ca58e44d10a2bbe27d2d2629bc9a03ca3b7eb736528955084965915f443df0
MD5 c705f211db62992387fa98af4620fbff
BLAKE2b-256 55bee45b9f6de24282e010df0bf3128ade1db3da1cdaf5516fce06ef94fe93c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ad0bc2700faf9302950f38edd6d3d017ee85b7e8321d8caae318c0557c3f50e
MD5 43fbbeec7ece94623ed8307655d44bcb
BLAKE2b-256 dd87fae87d11085b48d69936a441405fe41f7a6f416d6b650dc161c4e88ab101

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59323266b813bf7dee2f92f4ff541fbe5375f532f355d5b2a3101a3da931f9dc
MD5 f364493dc556324e91590d37ccb562be
BLAKE2b-256 a397bef4013a456d6a7e2c7b7029d1c2fcf1ed75d42654bb84b6bf8dbde37e11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7dc72f24ab64ac944ba16be55d5dde33803a6b945d2bab9b4b6d2bd0e7edb362
MD5 18b5d9dd36a7112d98cbac7a70134403
BLAKE2b-256 645a0b91064c135e383b9e67e7d793d4b63dce6298880d8d5ba67eae2c09ad45

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 105.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.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 865bcc44e7e551e5cc7c89157b510a788c38c60e83a7c87e8be180cc7c80cdf9
MD5 959f7680db78fbc4d49c395917929089
BLAKE2b-256 daca87e94ad243a8087920f1ba1ea21383995e436c296a85b8bd1bc9c59c56e1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 88.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.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7f7dcd81a13d5b05405f59f38a7dea72afbadac2ef54240a32d51a35cc24d10a
MD5 76ff1c79b3e1cf1a32e50437591bf86a
BLAKE2b-256 6df8943dc3fad925c9985bdd4ee706bd18176ce7a1abd70b947236c6ee5e6473

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2985c4fc9684d5af86ed6bee387f15f3a1ce6b80678ee1c9cb437a8314018819
MD5 e8f056d83481ab7cf06f780a261d0fa3
BLAKE2b-256 c066fbbfe78a28caac91cfebf86229f4ae8832656ca1c0030987019ee33b3be6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ab127be4a1d7c14ec12d1c850f3589f73f520361a113a4948d7f79b8db36f76
MD5 851ff1fae2b0599782aafdffd964c6fd
BLAKE2b-256 827dd3db1475c12c8e5a5f7910fe89207a6506a922b7cb8518995a82034b0b0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54b70d5a317f855b6bfb0846777d3e857759475e5054ac29b0a55638fce4f9c8
MD5 0b8e1e5405ace8739b83fca13bf395fd
BLAKE2b-256 dbe8246037c0b9d439034adf4c0a2a022d206ae14fcd7431d3a48c4c9ce0fd0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b932360f1597bf59dda8100b50b98f171981f3deb1054ebdf2fadbc1d9052fa
MD5 8fa99930a9cd623a0edfa31ef5faf5ce
BLAKE2b-256 492e31c5acda6984cc8373c6464eba24323564a5972efafaa35f01f2a2583d30

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 104.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.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 508edfd7b6d638ae9bd31e0d1921ffaf78d6a2af22d5c22791ec18e80c39f17f
MD5 4af01b046c9370dd194247ad18a5a3fa
BLAKE2b-256 f4cd8da66c012e89abc7fe8e6f5e71ce66c820db4fcd928f9480d044cabe8fcf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fuzzybunny-0.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 88.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.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b2d5607d8e24b9fcc008ff3601c3568c43ad4f8dcf2bd93820e45ad54b1e13e8
MD5 95015acfe9af811a8a6cc6369f6ad671
BLAKE2b-256 b5c0a4ce7a2906182d1368d5cf5c70b474ffcd941a7d054aefd5dd44643ebea7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 046312c9d9278a195a4f01bc24fb3f22ca79e862ebe042614d2d067e93904ea9
MD5 d499fae5855682bb8b65b2d8b53f5709
BLAKE2b-256 38815debcb3f056475f50096c63eddf7f794c8fdec18d319bd352fc27a1f0138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d93c419b01e66c39d66dc72da17f3443d49f529daa26260431199999c3d660b0
MD5 9781abd988e7c17d8d34ae924593ce45
BLAKE2b-256 82c2ea02701a4dde3c4b165c5fee273c40d7438c13e01cf26ae7a9678238c887

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5c6e98be692053a3fbfb479b83b6827bad1cda37228e2f083f35eb0122f7792
MD5 35ad0e92aca9ee6c6a9f5b533efd8be9
BLAKE2b-256 05eb9c159d0fcee9ad2347cff6e5323e0549468831236839d412fb09e3bd80d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fuzzybunny-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 318ae15d702e8920758588c4fbcd4ceaf4de5084b526c42e22bf2f996e37567c
MD5 aba908d7aad02cf3856d6782e711c70e
BLAKE2b-256 8dc67f5de4d956d10d6e091a50c306570ce52532c6bbae07358677a5e9d00f5e

See more details on using hashes here.

Provenance

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