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 pathlib import Path
from czkawka import ImageSimilarity

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

results = finder.find_similar()
# Returns groups of Path objects:
# [[Path('image1.jpg'), Path('image1_copy.jpg')],
#  [Path('photo.png'), Path('photo_edited.png')]]

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

>>> from pathlib import Path
>>> def find_similar(thresh: int):
...     finder = ImageSimilarity()
...     finder.set_directories([Path("tests/images")])
...     finder.set_similarity(thresh)
...     return finder.find_similar()
...
>>> results = find_similar(0)
>>> for group in results:
...     print([p.name for p in group])
...
['hello-world-white-fg-black-fg.png',
 'hello-world-white-fg-black-fg_COPY.jpg',
 '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 pathlib import Path
from czkawka import ImageSimilarity

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

# Returns groups with Path objects and distances:
# [
#   [(Path('img1.jpg'), Path('img2.jpg'), 0),
#    (Path('img1.jpg'), Path('img3.jpg'), 2)],
#   [(Path('photo1.png'), Path('photo2.png'), 5)]
# ]

for group in results:
    print("Similar image group:")
    for path_a, path_b, distance in group:
        print(f"  {path_a.name}{path_b.name}: {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([Path("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"{a.name}{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 pathlib import Path
from czkawka import ImageSimilarity

finder = ImageSimilarity()

images = [
    Path("photo1.jpg"),
    Path("photo2.jpg"),
    Path("photo3.jpg"),
]

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

for path_a, path_b, distance in results:
    print(f"{path_a.name}{path_b.name}: {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:

>>> from pathlib import Path
>>> from czkawka import ImageSimilarity
>>> finder = ImageSimilarity()
>>> images = [
...     Path("tests/images/hello-world-white-fg-black-fg.png"),
...     Path("tests/images/hello-world-white-fg-black-fg_COPY.png"),
...     Path("tests/images/hello-world-white-fg-black-fg_SHRUNK.png"),
... ]
>>> results = finder.compute_distances(images)
>>> for a, b, d in results:
...     print(f"{a.name}{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: Sequence[str | Path]) - Set directories to search for clustering (accepts strings or Path objects)
  • set_similarity(level: int) - Set similarity threshold (0-50, lower is stricter)
  • find_similar() -> list[list[Path]] - Find groups of similar images
  • find_similar_with_distances() -> list[list[tuple[Path, Path, int]]] - Find groups with pairwise distances
  • compute_distances(paths: Sequence[str | Path]) -> list[tuple[Path, Path, int]] - Compute distances between specific images

All methods that return paths now return pathlib.Path objects instead of strings, providing better type safety and easier path manipulation.

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 MIT License. See LICENSE.

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.1.0.tar.gz (128.4 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.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

czkawka-0.1.0-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.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.14Windows x86

czkawka-0.1.0-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.1.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

czkawka-0.1.0-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.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

czkawka-0.1.0-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.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

czkawka-0.1.0-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.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

czkawka-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

czkawka-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

czkawka-0.1.0-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.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

czkawka-0.1.0-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.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

czkawka-0.1.0-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.1.0.tar.gz.

File metadata

  • Download URL: czkawka-0.1.0.tar.gz
  • Upload date:
  • Size: 128.4 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.1.0.tar.gz
Algorithm Hash digest
SHA256 3213ec1e3ea872c48e10bff710537ae19cb1a74f4d8e926e30381dae28658a4a
MD5 35494068fef528f6125c46cf19a343c3
BLAKE2b-256 45d2a8af9c6d93b2db198e146b4d8f5e41e35af0f7f251044fc577035ef384b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 884a7370c1354755d37370ff1f8d622d4dbfc07681bd7005a03ab5fe67e30714
MD5 a699bf3dda957eb8f23c116fc1e5e028
BLAKE2b-256 6169a2023a9f91b8966cb50b81fa6334da8a78e8cd8a9083f313a60e376200d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc133f6d018dbd68325e7c78227f4ab43360ae1e9916ddc590e0bd5c0ee63b0f
MD5 99643c36a7fcd7820ac791a3c67bdfe7
BLAKE2b-256 6af1a801f84eb1ec82ff5c8755b09ac25252b3e11444c98ee8f36b48ea961b98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 76f7ae96ef1e4328ea094aa01534056af639f75c261bf9490cfc83256d692eee
MD5 edcf5ad4c675166ead9ee5821056cec1
BLAKE2b-256 e0f452dee96aa1ca537d8e08ade06b9aaddbd0b1e462b6ad8cbb8444deccfb74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eeed3c235bf79a72cd1c42a704575a51c2421f77161b2e97a1a789a2c7a24d62
MD5 1a62818da7ad24d081780b25b85dc413
BLAKE2b-256 bd994d1cbf0a302d21ecdd860f8de1f0accff48e9217078b2fe4a4c29070964f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa72cecb176e76bf43738e4517ee47eda476f7e68e18c3e1874e11644683be61
MD5 f498e5e71c54908e1c424076cac4d039
BLAKE2b-256 8d1fe390402fe8213a829fe39ce11c1cd4d48dd81c634721df60b13556bf8d87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e0e03ecd59eff07e78c7d4a14b3002cf6a0e2c54e6225e8134824d64e4ab25e
MD5 62967cbe5b321d1e6dada1654a4aa428
BLAKE2b-256 2e854a5a052e8ba34a28eea5c0b396edc33e030ef77ac7e07a52be9e38e4f95f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4a986434d0137e2cb3c3dbc64408b552de0cadb4380f7dbfcd07274ad233aec
MD5 e9610aff5422c371e22f4da8fe9a9db7
BLAKE2b-256 759506aad6c8ed283fa4412db3af11a32194da927ed46921da6966b3b45a78ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c139224e11716aec9aec7bc7f102d7ea15663f309878161cf55aa47b670f9be
MD5 c94e1714c4957a0ae318cef6f652a05e
BLAKE2b-256 0d5da24ee2d72f016aae420f96092ad43e5cb2cf325dcb1ccace7b839d28a80c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6ab075e983f080d0d7df6cbd068ccca6d67eb39d7c1a68e52a6ee47d9d832cc
MD5 a1c313e360c1c7e9ad628cc75035e536
BLAKE2b-256 0bc4ea8d5cc923d69ab290914854d47cfd3c4e657aca6b7e2a4ac05e82545987

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 306bd2286b03dc23f87ed496cb489617baac56e0da3c535a4207750e8384a57b
MD5 d8f1b1fe620353f97abf5c4c0ff3abfa
BLAKE2b-256 c1adbb5fc7ce854cc292d79f372519be19f86fb91d23fae6e93c0a154f62a1eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 62ad4a5e4745bb256442488925c13369f154940a9f71293ff3b71bc309df112e
MD5 c8b24494af09e7cf23e4ae61fee9ffac
BLAKE2b-256 4fa38041dfa7630f11cb68fab37af081254fa297d414924ea6e73ca48eef6f4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 574e13e9dcdaa305de0fffd6d4c94292bb464fcaad2e63847ad377c38808a26f
MD5 5369d5f18ddf95b0e739626fd26f38f9
BLAKE2b-256 d632a537ad6d5f0ab4bf7779ee98e522a619030aec49a2043c5164e62ce46b8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bc68275d58a559ea771dcbf2954a3a8a95b925bd8a37ba7fd070b2bf0ea8e170
MD5 f616e46cc5d6842914806b6a55c77070
BLAKE2b-256 67494fa49b9c9da8ee596f71ac004c07a101ab78895e1e12292278b02f97c43b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa64f8330c295a45a3cbc7736413de36e7c633bf6844d19818ec20cd1e784a79
MD5 dbbf8add8294000d33ba07e101d321ed
BLAKE2b-256 e7ca704edcbbc9c89d83884ac48a3d30ba64a67fcb321f1f06d9f200aff5d5df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 405a28f6321c84f2acd60328462a8fcac596472c8ff914993e66cf5f49756ded
MD5 2bd5188f6aa8a4e1a3c6082242a4ed10
BLAKE2b-256 e1f29b746169e6283952679b521895f34eab3534f50bddd5fee5cc5185bed878

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03da898075cbbfff6f54257390fe6285276b7986eb60c77284324c167dc71056
MD5 c2c0a8b42b640b455d1bcbb4c8655b51
BLAKE2b-256 b3dcc5b41cacd80fb9b09f3028fcf87347866ed3f39f228f2e5d393cec49f295

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c6a0be8246f2c0cbdd92e6a128c6be75175a397b377e87a5a5d14ac3594b88a
MD5 b02e11b66f9af844d8534de7eb8640e0
BLAKE2b-256 f1af73bba79e0c6bc4d2b350a43c5a706e15bd5635642519f4b880874b449097

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69185a1ad676039c576cba7b8e7aab387139c6f2598bfeb2615d9f5ec16e3c52
MD5 6cf25c08d534db72888a9e256885bcec
BLAKE2b-256 76aeab7beb4f3f360fbfe0f8f51f5244aa531ffd5559a8930168ae67215f3081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cacc6f70ce596ed0c2c3c757128b48281bfb37d680f324a72457d77ee0f5bffe
MD5 5f185db08759397ad34e20f340eb7f92
BLAKE2b-256 a881f39effcb21a9c23fec08f5daab2c61d3fdbe83b77c200080784f00db29bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 268121ee20345f73b66eef9d63b640845b88a4cc1b9ffce80c640de398024e27
MD5 edd15d5a44f381163142b54e2aed9590
BLAKE2b-256 cc6d01aaac4f4923653a95f3ff3aa84a5843e3bccdc15cfb5ff9b510d9ec1642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 86ae874c3d0be5af14e4a4ce91aa8ad3b474b6db27c52715b7dee50e14c2a988
MD5 72b48bb30125cefb6ee98e3cc6cd35e9
BLAKE2b-256 64b945e78e4d24f01b5c2537d120c28553e642e9b48ae553da2056a85beb3cb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 935b98da9804c77997098c131992f3dd903dca3d13a48e170aadff5fba741f63
MD5 a9b9a99f21e1a7698fe8fbb7c9f8d5d6
BLAKE2b-256 91411dd805bc49e1a0667ba1c4b73b0806d59172c711bd67a0bad6a4ee3248e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d18e50a1f8f75296be8e7b9de038a1b7439f80359509072c3024269c54cdc09a
MD5 e8122f0e7734b8672e5960be39c49550
BLAKE2b-256 7a7854cff4f55c2987115d15e93594903a95875237fdd5ec6f469b10390a71bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c2db5301887ca4c5732be0fe00daa0adc948442db5ad219499c455651909353
MD5 13dcd5ecdc7010a9751f96154c012328
BLAKE2b-256 abfdcb6d1f4a2ec0dbeab2f94b5fa5e723020c8f38acaa9d0438331d58d18a91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 112dc472a47e45cf8f86d87bcb549aaea0c8beb56d89764f999a4fc6ce35d857
MD5 b3924d1dc7ca6cefef775200147dfd27
BLAKE2b-256 4df5c722a6b078ccd352e36590995dcae3d509c64a7a0e4576553e7ed8e42e51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6bc66d71fd0f98c2eaac26e018b389369ed218cd3fb174fde3ebd4d0ddeb3144
MD5 4f591d98ff8f2c57ce1f24b3f0f6c1b1
BLAKE2b-256 294ba5ef6e8e2719b5140f338b63bba212ab2a9263cddb39d4d92e115270ab94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 988260ce2495c37a6571ea2fd6a3d9588ea6e73edc079e8f8e58cdd80e7f908f
MD5 baf48433107c4441b8089aef40d87d0e
BLAKE2b-256 43906b0246973cac9f5813505ae14313d6c95b0cc55fc54a75984c4b19d01329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a590de1db9d82da07b0ec006ac6a6e781468bc442a44671438523447e26bc4fc
MD5 d27e8326fdc3e5fbc181c0f397326c92
BLAKE2b-256 fae47460fcf4aca7a70d6722e1d9376a538b149d1b8c54e3d1651dafe0142e0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf88d2646a7d23e149eb89b03269b19d12111b5dffb3b6a033583badaf750128
MD5 e1d5ccb5a6ddf84eee96e8330e068d2a
BLAKE2b-256 4184a030158f4fcffc4a59b83e1282c423ecd9b832acfa4c0983c46cfefcb50d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ee5ef64e34d2bae3eb344502d39c44268b0bf5ef1e89b5a00e724fb9495eaa4
MD5 6e960a268cde304bc858332d8875d911
BLAKE2b-256 d12e5e129cb960bd486c391d56913cc71be1cf30f159f844d33d62c46ca3d939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3d4b41748a6094102fb27577c0e2c26d62d57ae2f9cb3496e8ddbac544ebfbb9
MD5 c8eda20d3b744ca098f70635e72f74d5
BLAKE2b-256 145e54c5d871b3fcec8cf182919c299a3c212594cee8c4a63fd6ae85c5a416c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a412b3152f9a5c3f34e8d2f873c7db179b3726f09230c7fdb2617a5952dc14c
MD5 fa45a3e6c8dfc1897f23d89ed10282b5
BLAKE2b-256 db4fed95f5543930236030970673b0d4efe8eea5554b436a6f8110a980a4a125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fb4e7fdf31e1c29d75debfa821fc4ec5f8dbbfccf81e2ee0eafe933ac06ba7ee
MD5 e7c52d354c5302159dcc83033659b7e1
BLAKE2b-256 7204de72520872756fca53978eb170c626fcd1cc04e3e400325f42f3ac3d3c82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea75f5b5e9e8d56dc8b9d9acddf3d75a3582b36666111246c0d51970226480fe
MD5 64286a688bcb6de98f50b539677c904c
BLAKE2b-256 7c3e070ec7b17477632696a307eacb0487b63fafdcc30ddfa0a1c7eb55d6b9c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 926f19b13ea99c0f04e4d01ee5ef26416f7ea4cbc51c667acae874802a3f6da0
MD5 8fd9852aa6be5bb0a4729d70ee40f1ee
BLAKE2b-256 67d1abc814fbfe43ec30f6989eae6106a5cbcefdad44fb042a66d5946615e24f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 18fa559437bc5325528bf248056953d13df4d13465dde1ba780443df98ef2208
MD5 ee4a774b687ab889b1f9bc0e2558e41a
BLAKE2b-256 b393d2104c6ce750c2f5b0e4244eec95a9ed9d85e9a7383a90c7d02462ae64d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a081661624c6260a715e9192c4c0c0ea8293e367e09c3c04ac8f78890dcdec51
MD5 935dac258dcfe19c8d8dd9f7dbe49d3a
BLAKE2b-256 2bf8eb93230e7340157fbac4e3f8068987d1eed64eab6a82b2d82ad441bd4079

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c916b1c7ca2ed5bc8289896fb882f80b5895d5d8bd05e1e6c774b8b3fd46f7fb
MD5 f4b527262630a68a307094c0495ccee4
BLAKE2b-256 b1f778fd22aed4eec8740ae5b686c2612f949fc4f4bac198ca1eb8503956a97d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cef6f7a00277fc7cde369dba44dabc04aeba25018bed6bfd86cc3b27534418ff
MD5 05b6b9a898af68b31bd5628de8da45d6
BLAKE2b-256 34336c9f02c74f70f39efee0e25bff95d0caea5e722a1de72a8fb7ac8b1839bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70ac2aa38c09246e4fc1143536e71cb2a4f837f50d3f98d43cce5354183cd447
MD5 31debea9c3003e6cf4a518a354e30857
BLAKE2b-256 f7034bff2b3b665e4ecbbae9e6a8a75944f85ff652355c817c447957d6f6d30e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e39f02d7b5a6d6ab0cfc0e08e152944530757d292b6681b41cd905a16745945
MD5 2dc3c9fb8e47c7d938730f110634bd94
BLAKE2b-256 7ddaec85fda4c3ac976f0af12435ba51538a89252618899faca863eac4c2b09c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 858dbfe8bf87ae8134e212da82f8ae533d19abc0d1787b6e10bc52d6cbc14192
MD5 e8f31dea31f6d72c2b781ae9f4fe447b
BLAKE2b-256 9c9ab554fd356cd640795d43130ddfb85acc2964078f00cddc2c9948cce6a03c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d78c5cb2a8d97898db0165145df97dca02194d367e0fa0a195cacf20aefadfc1
MD5 40972661839eaf7ff3cc8b296d73fd46
BLAKE2b-256 92f6b6b974b5550251ac1498db24f13748e0c653f77fc0bc10c73db5820190b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 737f436367fe5c1818deb62e6b26934747d4d135c20047ad5d0ceb26f8d0fa63
MD5 f44cab032066c055ab59fa4892bcf947
BLAKE2b-256 f56d6128f43928a1392aeffa7cb167ebedd6784398cbdbb635ace122bd86c3a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aaba806f6fd6252d8a501ae5c3db63892803993ef5a0f614d1a37489d1e7a242
MD5 8d1414bfe2a8349061200cfcacac9657
BLAKE2b-256 59c9f129445fac719b28a9482be9e5f8d3a6043d98dd7020eb763c113a98e383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 25972abc6eaa24d742238bab6051630fc6e4f7ebab6364026b61e4c3ca390011
MD5 98310a56684ce7058a851358c592f26c
BLAKE2b-256 3f8aa4a0ad10bbd6db1a87f045cbf6ea34ed6210404a23da4c375b09912526e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc82324cf7e00e711f3dce041d45100dd53f7cb515624b247b96b29333b76e23
MD5 6a7db624fd46dfef0f0a3e5de2c1e4b3
BLAKE2b-256 cea09287e6c9c880cb5a689bc691a22628498a155df44ab9be46e77ebde5d4c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd03d2b362140ae6457420a584b0f05f37b7a72633c76e39704d3abaac79dd2a
MD5 cfba5fe519934431411365e0ed2f653f
BLAKE2b-256 973f76d6025b2ff6650a78352a59c715c080b390a8f0f036299eb54c7b5304ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4d700c7b8943297c074bfd35f8588626db70e759a26c3d13ffd9c99859f4928a
MD5 b6084348dd7a7475beb9b44a36de5069
BLAKE2b-256 22f5d0362a2a1bb892fcfd83affe0757816f72845ee9681b57f26bb1a0c7fd6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94f3dcd4b73f8c1a14eaebe6a83609344179757c588c0b9a530a02b9103f6144
MD5 222b4855647f435f47103acdfd991518
BLAKE2b-256 401f11994d9fba2b0b018b55c9c1d1d9cbb06ca7d46d4c5baa8cc2d5438b99aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d0766453c8b059fbc548fcce9805c9913b27d9b56826d7486669a4c8e7aaa6b9
MD5 cc2e1bb5449f2ad4a2a441d1c92d5588
BLAKE2b-256 d23ffb515e8a9bbd79b427d18884a09b973423a1b5e9b65c5f96c18f3de6f2b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e4648448178c6a7896e1932270a590c7677b72d1bd0485ffaa4e21bb570297a
MD5 9a5d17a33b36ebd13e14ce2c0390bffb
BLAKE2b-256 86341a30f00c80c4757a3f1eb47a14e6cfc76ee32809d34d1e8dfd6d991f6e4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 396b119f94de480a689e912556ea35e1c7727449ada9ab4ab6fa60c0531b7a82
MD5 f8b80d2007a646381aef8448453f79ac
BLAKE2b-256 ee52c8447b99c2d1e0f0b3478a76eb919ab868706ce67c80e7c99085ed5250e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 615e408a09e75b868756c659ec53ceeb62e8a1a5921c8fda3ffc8c48670b77a9
MD5 377bcec86fab786190c213b9884fb7a9
BLAKE2b-256 058ddbd42124241f32f9ae6e657fa0df5f27f5f702de441a394f3bbcfbb8f7cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b980fab35fa59c4cbcddde161c305562f7dd54edce7626e89a0c1a9c35c49e0
MD5 f6009bc7eb32e8dac7174023feb76b52
BLAKE2b-256 8df53088b17f083bf97ae8128bde7b245d745986669ba839a723d73c5f9d3162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2551303a9d27436de1fb3653614e0faf65359cc2dfd5a2fd012f4cb92b07392
MD5 f616a397b14dcffe48860949b5b57840
BLAKE2b-256 8e8ed2401cd9dc538dd7c9b539b61731eb64468cb3d14c6821ffb2d1092a6b2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c946313f3eddc6b5eea34eb0bd7f7239f28d07075b82f16333b557c25651349
MD5 0ef3c317989d872ea785a33643a37289
BLAKE2b-256 1964f7109e602fd950e3c43dd5f860bc6b6b6d6c5615ebd12c7db6078af6cab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e21aaf6dc45821815967be28799078893b4c013826ab7738152afac50881abbc
MD5 07015ac149c6fc6faa6feb7a5cc91f23
BLAKE2b-256 2aad476634b930ed019530feb2e0a2ab94f4ba32a852acb6b3b3ca8235534bf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ac8aa4882fafa9085e6e2005f0be8081f62438ed879ddfdc14c8bfa96ed520ee
MD5 6cca9b87695693c44ac3bb080df9589c
BLAKE2b-256 0b97b78320f8e3506028bd521c0cdd23a4281f6410046a0c0573496acf9e0bed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.1 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.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6e14f8c288d3b0f618a2098c0d9dc5db25cf541be9d1368267d8bc895a8a7c7
MD5 d1e6fb1069efd652f050fa6ca30eaf11
BLAKE2b-256 57f19e9f9322beb1a501d56bb1c0de427b99a70052cc8b9be98d86af04f94532

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.5 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.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe0af9d970c9641b96f29ede96394b14cdd5a9ad9f3f42d8a46992f8c2555724
MD5 349ec4d3da1f7d9a13778e247ba9de52
BLAKE2b-256 021abd9fa12f06b3b46244b8f35ccad32d916579892fb7ff16f1374f71505061

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d9658b20d7f262815a93a089727c7fe9c640e504cae1c3c3b80af28a155f18b5
MD5 401becf951af8070a99012b0eb544ef0
BLAKE2b-256 cf5d65cf5571194719af35fac7ea578011fcab635091caac99fb091e0086d99d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e0b955f4c4818a45977c5ffce5ba83cf360b2dbfba84f12b7af5b0a32b2c010
MD5 6cd012947530622ee0348a5ab1827037
BLAKE2b-256 c9c5fa6e151d6597a1d21a80cbca10e66e1f7b468edceeae7a70a539fea9ccf5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6bd538d13dd190ba8f84523fc4eef652d443b8d1fcfddade9777ca54c93afa77
MD5 c43b03bad595b0770ceb82c84a1d83f5
BLAKE2b-256 a83a4b5e57ce687a73515bf19089bac54a72c7137cd470c9710a9f6415c8573e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d979acdc119108d2a55dc4eff29dfa22badb24603da1d949f9548904bac79ffe
MD5 768cc7979d0d2eb286a0e999beda1457
BLAKE2b-256 a8cdb7fbb25260e467adad756031ea9e9eb8663f26d94f92fbc3293592f0df4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c645874ebf9976dd5c71dc7c1517232db2e200714d5f27d3af0187f8635eebc0
MD5 9aa632897751c80dc47eaf799fd36755
BLAKE2b-256 19b76ccfccc610e90112cde1b8590300f5a569cb0d160ee39a72cfeef367776b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c56d311a79c8010a58c0228aaca5755feb67d557e19e49a2e2b5eb1085602873
MD5 5f5ffc9c02ca7f32f27488b03429946f
BLAKE2b-256 66bfcc18570f2a7fb9614bf5195722afbe5c7e7117243cf73bbbf1fa5ddac806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84663096b0d12bc3d7246c16338aa01ff528ca8772f9d45d08f22aa81ce8af52
MD5 0e5148e8c64cbb5a19038a6aa2abc6ad
BLAKE2b-256 10a74af4772508c56d2679c2272f308eaab54c61f1e353a4376126dabad6f223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e1c7e2e7cf1a8fe34bb0b1f3ddd535b7eb8b46c775c95a1e336ae8764b1d85a
MD5 875ccdd8cf555fee51a473f220dbac6e
BLAKE2b-256 9ee029fbdae6cfa9c96b646ad0dc7b1630daca3f43c84e495e3a4d208f6723c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 883fd8394f6dadc3ada8aeb9716bbce3617fd08d81d6eb4a304a05f9244bbcbe
MD5 474b9157404a32f558139799ef0af32d
BLAKE2b-256 957059759daf3456b2c59d7e5de2dd9d1daa63b3d19fca8e1b188217290e35c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a27af770d3c70b76737581a8d0fd7981bdc1447e0ea6ae6924ff58f8264dddab
MD5 ca5ed41b73a19672ff63af760c1164da
BLAKE2b-256 b06b3d72011fe57d36a45b959645ad1ad4f47fcfba8c4d6d52861bc2c636116f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ac9d081e835683d5de000efc93b28dcfb1ff18e614ba69a727c0ba28012de562
MD5 a1d3131b47ab3f962a19910b6a02079f
BLAKE2b-256 ea651bfa7bf8a0ef1a7a9e25c29d2419eb7e072723bf22643fe19ca704dd6c5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d3b7ac9c25d13318e83deb766cd071815f8190f0f64cdd1851379874cbe4ef60
MD5 db1ef97c5fd05ca18c09511b679796f6
BLAKE2b-256 8de0caa0c7120fbf591fc9f9fd63dfaf3334e85097648699972aaa4194ba83d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0426580eeb3b9b74c6d208abaa7f78e50f016badda5faa20fcd4df3e470fc4dd
MD5 ec62e5ac20650097b123ebbdb62a6d7f
BLAKE2b-256 75b478e3e5da981a94d235241dff360b5bc9d23fb56d8324dd2157ac76b12e23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9f3890bd26bbcd2aa3d819fd4abd31ac95c64702afd177f2ddb681cb4551f75
MD5 7cbd3f5c3c5604433c0c0ca9dffc8713
BLAKE2b-256 1d5c6d898a510dbd524e6815f5dc84726f4427be7e62da92bbb72d7d846e2be4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4ebbfdfd74e411d3185eb5042f179e21379be8f8ee44fb098ea773aa6acef47e
MD5 34018ab96eb8aad39c0abba20d089061
BLAKE2b-256 7bf994b5ffd065809c18cd6bf6b5611e251c2c34efce440a749a9595d7a703c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.0-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.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc0e61d7d3a883192884c732cf60e3b85d61b78be58401dbf472ea2b1f8ef0bb
MD5 c992db8e78a2f9c57a73c694f9b63c29
BLAKE2b-256 64d5733aec5ad2fa55e0684c6a3090750e5c9aa70c5f0f400e382ca02345697f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d11dbeec465bd92ade79c6301ea7e7fad0ab7bb6ee0bf84dc4955878d46856b4
MD5 f041b44e07e97ff7172700e69e38894a
BLAKE2b-256 35c0b43ef2aa0221a8cc5fb49d3dacb73d4bdc4671bfb036ac82127d81a04096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f409a1d27e92fff5d64144d68a566649763a2eb704cecf36686718b32a4bc3de
MD5 5cd0ed1bdcc9b703b114aceb3d1cea49
BLAKE2b-256 10417443cbcd7f79b93b45d461ed68c2a13599d12b549461a32cb3066929941c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 509836202a0e94b11c4b70872435753dcad3b6d3d02cd3b9bc8e87f2be1e168c
MD5 119c04ee5ee531b96851f50b9d9d50a0
BLAKE2b-256 6a993d63428778e60d8150febde01baac8bf988b2e2d5a256ed5c65baff3226b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b78617a56fb4f5688ee35f652df4228b77aa1e98e35137f1a358c41618b85cc2
MD5 0335dad9b400cf61979a6f31ab7729df
BLAKE2b-256 24f22f575085b13c18e889da6d84bae2cf855230ee6e1a75267ff8d7a8670992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d8573db08d1dfe98ec144be02e2d25038df6480c6972bd3fc22162d9a437c06
MD5 2cbbba973acbaba08c7435d69948b163
BLAKE2b-256 6293e07b184e45324ef7ceda7ad74b10ee7b2a7a7abd0c8650198424c2a14330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 69005e400f17fbb3bda7ab9e37bfeafc8dd8e7b138c29d03f8a91cb922999098
MD5 e3a44ba7dc9bac19bfd1951fc27d0de5
BLAKE2b-256 e9f097cffe5e6a349161ec6775fd3a8e67ee97f5a7bf19e3e286108f9c8d4651

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