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.2.tar.gz (9.7 kB view details)

Uploaded Source

Built Distributions

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

fuzzybunny-0.2.2-cp312-cp312-win_amd64.whl (91.9 kB view details)

Uploaded CPython 3.12Windows x86-64

fuzzybunny-0.2.2-cp312-cp312-win32.whl (80.3 kB view details)

Uploaded CPython 3.12Windows x86

fuzzybunny-0.2.2-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.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

fuzzybunny-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (98.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fuzzybunny-0.2.2-cp312-cp312-macosx_10_9_x86_64.whl (103.7 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

fuzzybunny-0.2.2-cp311-cp311-win_amd64.whl (90.7 kB view details)

Uploaded CPython 3.11Windows x86-64

fuzzybunny-0.2.2-cp311-cp311-win32.whl (79.4 kB view details)

Uploaded CPython 3.11Windows x86

fuzzybunny-0.2.2-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.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

fuzzybunny-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (97.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fuzzybunny-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl (102.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fuzzybunny-0.2.2-cp310-cp310-win_amd64.whl (89.8 kB view details)

Uploaded CPython 3.10Windows x86-64

fuzzybunny-0.2.2-cp310-cp310-win32.whl (78.3 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

fuzzybunny-0.2.2-cp310-cp310-macosx_11_0_arm64.whl (96.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fuzzybunny-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl (101.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fuzzybunny-0.2.2-cp39-cp39-win_amd64.whl (90.6 kB view details)

Uploaded CPython 3.9Windows x86-64

fuzzybunny-0.2.2-cp39-cp39-win32.whl (78.1 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

fuzzybunny-0.2.2-cp39-cp39-macosx_11_0_arm64.whl (96.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fuzzybunny-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl (101.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fuzzybunny-0.2.2-cp38-cp38-win_amd64.whl (89.5 kB view details)

Uploaded CPython 3.8Windows x86-64

fuzzybunny-0.2.2-cp38-cp38-win32.whl (78.2 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

fuzzybunny-0.2.2-cp38-cp38-macosx_11_0_arm64.whl (95.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fuzzybunny-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl (101.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fuzzybunny-0.2.2.tar.gz
Algorithm Hash digest
SHA256 614fe18de8a6a95f0195cf44ef3d4f57bef27787c5f7bfe392143faa3c561cb5
MD5 11b382fdcf2be67f5146815122013273
BLAKE2b-256 7a1a506ff55676450fa94b59b900b75fcec9951458a3304597ac3c9d1c4e84ff

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

  • Download URL: fuzzybunny-0.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 91.9 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c059f15851dba26b59df77fdac057cfd7b2d3404536f9814ff62fc2807c40c7b
MD5 0dfbe899a17a7761eb2232ec94f14aec
BLAKE2b-256 ef5eb9637ff002797d1640f85ccb0186934b180cbe6e93e461e9cedd711154a1

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

  • Download URL: fuzzybunny-0.2.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 80.3 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 24fa750527658c530bed8ea278a467f44df93693fb4ef6a9698475ad1f961ef4
MD5 af26d36fd50dd267973fc7eb7839e6e0
BLAKE2b-256 fea8a6e93406ade34e2badabd5a2082ec303f5419a9cb9287eead538be3e923d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb1cbbf5ceebf14a7c069ead4d57f83066b31c369fbca2d159c2ec8df6944bb4
MD5 b96406fd3f9d5160dca087f15ceb0246
BLAKE2b-256 e9ed168e21901ed063f532ddcd10f522120812132869ba3ea0b0188bdddb2e9d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf9fa97bb92dc95d93a7c42d09608c8596d659fdf8ca79be450e1ea9b6cda779
MD5 1a5c7edfb27066116283b62a1854e7a3
BLAKE2b-256 68f6a6ce2398b4aecfbbbf5310310351a935e51ac57f5e01300923f3b096c46f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eefa05b692db7adbfe3c1d459705ebc010f4cac925bb1f243c38be732c81a53b
MD5 d891a58a021808ac085f87928c1fe3c8
BLAKE2b-256 7d0bcf436676a078bcb4f231e24b154345184d4a349ca2a90b6970677f48266c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ba9315481b45db3be92d6c0fc4fa49ddae63955d131cd57088ff9e491511623
MD5 44d41ba225085ac1e449f67572a76e47
BLAKE2b-256 354ae93f639e6c00454378da83ea5691697c08986518b7cd65338039e991364d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

  • Download URL: fuzzybunny-0.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 90.7 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7359f74a40172b4d33103d72ff87fe66627efa688db691f77275cef7466a0a13
MD5 69adc2fb3348adeafd0dcb9bb4186241
BLAKE2b-256 1b0d2b58211a8766e72684738d1bd87d02e8f049e5b8e649d9cc94df90f0886e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

  • Download URL: fuzzybunny-0.2.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 79.4 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d32313d043617f1130c723d21bc26456c1c91c3c786e654521f925e729bdb3e4
MD5 8f66100609e52c65b45b3e4059e1796d
BLAKE2b-256 d49f4b279901784eed8249c2a8b86dd54fcfc88b61e2cd67ef3d39da5829b02c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5aef5fa2c8062672e8ad0f572b61e827f91b29085847590c2a52516d2731dee
MD5 d55359afae4934942374372a7d797d51
BLAKE2b-256 7ca86f6d08bc928c0e5429df910a3dc846bb938a5184692af6ebade7d8886a28

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dec68a9f0ccd200678379cd5766bee2540cd78d585ba3d3b2a9133b65a4597d5
MD5 0e5dbad119955ad7786a7f11bc5989a3
BLAKE2b-256 c4b2327deb69cd3c8a66873191158aa8f392575dfa9f2a72a131867b4805779c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 303e0d02874188f8374963acae079d244b40f51f9eb25cf7ca70d5eec14dac5e
MD5 7435d82eedda4acc257161b4b0ef823e
BLAKE2b-256 8a7a62927dafa75d3c8f8094179eeccb68a3702897f3d117411af9cca32c5c8a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8bc5691cd27ca9b36a5d8778c1d631b9697d1e3b685264f5a12e8d9f184ec86
MD5 038220b032872c4f14f8233984e6b9bd
BLAKE2b-256 0f1fa4296478d04fc46ef101f403750a7cd1bd805f4908c0d86744fb66e81127

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

  • Download URL: fuzzybunny-0.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 89.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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 423427d03c33f2c540f52cdee3f8eb2761caef258d4c544940b5bdfa807bfce5
MD5 89898c60282acf800bfb7c67e8b3a582
BLAKE2b-256 a47181bd3bef3b270e012491ae5e4343c9f36877a8e662c7a29e27cf90c0c8f6

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

  • Download URL: fuzzybunny-0.2.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 78.3 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 22a66377321ffe6cbf07d53d1af8d5ad938449ca072271ab707b43a22adc572b
MD5 257b7294fc51b711667f0b07dbdfb124
BLAKE2b-256 f6d568fbc4f92b1e6d67da4ab21b9dbb1466379f23d3174e76da37bf3b259fe9

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7acb84af4f3f28223fe8b2321e40806e8ebc28773f0455bd41c35fadbc3f04d
MD5 f01f86ec61ab38733be41a237e9ec878
BLAKE2b-256 31b02d246b3b86d6988c948fc26fb260cf85349ef0dc7a4990d22567b16f0237

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bbd000966358306d651002bf23325ce4f7657872ecdb72ee3f19ad6d8e5a59fb
MD5 48e764817fa3952536fd4594cf879361
BLAKE2b-256 e11c69201c12f0e2d665b0f79bbf3251d30d6babc4068577001eca1feeac4f33

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c70db51f6f59f6fa1296f5396dd8074160a2b2209552cad9ad1e0a6207f4545
MD5 64a1fb5e00a749c99c5823723b370c49
BLAKE2b-256 4be81aca78d4930ca8dc1d9fba9fc413c0442232a7e06d68b9f18a285798948a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 efe0b655329420d59503bdfb29ccd5bfa77614d557d45bf663508a99e127de2c
MD5 bb2fd8caaa774203b20877c9b269f2d5
BLAKE2b-256 bf6cb3f9c19bfc781b5843aa2e2dffd366119d28d8931bd3644befd41208b68f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

  • Download URL: fuzzybunny-0.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 90.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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a4a5838a497324dd4a28dd8fb7d2a33de0b683b7289d8e497ed34ee55aaeafdb
MD5 4840c8dfb98052b8e77d3fb062687d9a
BLAKE2b-256 8a22f0ab9d600597ad696925d0cf6cc2fe87f4f8585f58fd06293e914f8d3415

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

  • Download URL: fuzzybunny-0.2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 78.1 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 157cbbabfcd8ba285dcf96042dff4e7d1eab2594357c40106f25d182bf789aea
MD5 fdcc8d1532ad4e7a9fee0ce886e6ff55
BLAKE2b-256 b2ba8ef666a35e4d6dd837f60e1ea2833006f659d2f22b15e931c5005059a4b1

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2551affd92d341117c7e58b1ee3eb4ba5d6d9ff6ea7e5f8670203bd63b30558d
MD5 9c2c98110825c589c26b516080f3b34d
BLAKE2b-256 cc7e3522c8a2caaafd32d1d585b047a863c4c03cf7a60f9b61d16d1d30369ccb

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 160df6b68e23483eba9c95694c358414bfbb76b33b293216ad46d0ff425feb02
MD5 d7366e397979a5c4d59b964ce09fd78a
BLAKE2b-256 79fec930f0498ae08ae018732b17238704c00b38e3958f339663192646538096

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bdd77b8f75d4fdcab38a7e3928e1deb823e5f58460a90738db6cf1011a02248
MD5 3ee29d9130f07ca539a62eaaa242dbea
BLAKE2b-256 8d99b8ace4a45f6ceb7878507988190af8451d45799073111f4c30ffad81e2d7

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa280a95cfb4beb2c91f187dc4b74fc5fb5099fb8f4048641a7c48574f6fabfe
MD5 a081f71f614011a36009d919ad9d5c10
BLAKE2b-256 f5b5d9efbd44a85b8aeb3d48a8468aefd969a1c601d51b92825e9a2082139cbd

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

  • Download URL: fuzzybunny-0.2.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 89.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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 53f5e518a8978de68898e8b08b197de490b12d39ba502120b43b7bcc39c9c73b
MD5 21d24fef1d3a93553b29d4a75db639ca
BLAKE2b-256 7e0aa1602f66df9fb123694f24da1e471154f7de015472c62f63029e49505510

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

  • Download URL: fuzzybunny-0.2.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 78.2 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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 41401f7553fdfa541e5ead135f46ea924a5047d6b2ba665a8befb3d14173cdd7
MD5 5627f15b34c220e3aefab264f4599e62
BLAKE2b-256 3472b0c70fd2d121ae8a54c020065a23059ed56bae4a54100c14c340c515ed0b

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8be2b110130127fb0f59a18cd7c756459dc6bbecc1c292ff4e27f06a9087c159
MD5 1c881e813034ab0a8bb1178949c254b6
BLAKE2b-256 da1a90af4cf318e104ee68de5ea8f405febe2d7d9078ac04fe36e05c34490f0b

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9a13d6f1915ec5e36a20986cebc7c8b885b665009d259cd7b72761316250cbf
MD5 1a77b205d68803fee84ec6cc5ff56d26
BLAKE2b-256 08c553908043d92ba1f9ebbcd7d13ca2f44ce1d0528c310f86dfbf18b61822f0

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 163dfa10230fb51b70a386f10e3008287ce0e074ce3f51c6a320c80db4a1bd55
MD5 c376c435931800a74b261e1e4b512aca
BLAKE2b-256 75b60a549bd4cedcc9684e8c38fd79230ec36d7db012696134b0205fc3f7d8f0

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

File details

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

File metadata

File hashes

Hashes for fuzzybunny-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5033461334164d95ce16a499d06b56c86b7c2ed8112ca4756a4a7ec90b47739a
MD5 14073f3061e6c07ba1fc2a255af81d10
BLAKE2b-256 70c02a5d72d45150f6f6f688462f328415aad03529a2f15f207239957f977ae4

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on cachevector/fuzzybunny

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page