Skip to main content

Python bindings for the Czkawka Rust library, a fast image similarity engine

Project description

czkawka

uv pdm-managed PyPI Supported Python versions License pre-commit.ci status

Python bindings for the Czkawka Rust library, a fast image similarity engine

Installation

pip install czkawka

Requirements

  • Python 3.9+

Features

Fast image similarity in Rust, shipped for Python via PyO3.

Finds visually similar images regardless of resolution, format, or minor differences.

Usage

Image similarity clustering

from czkawka import ImageSimilarity

finder = ImageSimilarity()
finder.set_directories(["/path/to/images"])
finder.set_similarity(15)  # 0-50, lower = stricter matching

results = finder.find_similar()
# [['image1.jpg', 'image1_copy.jpg'], ['photo.png', 'photo_edited.png']]

What you get are groups of similar images, e.g. using the attached data we find the copies:

>>> def find_similar(thresh: int):
...     finder = ImageSimilarity()
...     finder.set_directories(["tests/images"])
...     finder.set_similarity(thresh)
...     return finder.find_similar()
...
>>> pprint(find_similar(0))
[['/home/louis/dev/czkawka/tests/images/hello-world-white-fg-black-fg.png',
  '/home/louis/dev/czkawka/tests/images/hello-world-white-fg-black-fg_COPY.jpg',
  '/home/louis/dev/czkawka/tests/images/hello-world-white-fg-black-fg_COPY.png']]

Increasing the value from 0 to 50 doesn't make the first group it finds any bigger, it adds more groups to the results. Each inner list is a cluster of images that are similar to each other.

Hamming distances from clustering

You can also get pairwise Hamming distances between images in each cluster. The distances are bits changed between the perceptual hashes, so they are a discrete measure of distance (dissimilarity), with 0 being matching/duplicate images:

from czkawka import ImageSimilarity

finder = ImageSimilarity()
finder.set_directories(["/path/to/images"])
finder.set_similarity(15)
results = finder.find_similar_with_distances()

# Returns: [
#   [('img1.jpg', 'img2.jpg', 0), ('img1.jpg', 'img3.jpg', 2)],
#   [('photo1.png', 'photo2.png', 5)]
# ]

for group in results:
    print("Similar image group:")
    for path_a, path_b, distance in group:
        print(f"  {path_a}{path_b}: {distance} bits different")

Distance = 0 means identical perceptual hashes (perfect duplicates). Higher distances mean less similar images.

Example:

from pathlib import Path
from czkawka import ImageSimilarity

def find_similar_with_distances(thresh: int):
    finder = ImageSimilarity()
    finder.set_directories(["tests/images"])
    finder.set_similarity(thresh)
    return finder.find_similar_with_distances()

# Strict matching (distance = 0 means identical)
results = find_similar_with_distances(0)
for group in results:
    for a, b, d in group:
        print(f"{Path(a).name}{Path(b).name}: distance={d}")

Output:

hello-world-white-fg-black-fg.png ↔ hello-world-white-fg-black-fg_COPY.jpg: distance=0
hello-world-white-fg-black-fg.png ↔ hello-world-white-fg-black-fg_COPY.png: distance=0
hello-world-white-fg-black-fg_COPY.jpg ↔ hello-world-white-fg-black-fg_COPY.png: distance=0

Hamming distances from file paths

For more control, you can compute distances between specific images without running the clustering algorithm:

from czkawka import ImageSimilarity

finder = ImageSimilarity()

images = [
    "photo1.jpg",
    "photo2.jpg",
    "photo3.jpg",
]

results = finder.compute_distances(images)
# Returns: [('photo1.jpg', 'photo2.jpg', 0), ('photo1.jpg', 'photo3.jpg', 14), ...]

for path_a, path_b, distance in results:
    print(f"{path_a}{path_b}: {distance}")

This computes all pairwise distances and returns them sorted by distance (most similar first). This is useful when you:

  • Already know which images you want to compare
  • Want distances without the clustering overhead
  • Need fine-grained control over comparisons

Example output:

>>> finder = ImageSimilarity()
>>> images = [
...     "tests/images/hello-world-white-fg-black-fg.png",
...     "tests/images/hello-world-white-fg-black-fg_COPY.png",
...     "tests/images/hello-world-white-fg-black-fg_SHRUNK.png",
... ]
>>> results = finder.compute_distances(images)
>>> for a, b, d in results:
...     print(f"{Path(a).name}{Path(b).name}: {d}")
...
hello-world-white-fg-black-fg.png  hello-world-white-fg-black-fg_COPY.png: 0
hello-world-white-fg-black-fg.png  hello-world-white-fg-black-fg_SHRUNK.png: 14
hello-world-white-fg-black-fg_COPY.png  hello-world-white-fg-black-fg_SHRUNK.png: 14

API Reference

  • ImageSimilarity() - Create a new similarity finder
  • set_directories(paths: list[str]) - Set directories to search for clustering
  • set_similarity(level: int) - Set similarity threshold (0-50, lower is stricter)
  • find_similar() -> list[list[str]] - Find groups of similar images
  • find_similar_with_distances() -> list[list[tuple[str, str, int]]] - Find groups with pairwise distances
  • compute_distances(paths: list[str]) -> list[tuple[str, str, int]] - Compute distances between specific images

Refer to the Czkawka docs for more details on the underlying library.

Benchmarks

Benchmarks to be determined... (TODO).

Contributing

Maintained by lmmx. Contributions welcome!

  1. Issues & Discussions: Please open a GitHub issue or discussion for bugs, feature requests, or questions.
  2. Pull Requests: PRs are welcome!
    • Install the dev extra (e.g. with uv: uv pip install -e .[dev])
    • Run tests: pytest tests/
    • If reporting a bug, please include the version and the error message/traceback if available.

License

Licensed under the 2-Clause BSD License. See LICENSE for all the details.

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

czkawka-0.0.9.tar.gz (126.6 kB view details)

Uploaded Source

Built Distributions

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

czkawka-0.0.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

czkawka-0.0.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

czkawka-0.0.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

czkawka-0.0.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

czkawka-0.0.9-cp314-cp314-win32.whl (3.2 MB view details)

Uploaded CPython 3.14Windows x86

czkawka-0.0.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

czkawka-0.0.9-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

czkawka-0.0.9-cp314-cp314-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

czkawka-0.0.9-cp313-cp313t-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

czkawka-0.0.9-cp313-cp313t-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

czkawka-0.0.9-cp313-cp313t-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

czkawka-0.0.9-cp313-cp313t-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

czkawka-0.0.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

czkawka-0.0.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

czkawka-0.0.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

czkawka-0.0.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

czkawka-0.0.9-cp313-cp313-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.13Windows x86-64

czkawka-0.0.9-cp313-cp313-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

czkawka-0.0.9-cp313-cp313-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

czkawka-0.0.9-cp313-cp313-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

czkawka-0.0.9-cp313-cp313-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

czkawka-0.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

czkawka-0.0.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

czkawka-0.0.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

czkawka-0.0.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

czkawka-0.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

czkawka-0.0.9-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

czkawka-0.0.9-cp313-cp313-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

czkawka-0.0.9-cp313-cp313-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

czkawka-0.0.9-cp312-cp312-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86-64

czkawka-0.0.9-cp312-cp312-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

czkawka-0.0.9-cp312-cp312-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

czkawka-0.0.9-cp312-cp312-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

czkawka-0.0.9-cp312-cp312-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

czkawka-0.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

czkawka-0.0.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

czkawka-0.0.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

czkawka-0.0.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

czkawka-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

czkawka-0.0.9-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

czkawka-0.0.9-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

czkawka-0.0.9-cp312-cp312-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

czkawka-0.0.9-cp311-cp311-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.11Windows x86-64

czkawka-0.0.9-cp311-cp311-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

czkawka-0.0.9-cp311-cp311-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

czkawka-0.0.9-cp311-cp311-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

czkawka-0.0.9-cp311-cp311-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

czkawka-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

czkawka-0.0.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

czkawka-0.0.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

czkawka-0.0.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

czkawka-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

czkawka-0.0.9-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

czkawka-0.0.9-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

czkawka-0.0.9-cp311-cp311-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

czkawka-0.0.9-cp310-cp310-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.10Windows x86-64

czkawka-0.0.9-cp310-cp310-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

czkawka-0.0.9-cp310-cp310-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

czkawka-0.0.9-cp310-cp310-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

czkawka-0.0.9-cp310-cp310-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

czkawka-0.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

czkawka-0.0.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

czkawka-0.0.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

czkawka-0.0.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

czkawka-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

czkawka-0.0.9-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

czkawka-0.0.9-cp39-cp39-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.9Windows x86-64

czkawka-0.0.9-cp39-cp39-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

czkawka-0.0.9-cp39-cp39-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

czkawka-0.0.9-cp39-cp39-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

czkawka-0.0.9-cp39-cp39-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

czkawka-0.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

czkawka-0.0.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

czkawka-0.0.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

czkawka-0.0.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

czkawka-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

czkawka-0.0.9-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

File details

Details for the file czkawka-0.0.9.tar.gz.

File metadata

  • Download URL: czkawka-0.0.9.tar.gz
  • Upload date:
  • Size: 126.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9.tar.gz
Algorithm Hash digest
SHA256 12618c259d9df99c436109a6067fe85259996ae2d74a27540706a4b5004f3652
MD5 905f7c64f32c5d0812fcb087f6f0f846
BLAKE2b-256 74172b51052487147f4abf0d2f98534085d6939ae7fa928bd3a4f7272163f268

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4eab7a18d1cefb67ae7ecbee84fff07eca7f0887f49c68152ec57cdf3a24365
MD5 a3694e5d2639777b02dd20980fa545d0
BLAKE2b-256 5e66429beb7eba56c1ff5356835ed353d7d3cab8085d1e90ad630095087d2e33

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be4b1bb756c5e154ad5bf763f2ecaea9e63315c1139c9184ed81ad0bc41aa83f
MD5 2513f05f9beb30f4753433e6f8f6a85e
BLAKE2b-256 1f33bd59e6cc41c374ecadc7c81230212417ea3ceeb5b88375dfde81dbd51d2a

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b951890d6ff2b09c4089c5c96aab78fc367cc54e4b8181118bc1c45c8ba1eb95
MD5 75866ce4cd11985856dd9c34d973f979
BLAKE2b-256 8b61083f1bad76516b3c4cdf989b799a15a85d95d457948c7bca6167e7048afe

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8a075b9c9ebfa71cb9e62c0a3171e5ad3d8e3c3593c0a2abe5e3d53d3bca654
MD5 9a4227bdf4154f47e031c1554bb4ea53
BLAKE2b-256 7c3bc36a1a21f1ed24598435acec000a7f422759610e5e51395e41fe564ea090

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ff5b2cf278a16601facf168852f3ad2e8be5bac1370d17b4bbb6f67337191a5
MD5 91d054b9fc74463e218b7a459f7969a9
BLAKE2b-256 842e9843ab56e835ac75f8630d40786ae27656a2c895a9279649870e3d287930

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86c6e432bf62f0f2a25d38c7dcd6bf7fcae3edc6cc8ae32c034da12701b0f924
MD5 38b8869672e1f9627a33d858b7b1997c
BLAKE2b-256 2272a64758e3ede56b30363c0b24e11cfc823eee01867558d472f1ffe2ed1eb6

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90e9f8608add93fb86ca0bb2e2ee7ce2f3ea6ebb4608e8de02bae8e703e2579c
MD5 e2ce85e3536705bf6d279e560f6897af
BLAKE2b-256 17bd0b0bd28f51ba78de575bb31a457f29e92fe89d1c8f868fbab179f351b514

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 652a472f0ecd12e892f527710556179af89acfde39eec94649a73c81931759f4
MD5 0308fb30873764f49b8d248dc6c294f8
BLAKE2b-256 8b29723162adf39d9349795e15b0ce0cdb2e5c344c03a8d5ae7bfeaa3fdee95e

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b5f2900e3a374206dffd3bab38925ce8412e98ad0b6a31ab5deacb0a5259a83
MD5 be46fcfb46f8129e9859f9eadb6c7bb0
BLAKE2b-256 44de66686d9451c20274ca59e4f17274a178acc2b5ef433464608aafee98481e

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e10a6d820b660a7da8b6fff99badc83915df218d8d7c0e40c1097c78371d4d97
MD5 1b69b9b89824833468df8080561433ae
BLAKE2b-256 22cfc8ab3f9d764fb87f06e85221fdb4b40631da65d0fc410e9b34c0faeccd8f

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp314-cp314-win32.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp314-cp314-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5be1a3c3c734854e1403a016754455a6771d6dbe65181229c99b5096454c7bbc
MD5 42e06752c59ac4b006b4da63de0fbb52
BLAKE2b-256 2daac1ce707a3e194053fd63794b4bba1a3a56afdaab25853ea9f2736970921e

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45711b92a4287f58fc8243334070bb13ed700ee48f0283579972aebe0309002a
MD5 e13b1ecf24e5660ccf531a88d85d6583
BLAKE2b-256 ce891ac12f9893c2a4e40e53c17d3f55ac749d7d5cc25724320cce1eabfbaf8a

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3722f5c74ad26dfa9a386fd86c1dca79983181c6f1506b9cbb09f91dca6fb9e0
MD5 1dda1c70032def4a59a617a52650a35c
BLAKE2b-256 5c4a93dd1a3a0730f708d1262c24793a84579a82f47d33dc4ad24986f389cce5

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22d7a6d3ee45b6583ddb1199fae418cab89fd2f207fa6c4d7dc8356685adc465
MD5 ff91a8e90a5f34137dc3794d4e821fa9
BLAKE2b-256 a4e4e5e87fd7488255024fbefdca8a9431fc4eb6800e83c758738936eb787c09

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0cfa6a940e1fee35fe5df0b14bc7d3bdf67e566a9a26df4e33b48a81ec75c36
MD5 7077fdfb0d5616378c34af87aef1a7bd
BLAKE2b-256 c4d59daa33eeb31d456fc78136d4e94a88cf6bd560e469931f3384abd0d8f23d

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 362b41e4f1caa1cc9eff6665ce49ddf1910b2bb453b0ba1746a1400866ad0ffa
MD5 6a64f31d7faf9f88204dd984b0c96ef6
BLAKE2b-256 2bac5074410b0233f736575844af94b0890286c5364b084ff10bbcc06b4cbea1

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9f94bd08cf7a55ecdd25f5bb6d81f8e170a392a7a996587300165eb4912cfc0
MD5 7bc89a4ccf1e4a6ca30bdfc5e7247597
BLAKE2b-256 73ed209cddf596700604526a30640e05d40cb7717da629ef0f9f0b7a87c1d581

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff5cd65e242e53f83185c180a71dbe2d97d1df32c782ad5c3874973bd8c83d14
MD5 ec4837e5174e88fa2525d336026ebc87
BLAKE2b-256 dd73b198aeee0b1f9a465183ae9199b5c82d5e2e45464a60a9fdc15185da9b21

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8594ea285fd95abca255471d35b71dee22acf86131729b06c03bf501c2b589a8
MD5 393c59fb7bab0b7f471adde03c307b87
BLAKE2b-256 cc5935299f672d7035e91c3dfe6e7622880be599e2cfcafb6a7ac23edfe696ff

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0dac7cb4cef274136b511a75bb70f83fa5b5ec9a54c3b823f027e235af79648
MD5 e066a315a5ee1a4991524a0cbd29dce1
BLAKE2b-256 b8e6a0d3758110fafa7ffa0973da73a2adfd12a5ffa07edf8eb943ef45d2d34f

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0a37185ef5649db57bdafa3e0708546f5bef9ed5e4f293707ff96651740c9550
MD5 bedc9302ce3635aa5bce73405f708db6
BLAKE2b-256 f70a3ce7e0e7c9cdfd233aa30f4242d09bd754c82683b3aeb7e5af54cd125171

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25df8e1c5b110006c9d6ca34e0799322929eb63c36dde20abb3d654fdf444752
MD5 e0ba674561c672e81ff914e58df71113
BLAKE2b-256 a83669a382b235f1d6a96f157c2283bb9cade1fe6e7169c024b5c9494824d681

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 46f6ddbd5ed0e2bbd6b3f8c9abf67fcfd2cfbd908f81e5ac12c500a6b931da9e
MD5 fa19a3fde9dfc80dd714e3fe602d77da
BLAKE2b-256 3bf7091ef09c3b70298595d58911287b0c90976d552a39c32203733f27d3ff2f

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aec4d473260d730e4053b9f2be49a01247a1e81096e4f6ddaa82aafb3ad0dad1
MD5 0bde607d26d647017adb676103e3f52a
BLAKE2b-256 96c4d34df3f49c65c90a80be47520e3c2d4fe26aa33fdf3e93c0f1682c3a73aa

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d483d3577bbc45fa15c58e208a7d737594b6716a858da6207be0e854514080b
MD5 b6830851e35c85af7361cef78ba877c0
BLAKE2b-256 10ec6d71c76ef7181a03b8ddf9b9b9733a1924e456104dc171b2eaeacec312e5

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 55f831fa58992e4229cca08cc1d2a09d503a62c4615941137d49c547490cb2ab
MD5 2924c19af203b5796f203899dbcbf4d4
BLAKE2b-256 2caac6d343459f28e55640d2b6118614e0cae7f09847f951bfb7f07fa210b86b

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1087aba95a2aa4094732fe2090f56ede232b32ff6d96c81437761a92f2b4dc4
MD5 eb191547dcff2fd685ae61d9676cabb2
BLAKE2b-256 6333255884dbbee918be2179039d961e111d8b53724c12c0c2571a9fe463e4cd

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e09f3a4b0d03f9fcb6270dc56961bf7a36489387600321b2bb8673f0cad8d30e
MD5 27b2c52b41b06996c2b4d2d37ee190fe
BLAKE2b-256 5c88aad50510448abaab161f153f669019476dc783bf70bf312215e980fb8e54

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47eef2da007c11d366fd9e14240dc32a8675391f7c6ba5e06c0e7c81da85893b
MD5 8913e375ea52fa0e760d694f7418333d
BLAKE2b-256 91f26eca12e9a52834195d3fab10b50c5c7e8fc235b5042fa019b5950593a988

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 312dfae053b06451ea9bd3d06501f91d2aa2b89405b528350b60d71872d0a181
MD5 5051a38379c3cfdacf8714ac98b65875
BLAKE2b-256 17b2b5788f8bfaff27a5b6027e3afa00458d997b26fa2a0c521d58bfa0fa6ff7

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ca62fd4a63a2c5bdc505773ff56a355eff89de83b80d141fb22fa07a54087b6c
MD5 e211f3414d7a1a2a948565e6e602ed4b
BLAKE2b-256 5cab46a77cd82d441ee5a54332aaf3855912dff319a07fb2bd09178528515da5

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53830e2b26b53b4511952ff1440c955bc8393d7c3fe256576a7b4999ba859961
MD5 cd9101056c46009d13ff675cc4fae676
BLAKE2b-256 45f16c62985f1ff85f2972b85139493acf98f46b4f541f8cad0d40e13b670454

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 84874aab1fa10144823badc5b702e3adb47b67344c9bdb5c56f7b90a1840a636
MD5 bde99462f26fa2b3ccc4a9248e8571cc
BLAKE2b-256 f51859b94ab4232d05c47d7b2e1b6517ae19d09fb6cf15842d98bc7622e64473

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0744aa7aa9d7789b6edde6cc28166033a0d1fd57c073cca916384a27775a5cd8
MD5 40fd185ad9240b7ff22c6de40102b147
BLAKE2b-256 aa6d10182af151cba9e015d7ae3e5000547e3ba7b70360d88c226118e66864da

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 999cef5be96f51d159d4b91e1a5c1a243e22cb00cf03ad3ec7953cba6913a2da
MD5 cc762fc8abff4a0f5a99c014b168ccce
BLAKE2b-256 b0fe41b9e168c0fa837a6226d5abbd35eac727533d6a46f012d993b238eda6cf

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6e4b95c2d631b42c8cde0e571f851e9c1aea4fb0f2b4989484ca9a69ec2746be
MD5 56e591157be609bb357733f413fbd3dc
BLAKE2b-256 96fe54a3e99bbea1e7a52c2e8b16dd3b1ae01952330b5771a1343752dc76927f

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a194c5a3c110a7ad66ead6f55c9cb5bee6900fbe7117e41fb8bd224295693a8d
MD5 c37737bce716c5fcf37be5f69899129f
BLAKE2b-256 f801c5d952b05d38afade03adef61b252362b22f2fb2a6d0da93785ed540b878

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ccba80711e0c1c8a3c300d83886a9bf417d89aea6288a05824c960d997275e11
MD5 4c5b57268d54295913f6422ded5988fb
BLAKE2b-256 9b3127bf86045c0194b100615381ba8eb35b730996e050924b6bd7faf627af81

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05ff1f78c8018f2fcfcc974033391af7525a829cd1b252fd2591b223845c3f41
MD5 55a0c2583e49b1fd2943deb583ef3476
BLAKE2b-256 efb74ffdd842173324cc15447a00d8d0c817c646bb0cf0a7acc900abff7cceb6

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11fd7ca3900bf147c2a42d2c9b705e060e10cee710a24b395d0270f1b30025c2
MD5 0532980e0ee14f197acb60c2f45ead6b
BLAKE2b-256 e6d6c46e09c9ae9fdc9140b7eb2c8fc70074212ba65d6f4ce5fbf6b1c16ac2dd

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa4bb9e1f965650e2e47528b4d5f446991cf4b333982a0f33ca5bb4a15087cb2
MD5 69758a27957c4e890a4e5e75b3d250ad
BLAKE2b-256 e4792b41d9947bd9a1037507f86b700548a276d0ed1c0140923ffdc927dd8462

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f541c33e409b439d0cfb263f0f33cc34d768e1bc92fd36d3108a73974bf3be0e
MD5 056bcf127c5b78aedc3ff2fb447acca1
BLAKE2b-256 7cd86a59e8dfceac6e377258d2724fd5c29fff93408e91fcb4302932326b296c

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 807833f0da0abb44c19b1f7a20c30d1cc14ea9c0ffef5c07f1aeb4c993fd647b
MD5 98b201561985c1e8423984541d49f543
BLAKE2b-256 a78f89fa71274b5afeb2331fac28a5628e6dcfb6ae5b7be078093df2b212cec8

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b5d862efaba5052705f3b7db3743906b7ce02675886cd20c8ca923006138871
MD5 04b16a5377f2c1a3568b2c3ce7721540
BLAKE2b-256 19557b9bbf74a536727b8b15ba5543789cb4dfe01aa4cc461add3d38fef65d91

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 123c4dd4053da61e3959318575d5a1bcf848cce3cd6b06f8793cf315003192e0
MD5 d3240e2523e8b8b9e196dbeb57eed1fd
BLAKE2b-256 e6ebd16343ddbc27b37fa6a9a1eeea9f6551983ce9f3f12908ffeeae83eb86db

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 480c7efe8209a10532cf4a356f4a3d3cb96c385f42c169617d8014003e9ee927
MD5 d64755d658d71257ac7fde0bd698643f
BLAKE2b-256 90469518df09eb07e20bedf1fe5c27dca23bae0bed0c6b0e545da42c37f9a266

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a55b43d9af464e3ba808968fcb5046dec2d90a723ce7d8bba017715086c3ec8
MD5 7ed6e8607161f5fbcae349b847040ff2
BLAKE2b-256 dcb26a93962a238f5beb17290470c6b1e01f00d3dd76dfb352c83efc9c2faaec

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd7217c8505eb2e4fec578f1c2c3e32d2ab93dc87977eba117a69ef13fabcbc6
MD5 55146da1632ef043e4b2f82a7b4ad98a
BLAKE2b-256 52e478d726cf35fa4bf772de0589fa0816f3d4d348950da27ce8efed0170ba28

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b96f1de87d3f9fb965b27f339de1388e15dbefd8b5cd0966d16ca06c5c40152a
MD5 fc37a5b25ab8d73e88b2f664bf0a979c
BLAKE2b-256 429df778ef38080525e1f880be4b21bdae93f184f0201a9a6f8cd13c84c3a076

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17d6582b3eb6db74a7b23679c3a0532ec2f9e97a472fc20b519290f540ff8567
MD5 d9bd3acdc9248c53cd0e231ad2a93d22
BLAKE2b-256 f451bba15cea7a5c1f0b669e8944f95dfffccf4f5c17896a81f17fc057b62be7

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39e9e686bca2a4635b7c6831f44ca05ffadd713d4cfe78b89ff70f68c4813c42
MD5 4312833558f95a0186e32313f1cbd81d
BLAKE2b-256 d601c516677eeab7a2bc314d3165fd3245db160439163226b6bac9f3568d21e9

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a926a3f36c8e86d1c7b9fede527d0ff3ba1f67f2e4cc1287282950c89093b2f7
MD5 1669b4b0499025340ef92f5ed22d94bd
BLAKE2b-256 6567cae4134960854e55684c5cf0bb29e38037ec6a7f61de3ee985f861779698

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 371d4dacb5e675871c96fa72a48f6905562c52c581f54c202bd437cd7437ae3e
MD5 8aa865a0d3511f46ea828a73fba4e33e
BLAKE2b-256 add56368869e6343673f4ad3976733546ebb2fce2c28dd052ef0092cfe11e674

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27e989e75e1c1f8600f20cd3ced9d51408b43460cf62ad24bc56eb1177b8ad26
MD5 4213417bdd4e728e2907feb0283fe043
BLAKE2b-256 ce05c62bd4f2976e4049b78e03aa71732b5a47abb0700194f34aa2b3bcaa996c

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d286cf245afc0e87dffdd7b6f171343d7889ff2cb812017578ec6423b5a424b
MD5 4a9fefbd0589013599718e9ed2a1e0bb
BLAKE2b-256 4ed9b22ee6251e85f7b4e61170c10c9d5a376eb7d565be751d805e11b759bb10

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 239c021156900bcbd139b60df3cca757838dc2ab0ee204f1c2cd9eb5f8742461
MD5 830628a55d5de90806a4b74c3fa2e465
BLAKE2b-256 ce0bfb9f5de3ea8e95d3edc65cff024c2d4648a053f0d1856290b509d1dab9d1

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f02acc4819c9f0e19bcf8dc7a47a5196bfb9425d7dbb75b27a753a100a183735
MD5 0b139221cf31aa8b88b30c2a3daf9499
BLAKE2b-256 8ebdb40e467b8ac5c450f9fda4c790201e4a7cd9735760dcba1502d07b48de67

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6962f0e67b1c704599b496b967a4c3c75807140bcd2cdf51ebbb9347c93219ea
MD5 65f3270782872e539be1b2f00b968dd0
BLAKE2b-256 416fa3f55e89f1f8c3b70488eaaeabf9a12108436fa4d06ea9856fcdb1e253d3

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1b8464ed3178c9f5cb80f8c654170d6904121b9de1deed819e6eeb0be9fad040
MD5 ace25fa539bc9c1c7791da6a8f85742a
BLAKE2b-256 9cca32603b5a359aaaa4780bb4797d2be6fa104a00b7e0049c73710f37994311

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c6d9eeb91658a186b34cdf2ab6f302ebaa28110c9715844af77c837d5fa983b
MD5 ea39adc40144fd433ce9877b1f8a514a
BLAKE2b-256 97985fe9c73cdb29729a340b23911aafbcb5de5208fa9cc11fb8580b0ba316c7

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ebb610350658a0a4a220dc2269cd0e3466cdc3497bbcced180ff5fa58343ad1
MD5 9e96cfc4a03e1faa61e16e8818698eae
BLAKE2b-256 df06b2db54231a56452defadeee77b04711b51a72d29efe6d9ad77e4246fd1f8

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ef0fb983558ea77332a06e76d148dd46039f7aa3642a1aeae0daaebed701e5f0
MD5 19598fc4c8c80a78628cf62916c7b85d
BLAKE2b-256 b4bec1a9035b45d60bc8f3df74747d3a1ed2b71fa16be777f9f8f05f4d8a64ff

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c977664c4933ce291dfe47e5f3b50d5722c7252bdfeab995677b8c88197e0fd
MD5 2bbcadcda7d9b04ddc26a214fa20fbf7
BLAKE2b-256 838814e6db0ce2c4b2e68910e67dd5bca26d3bdcd41f8322afc39cd263a3be45

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af2a60bc7f78f3e977883c89f9a5f8a7c99a45fc9dc460718570348ef800e231
MD5 70a77fe2fef4bd25219892510a44fb07
BLAKE2b-256 5f5c3e01230e593a3addca659a5616add29f6aa01a833f0c9276b0e74478dcea

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be94609037ea15950fc27c40649ab6298ab74d11049ca484215af8dd474440ae
MD5 957c2eb8c5923cb4c4c66848541c470b
BLAKE2b-256 f901b17cc2a229cb425a589cf94dad2ba67b89e4e428ada3ba1a64f46036292b

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb6e70dfd164b11bf479957c21829423dec0169ba2802a23e9155d73b8ecb8f2
MD5 ee5782661c479dd33ed91efd69e86eea
BLAKE2b-256 d5b73a2fa3688908120fd71000554a4f305ef84e691c0e0899dd139fa40a7ee7

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b6451f16032070c97aca38d9dd664876463682da8414b3e81ce5258a5b481c1
MD5 d539705854600898286fd689a3bfae06
BLAKE2b-256 548cc3b724fb0e6a4dd9960d6fa4784bdf1b8be2319539dfb84fb2108a1ae4fe

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a750d241e1adcb032d78f16cc0762d5f7a17daef099e74d0f3aaf46e35de6249
MD5 2db96b5bb4efa670cadf395c041e2448
BLAKE2b-256 c216e07965df1a5727e2192c7ee6b2ad8947d28566ffa7e2a7d677d0d5511619

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2786a59abd4f68fa6cca71ad7732b11ea7f043dad82cf4e08ec95a5ea0005bea
MD5 b7639a32e62b660f02a28365d4b499de
BLAKE2b-256 410b54c299fbc56bbf6db7599a5dc9666679974e6b30626ad9631e0927f8050a

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91395a88c65382ad066e1efe137afc955ef40db80668e836057882861c4f3e6a
MD5 40a306d8c6a54cfb6f6406e03a83a6ce
BLAKE2b-256 30d5c19d937e00d54512b9b67925c216cee48df1237d45d8618e9854d96a974f

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdde8aef3d6f84bfb2ae843b19f35946981873200e386debbdd6f47058775bc5
MD5 15f3063fed5327b3911846572d1e2a4b
BLAKE2b-256 24a3c706c7348bb32006f18e4fb56ff65f15bb4aeafe1d3e34f487b67beacbbc

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 74cba648128b6e59f3cd2a1a0e63b73334064605f1c2da1e0b938427cea20fac
MD5 e4057683de0d64c7d22f6ae47b87201b
BLAKE2b-256 fc47294e7c68eb65835dd226c7a666ad6b260c402cbe693c9df545f306bec36b

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e3a403bb85ef7a7d8e7395ec8e97dbab9211149d0b898e2381ad67de012cf90e
MD5 e191191a87a9fd340a0d03bde6781fd6
BLAKE2b-256 efe4d8c2dcd38ffef9bb694b76c2a0376e71fab760090bc26b48925c31d374cc

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b25480f8891b77aa6b58294e7ae316338039b9bc8c644c2221b2d5bee27b13c3
MD5 3282d13b82794eb9f84cfd179b0e07bc
BLAKE2b-256 6e569392f87cec94431fa800e45bd286da9a3233b466db33e94cbe6a2e80232d

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d51b18b0e8e6be82fc9a5bba3ad267385802f2088535b468adab3aa0e6b9689b
MD5 a943fe5ca6af33bbbc7bdedad6554742
BLAKE2b-256 0a6486bf6c35966b3780109c88afc59ebe1c8a1d6efd68c80f8c6a6b8004324a

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08b357adfc8be3c8e7975bbb2e63f258fc0551e6d8d8359c385c843beffd7b4e
MD5 8247b4e54ea030996a3c9316b68dfbbe
BLAKE2b-256 543087c0c9a574a719fa241f781d7c64b002822f0a462504d86f25e49bf82d54

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: czkawka-0.0.9-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.0 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.0.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a01672180519ab3f4b89fa1b7f762b844ebfd80f9c7d0cb55e6315593639e254
MD5 3505ea21ef0decdb398e6efd2dedfaaa
BLAKE2b-256 4084aba7380e9f7ca186842a49fc03420e422ddb0baca4e58f3af8faf4a352f0

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9033a935dd444c9539ee6eaa97c79876d272f0a1c61219057a7304ef70acccb
MD5 071592707fb64b19c46a892f6fc038f6
BLAKE2b-256 e020d112fa9b36ab3e2e5b0497990569046056f89a61da4d6fff4a8571ed7e58

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b09f63a384d8aed5481ede14f0c3e8d30c60c675f08b6fbeb918b61db8f2815
MD5 e2068ba94239b945bcd7e772e587bc08
BLAKE2b-256 e2172e1ef50a0fb5c1c37ee5ac4f360c5afbaac7429832990448b958096bf940

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea9a3fb0074cc7d4c4274417ef4f995f130f9385c273cd7bf8e5939a39c4d368
MD5 acf54ca8d3d8d1ba99b05cbd4af21542
BLAKE2b-256 e95e6b889d4dbb18bb3aa93c21da71f092f23cb107bb660647f2af4a22b113e3

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8464185640f13a97064557de3adace181b53cbb3fe952cecf06cd0a0ba29adf8
MD5 7e50596e6dc3436d7cbcdab8450daf94
BLAKE2b-256 47e80ccb062659d9c9d52c098528dad1149127de71c5357be8e8a98ed1a6737d

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be90e8a9c3cb8a8b3ea280211e60c22137e4377922ac1e4e3393b7a235b8b87b
MD5 31344795b5fe52e24d4d89a122de7859
BLAKE2b-256 edb6d8e4fb0a23ad2be5420f0a2599b623aa48acd1860d8986dc5dbdf8555c12

See more details on using hashes here.

File details

Details for the file czkawka-0.0.9-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for czkawka-0.0.9-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 585116f38ce3bc93036fa6065fddd37aa71e1da3781195e77f0adbff11b13405
MD5 c2cea615cd5d8847befaebef59fe5eaf
BLAKE2b-256 3248185d137dd5af1b8b7772a5c88ab8b6877edb39a2009f649001ae717148a6

See more details on using hashes here.

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