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

Perceptual hash caching

For maximum efficiency, you can compute and store perceptual hashes separately, then compare them later without re-loading images. This is ideal for snapshot testing or avoiding redundant hash computations:

from pathlib import Path
from czkawka import ImageSimilarity

finder = ImageSimilarity()

# Compute hash once and store it (e.g., in a cache, database, or file)
original_hash = finder.hash_image(Path("source.jpg"))
print(f"Stored hash: {original_hash}")

# Later, hash a generated or new image
generated_hash = finder.hash_image(Path("generated.jpg"))

# Compare hashes without re-loading the original image
distance = finder.compare_hashes(original_hash, generated_hash)

if distance == 0:
    print("✓ Cache hit: images are identical")
else:
    print(f"✗ Cache miss: images differ by {distance} bits")

Use cases for hash caching:

  • Snapshot testing: Store expected output hashes and validate generated images match
  • Deduplication: Build a hash database to detect duplicates without storing full images
  • Incremental processing: Cache hashes to avoid re-processing unchanged images
  • Distributed systems: Share hashes between systems without transferring image files

Example workflow:

>>> from pathlib import Path
>>> from czkawka import ImageSimilarity
>>> finder = ImageSimilarity()
>>>
>>> # Hash and cache multiple images
>>> cache = {}
>>> for img in Path("images").glob("*.png"):
...     cache[img.name] = finder.hash_image(img)
...
>>> # Later, compare a new image against the cache
>>> new_hash = finder.hash_image(Path("new_image.png"))
>>> for name, cached_hash in cache.items():
...     dist = finder.compare_hashes(new_hash, cached_hash)
...     if dist == 0:
...         print(f"Duplicate found: {name}")

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
  • hash_image(path: str | Path) -> str - Compute perceptual hash for a single image (returns base64 string)
  • compare_hashes(hash1: str, hash2: str) -> int - Compare two perceptual hashes and return Hamming distance

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.14Windows x86

czkawka-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

czkawka-0.1.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

czkawka-0.1.1-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.1-cp313-cp313t-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

czkawka-0.1.1-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.1-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.1-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.1-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.1-cp313-cp313-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.13Windows x86-64

czkawka-0.1.1-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.1-cp313-cp313-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

czkawka-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

czkawka-0.1.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

czkawka-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

czkawka-0.1.1-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.1-cp312-cp312-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

czkawka-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

czkawka-0.1.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

czkawka-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

czkawka-0.1.1-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.1-cp311-cp311-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

czkawka-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

czkawka-0.1.1-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.1-cp310-cp310-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

czkawka-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp39-cp39-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.9Windows x86-64

czkawka-0.1.1-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.1-cp39-cp39-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

czkawka-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

czkawka-0.1.1-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.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: czkawka-0.1.1.tar.gz
  • Upload date:
  • Size: 131.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.1.1.tar.gz
Algorithm Hash digest
SHA256 b6a38fd7bdccc1b998ea082f0b7aa7e87d8f7b0d2a3a1927a697b94bbd35fa26
MD5 8f0efdcb1d35e392268bd91181d08b15
BLAKE2b-256 0d6122956bc441ad992a6c78ab7d8c8677d790dd42ec8ecd1969bcab0a1faf42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 223a3f05392123fcd5e9cb0b55d33486b717c4861b33fcdd9a691b45b5f5f24c
MD5 0a59389612e708f13a7e0db37cb1abbb
BLAKE2b-256 e22f4126cc91616f03bb683ffbaeeb6029f831d646f643a08e1318114c0cd7da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23b82f0668476708cadf98ab8ff985e9d9deca911e652f2465a1a87715072852
MD5 1fd4291dfee5cd4a59c618855b0da25c
BLAKE2b-256 9dedefa809d62ab925a520a85780fb234918c3316252b5c7736ae052aeb276fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 73600c3e3179cf1e5e00474dc83984aef2f501eec2c2b262ba16392193a29901
MD5 5338420ae6093761cc31424eb9959c69
BLAKE2b-256 0c389d72eb7a187cdd2334e3c3e17301625a672dd3f88a609eb6467b765c664a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44d1cdcff716f60480b2101c4ff9c588caefc82fdaf0d3e23394a70f59ce9d34
MD5 e2dd9c3ad59425d35ebfdca53cd6ba3d
BLAKE2b-256 dce0172c9fc763544fc25aff4960b927bcaef90ad98eb3330a6fa0420e0d39ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dde24e79cb79a58917249032db605beb8fe58ea3bf7ff5d16cfa6d6621c0c572
MD5 60fd89ffb4fd5e420724388afec55e2a
BLAKE2b-256 889e7e7a6612a769f01de428705933ce5f47d739f461db4de112107bc922ebc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff726346e7825c2b003948c2f29d76de70d7af736a138c4e1d9387f45e98c10d
MD5 652c7f5ad6b59ea3ba9fa17727313898
BLAKE2b-256 fb97a53f2b01bd7a57759dcf83d28a679aaff17707c7642ef6bb78bcdc61b8e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 622f7a36c40d7fdb199d9bbd8e376d39fa946f97e67af1552b0994b6347e28ce
MD5 7d71152f7931339ed5c03d1227c0b848
BLAKE2b-256 a90b7470b031d0f4751296928b4560e2eb47b1a14447dc15d864a96b664bff1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c853f116966477e7eb4cf081d1569d1823c657e56bc63d2cc8d15b97051cab65
MD5 130bc2f4d8c839db25cb0646bc4cc5e1
BLAKE2b-256 5d111d298020dbe2969f674e0076d9210a71fa34233b999f7ceff745ab380c3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83e66516e402eb5a4e53d68ffd73fa217d957fb58a49de1ea6f409d5d3a962b0
MD5 f5d6b5bb78967f94d5618d7141b35b01
BLAKE2b-256 a7faf787e3c3c0fed9329d3667f51e1ef5a115b3c891c660ec43e5ef5ced1e29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b9a1622465975a7460042b5c5ea5745321d2ccd3944ce9943fa5c0fd9adba763
MD5 4b2e95c4b9ee00a869f638b6b5f02ed4
BLAKE2b-256 28005e204b894f11f049740c66f49b3dcd0ad587c70c58b38ff3fe99806709b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a261d5d3bcaf9def58687bb49ff736f7c7ebeffd04d26f8f5df4db53a2660444
MD5 c7f3378bc097793eb24676870a883b13
BLAKE2b-256 acfc9a5abcc81b7bae922166016b367b9361347c5706ed2697b9aea9e0cb435f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 189d41ebb4f1a9b8f8575812f29f12c4b2a5d1dfe396157b39d9bf359888639b
MD5 af62829a5fd59b2b8834f6eb823d3524
BLAKE2b-256 e303d3a2a78626d85ecde6647a9aea980e8f154f7df3167bee30b26396365c90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ad3fff537201971eeef02a02cb63d5945889871b290ad88dc4d46136cdc7e221
MD5 842a1b8049767e39f9ea35ff6f3d3d44
BLAKE2b-256 259c0189cdb2c7258509238cb1553f7d88ee34ffb70630bca15d37cd6d593a4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.1 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.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 182ac1f5a304511899cc4c414f518903b54222709cb90ab99887e181e0eb7048
MD5 1bd2ff7b203466c2d96dcbc958efebc1
BLAKE2b-256 9e5eb928305223f882159deb0eef969b6ba293f194461bce238b5e9b52022ecc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb7d2d6a8907490fae202b87e0340aabb1aede48f8337960b1e8b43b26d5d8bc
MD5 3b6573b970a15cee3ad51a4ae2c21e73
BLAKE2b-256 424235411320c8fb438d86635fc97850fb00510cbf42d5315cfe9f6a1f2abec3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 231f33f888016adacfcb7ce8fb66a64aba683ca4b0238690fba68e611a8077eb
MD5 7c30a81d2925d15cec62c39b808c4e1b
BLAKE2b-256 d4f517230678eae0aa889f3d7cf97cb8f0e0555cdd3b61e3a0b5976d3a8dedde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 49e257c42a796a8fea4f02b2eceda83d930cc1d63a223f619c885d94975e2c08
MD5 1d3ae51113c0757eecacd5cd5b845c42
BLAKE2b-256 ad7df9fc25b49b37fbcf5c9753d207d739f0ed03928a786a1ff36a97f3f1736a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55d8cb0616f27b60535b8ab8c788999e8a3ab1ec43e208eff8154609ad8879f0
MD5 d14efea82d34730c10ae285a161dcfdc
BLAKE2b-256 38ceeed94a1aeff41bdfbb6a073154e5732523a4eea7b3437f67314487de0491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 392b4cdcfdafeb2c694b905f05ffadbfbf69e82c32f91b479fcb6f1edb913eb0
MD5 c00c5080a811949b9180751f9381b0a1
BLAKE2b-256 1074f62948bbc6137e0947c98bd3ad5f4cd5481844107456c6ecffe184333354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 628b9995eae017f268eeb86454019092f9841549631fd59ce12367479da3d657
MD5 ce8e97f3d3e731975178afe780da47c0
BLAKE2b-256 1aed507df98654177705b5f65596c5b353f6c21a5d0cd507118f3be53090d66f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 919dfba012bd72d4154b765b4649ccc348707071038e9bce0e1ce8faaad85e4b
MD5 b71a676546069bc209bc0b0b697f122c
BLAKE2b-256 df4b7f362f1d5889848290bd0c9012afbcbdab792e6a1e569b4699acbdf9ee28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e8c49d70ed688f6095c72dbd8fffa292f88bf2a68d232dd7a219261097a5de3
MD5 c5c77d77d4d36d3a0eda71d218cffd2c
BLAKE2b-256 47c0f5e9959f90aba1bb86d764ca0565147122b49d54cf10081a1b295e4c3b25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc8bc3b605dd96ad918dfc9d2809bfddefa5052d93346b343d9e092f0c1167f6
MD5 9def8fd92258d4f430b94b8e8e7b3d33
BLAKE2b-256 9a2f93c93fd8029ecda2eb1827f71c63657258c7dbd1294132ea5bf1548fbd20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36ac8c09682fddc20a27b950f257809b840b7bc32e1542372984e125ba1852c9
MD5 1be868eb060d01979bc79d2860948a65
BLAKE2b-256 4273bf7d359cf39d1f4f8e444840ae363573d519877641842444b6717eead0ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6af79c78d7f4099d73047a464c0b9ac8ffb1c3956534e396b1d1d0c355255c84
MD5 8d9c89c876b68b072b31f09edf26040e
BLAKE2b-256 bfce283c4c277cedd8c3796ca4a9727bf04ca314439e4747017b1b2ae4cc0acb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd958195964a5cb0d29e1ba80813fd3a0144a01c1afac2339b292b2edb1be13b
MD5 eac2ddc6898130d59eee023fff6f44a0
BLAKE2b-256 ce7ee8038747c026e316922c0cbe901a048419ea062578e1e3815bcb6dc9df9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55e7aae009337a6292a94d561b90bcf642274ea884113057bb7494c398fa0364
MD5 0681c303335c59106d9fda455ad753cd
BLAKE2b-256 7b3100e0c12c63e5e2ac94fcde4414180f6a7db61883d85d656a40ea5256a22d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f08b82b0b30245031a3f1fdf23c2f25123fb6e9362a1cdfabae4712ada7b5cd5
MD5 0b9e978a853328297b4797e26ec16272
BLAKE2b-256 af41186e3ffe161a41d8bbbac46facf6b6ac8f47857de94f7d0a1ec99cdc6ba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19a09e3151c96791badebc80214b769c16a9f66d74d959fe6e088ad58fce2da1
MD5 e2127da10a243f0baa00297b7e38b5d2
BLAKE2b-256 89a7c36a91e35fcbc99687ac5169e3c27af31e1f29076e42f072ba632a48df87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82dc6c2bcb23f3b6e5436ae8fe2e543d333aba5d9eaaabff45544517573c24d0
MD5 728cc09c0dc93421816b3b09e15d2101
BLAKE2b-256 1178f91607a8af7db34bf6362a5244582abe975f9fd2198dfaf13119e45e93ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 484468cca05f10fa0dba6b5b9a73e2d6f1de537364a99a2539e7fad649091b60
MD5 b11a52f1d24f56885f8aea42fe4080b5
BLAKE2b-256 a64ff9ee215df1ed212305acebd8646ebf318fea07a6e47020e64acf4368f8e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68597768985a0215ce85270d4236d11baac288a0c4397b0e1963c67c5f5339d2
MD5 7df8ec29e194a30419dff4f3f9667e51
BLAKE2b-256 c640ffdf7a0f3a96b80767cb7ab75b1efd8e62c0a7d00b610b2be65140763902

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 929ede286c7fa9e1fa66c2aa892a7a885f829e2a359c1029ab707ceff91b447f
MD5 b6a46bc5bb97f50778c031e06fc66378
BLAKE2b-256 049a78aac969a9c98b62e883525d1a080a459f9bfa5d47dc3e6e45842807618d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.1 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.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edf3ccbdf50134bceb06a1cb437fe4ff62210a340497b970a0fbe0acc882e440
MD5 a3e4a1356f0994eb98ae00ac05942e42
BLAKE2b-256 ff8765fd51f04fa863998ee27d5853fba676b099f3f17dfbe1e0d5bdba5f1d16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.5 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.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3b4b55912f9e6608a71e8fd208da77fa5bbacfe046740f50d019612c9fba1ca
MD5 804261e6afd04a3df67179d7e7cca6a2
BLAKE2b-256 701b68ef64aa0efad106295654b906fb53bd4ed44d7888ea43b2ac79fa34b801

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5cb4fab0e4cb2c965aef48fc74de6a01f39b9e18335555f7dff83b65dba23c9f
MD5 65ff8bb10d049130a868fe04e8751e67
BLAKE2b-256 08b750224fd5bc3f58256a4c568b6d313129c8ae2c261be444c2869f0a65e09c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 395aeb6809413975d9cf48c73d771030ece7916391b9e4b062698b1025882739
MD5 661c90b6f17f8c7886495d45e2545b7a
BLAKE2b-256 61e0f3a4e9d93acc82e6e22fd78e5532c22265e28fca3232e2f5289b70f81b7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91d3db480e815d23bf2f0ebc7a6acb6ec5d66dd7ed6ad66cc35696d581a46773
MD5 1964e90c5e7b2aff716bceeef6a86fd3
BLAKE2b-256 453afb79e0823c406c4b92b539266e850a5a35603b960fe5df83b94d27172079

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d4352cd3c012ad6f693cf8675d5693c86056753865a8c62fb3bccd44059b25d3
MD5 acffbed531e656c70333d3441f3230cb
BLAKE2b-256 6563fd2d45e1167f8b6472cf090b4212c435dce883a985162139a27308e87c79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bdcd0ef968e59b5d5782f8df44793843a3b31bfc360351b3fb5934d9515a57d9
MD5 ad3b0c0dd53d37710528d4601561b611
BLAKE2b-256 a41b37b775db6a8604940b4b5de144a61b70ba7dfc915b3a8644f7e3510ff8b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e190b9a27359c97a6510b71c8905480d9aacf509128f1ac96e1a233d30da23b7
MD5 a4cd6e66278878a057a46cceab84a267
BLAKE2b-256 9f6f2c3a43e7fa1c803f63113d2496dfa7c02ca6100a4f7c0ebe1e9131e6c014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9dd1610d292b46ee0173899278cd25ec6bb68506731f8b03eb1d017ba7afeff
MD5 845b98201f3b6507a29714433073adc7
BLAKE2b-256 ace3fd7b7298902feae9dc985578520a44a15e9e06d12454095ca5f6c7a6cd4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f768578825f32fc717f16554e54f279ece9de5aa478e6fc25d2c8cafea6d1af6
MD5 a4908b7e008947f9f184e43a9b7e3e9c
BLAKE2b-256 cb78ffaf212e38b20dcd12ee71b84d039bea2a8859b34554693ffed3246f5a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d72dfeb59234d965e8e6ec82740ac7510b4522ceab01fb30923fa489e4f1cb9
MD5 9f755f5461390e2f6e668442be5228fc
BLAKE2b-256 f4e9d56989374bc2fc34dce81e4844f978b600e91134158c6d9401e2fefbc1e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f5b67fd6e9128b011cb439ff4c5049d1e2d013457017807653ee8ccaad551de
MD5 00151c8acd7699cabff716be5536ee12
BLAKE2b-256 e1d01e294136ad67cde66bbc424ac3acca29fc0690cdb06875e57dfb6801ec4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f259e0e631648492c6c5be3e166731fd6449ce8381937376005564e0944aa43b
MD5 733c5a5da356d34c253ac2706f457517
BLAKE2b-256 6775a43d69f5c34641e8a269e4432111303ce17342ce1a41ea4b40908c3be62d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.1 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.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9d4daefb30f273c421d24009ee0ce6392debc069e45327b22c6b72ce90a2d96
MD5 ac3b9eb2a794f120dc57aaca3df6705b
BLAKE2b-256 6109e3307bbdaebca1f722df46c54f4f46818b9fcec6979b487dbeff58dabf3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.5 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.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c491370eb23665e57a9e2e0205568e7207237227b20881b235814a12c6e26809
MD5 bfc424302674f8852503e657925d97a0
BLAKE2b-256 cab761d455d265bb8a8b950f2feadea102ad6743265847d2fd41fd6bec97ef3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a9c7c87c903414b2bf88ed9fa020150f25a4074ce930c8bd06f4f49327f1f67e
MD5 1dc5125596e16fd328c6171ffe6370e4
BLAKE2b-256 56fa8fbf85d184c45de900d465a542f001ce48d4db54e57ddca83354834f3951

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6798d23c2c3d2166e75b7a3e005bed6cd073096136b7d6d49472eb6c24068bc6
MD5 c03639dbeb1c981bcb6fc35332b1236f
BLAKE2b-256 5c0244f00fcf26f550fb0107deaa2e58a316eaac768ff27716fd69eceb913450

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71319cfe333ba6a2ca6040e4ce390c347bac825b5575c53ee5adbfe4e0120be1
MD5 6c114483ae55dfb6d9bbcc4c4c7cc634
BLAKE2b-256 f3eb7ca390abfd6c2736c86c0b332b30519570b1bc8501d8837e86e5c3abc6d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 068c807eb0103e621671204bfd9aa1dcfaf9e1c57159785b04bac69d7c657302
MD5 aca102bd5b6edf9e825fdfd9a84495bd
BLAKE2b-256 b1da8b41cec162bfb4f074dee025e4f2ef9a1f63b458e4054d7c5869c4058123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb45f8b510851deee0f2dbcebab829e3d0b7444eec66af3ffd736ba514ff5d32
MD5 590db9b98116f4986bc76252ca35efa3
BLAKE2b-256 5a998bd496ce4753f927b4dd274cdf5043035662ddeeaef90ad6052fd5caf712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aff2e408376d94b06442fc1e82ff2477b24c1c69392006e45a5601ab4dfbcfc2
MD5 b10e3982ba685eb9af52d7e61a79fa0d
BLAKE2b-256 e08ebf7f1978c1e13e20dd58e1fa4f51958599db4463701fb21c6caa4b48b017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1795e52b39b11b8f2237860751c71a322a751f2cf6f4580e9872d0d7ed49fbc
MD5 4641b2ea775d7232582b3f46dd269fac
BLAKE2b-256 c9b1c4f5c5fb8cbb1ddb1859fb6f316f75bd9496097dce65cc1f4ea28f8558b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 df3f1ecbd5897ca58e1d7e78a9f4d76d9519ac9017c65fee1316ee5b57dfec75
MD5 35c607a7d894fbbc7177174c39030f8c
BLAKE2b-256 0a5fb0a1569680793c0045a15e89917de781a70e74ba4e5a8d020bd4a1ff72e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 576cce790fbeda68ec539693f71a7e6283cdf3609bf560eb5e0f7ef6fc5a8ed1
MD5 9fa6f63891e5b6cfac7e82b09943f522
BLAKE2b-256 9aa0e0979cc4b315a270ab02da71c5c2cfd5ce9fade0c84442cce76c85da9cfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e427508dc444130a7fac7d0207e407c23cde02c27142f1ae0a2022fc1876203
MD5 8dc4e6bb0fc9e0a85c0cb8de9a94270d
BLAKE2b-256 d7a31aaeed8d78a74a017cd939f139a63bd522d875013ac7db0c23a2557ccc9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1e187e885f46104f4c46a3736c3dca3eaf03171c82d01dfccb95e66b7b9fc6b1
MD5 22998354371bc4bfada125989a226e3f
BLAKE2b-256 a1162b5d86b037ff8a0a663fb45152168987a0a3877b35b6d45fe03a1871d975

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b6340eabeab4702eb5c9f588dbe3f47a0c3ce906bce250ef4f51252c4f00d4f
MD5 bc8a712f8e2b02aa3939b8042de39d5a
BLAKE2b-256 16a13ca08f9801f579da56ccc2dec6862076ac8b317f93f787f1724a74821356

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72b87241c321ab9fb99c6f02b0939714b11810bf9c156705ea02e956942a3933
MD5 67ade506849019dbd156a057a92f0fdd
BLAKE2b-256 0dd6e75e5674a6345514827d4df46819bc182e8b91cc1bb63f5e3945c4a9186f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5fd293b3576e0bc550b5aca20784dd47f570e158e938c99b8deda99c517d1da
MD5 509fce854fc67cfa6600b55481a15e6a
BLAKE2b-256 cb9365678b60920a50ad804bfe5574dec195144cc0b76f34fcf0f57f5b70915a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f760289def956d4065df781f40214832d5dc2bd1aaa4231d17d01687842113f
MD5 c40566df343c9ca7fdfb15daf8cbb743
BLAKE2b-256 a5eb411c9503104e7ce12e481d31344680d967301658125499fff56ba5ca526b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15b43c3bb85820067a458232f2f82de763fa71c60e96517e1f9e542a28df074f
MD5 a09f243af8a9475dec48c8f537493b40
BLAKE2b-256 6a9291597237e61078494bf145d1d41ec63dfc2991c95b5a5325388fdda86183

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eafd73b77b79ec17c894530f3201c333caf94ccfe8ff2dead982d768e4cdfad1
MD5 81a4856271c1aa58744f730cd4ff682f
BLAKE2b-256 30247b080f559006e601abec27b71763295ef8bc4ef63ea7c8a58d4e5c2766bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 132eb3b2d74b71045e0b0f2b1523b5a371e1eb017a2600a2c68411bf1257a3eb
MD5 6c02ecc9a37c7208bd482f678e47a77e
BLAKE2b-256 b281ae7a3d6800a6bcd86b65ea4dd92c65c656fcc47f67a1939e8269418ebd05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3536f93d33e2e6a4a365486dadfba931f132bf77a1ee01293c8f66f3d34831d
MD5 9d250ccc4e613251df0340315fd26649
BLAKE2b-256 ccb833d8607392bd0599c138ec4647b5cd1f20cc97e378e974e624c1be979f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3964cdd5bcdab24164b3d9caa420c47b71e45d20330c2b1b88319e5882ae72b0
MD5 e9765cf1e1d8b0972de418df08faa8eb
BLAKE2b-256 207ff2a68cdbf277e17955563b7cad6abed95c239d7064a9075af5e319e5a943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 393a3f36a395a199f3a1ee9c37686a865357c96dc939e8df5dfc30a782d22201
MD5 b290b21cbbba72f47a7db307e054b285
BLAKE2b-256 29fb21aac9ef0e2497b9909c31e5c0894e51d3acc35085d197be49c783c70b95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f12572cf7734daa111e418f687dc4e53f2bbc470e93094d3f40b782ddad9b94d
MD5 4a1f563d35feb1ce20ee50b8b8f964ed
BLAKE2b-256 f9d4d737a3e28ac88d8cf9655a6324e54a98306d61265f3cbb167b8d674976ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf46635036ce8f3f3667edb45b7f4897b2a0bd2520e6eb6266e7f658d27e0ff3
MD5 5f12200de95f9d263ceb564fd35a05b3
BLAKE2b-256 b40c927908f7c09d9802e7164e6aa88f7449f771b1d89ad9eba5c55d6b370094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ccf0f2fd52c593719e53548007b7394c0b5b061981e4fc06c5e163f785e5adba
MD5 eb67f26300c787c56f1388d601a87f56
BLAKE2b-256 3434a36ed68d0288863484d5d97bd7213a5be3ca79055fdf68f5c09e0ae0e427

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ac1b2d6c28d675f60c6fa3255db358511d87e1065dd3ad1ea02610a0b1d55da7
MD5 c03013cd07990541f6e9ff7109d98fd1
BLAKE2b-256 429993c2ebb2f54c059a4c746963cc4e20e64eed3b60659683472196d0fe3adf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4d66ad4f694241a1401e0d61aa85949830898bda85b2a6ffdc965ff95b0ebb6
MD5 ba26d74320d8c7588e7133e699b6ec31
BLAKE2b-256 ab9c9224cef197f80edf923273d6cdc6126313ed8f59de8c1add817aa24ab262

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7cccf219aae1cf8b1237324d16c51df80019d4abe1930064e3834d0645d88211
MD5 e113605977d8a55fc3832697db2f28c0
BLAKE2b-256 62a86b675b0e730965d898e04592a7525d47b45832405ce99964a9c97cef29c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd150064cc83afdd9559e048bdc6aa4097d01d569347578565657d9ab8b50bda
MD5 d9fc9c149bcca107183f32d06895d012
BLAKE2b-256 b78ee25bf8aa4bce915956cde8fcdce317bfd1812a1b83315723a03a5a573d28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca1c093ae829934724530a0400a74fb27abba40a68819b6b18ea4749051ec272
MD5 9a82db3fef6708528a22150224be4499
BLAKE2b-256 849d5467c089d0e2e7ac7f09f7a96d97732dfa8fad2ca7e826600f9198694dac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d1779847970ecc5d866d43d59bf2221d30d66e0fda90a8a6d08389b58b58ef0
MD5 231d86f4bab380ff25cf384dc9e827cb
BLAKE2b-256 ee7466614e3034bba6b7338212877fb9b3e1da46d5b39468efec76c62f6ecabc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 99482513c3eb1bc8e4ec17fc7c3402ff398c213652fded68d8ba6fff28677740
MD5 2ed1e0c236aa0f5ed800f1a5a95564ff
BLAKE2b-256 906009efca5ec25aa0f29d05e98bd1a4eaf4f0b7ed0a717c5c46d65ddc1ffd51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48aca0eae992bddb9d79904cd4bdb8f67d5275216cba44a3be9be37e15cf4ad3
MD5 153c70c8bdf424042713513448209e21
BLAKE2b-256 4847220b09d6c94bdd8abac9df681ed73f0bbff9fd87589c67c087a045cf8610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45133d3cbcbe8e89d43371e952fa919ff7a7c8c2168b30ccf293d1a41dc27656
MD5 7ee7f6feb5fa98f26535e8a5cc85bcb3
BLAKE2b-256 a3cb52a62e55c1e549ab3e17c44753a525ce27acb31dea1c943b839e029b96c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b55a466a21b01017dd24f301d83bc8f6a75f76654118f375438b609ae6025d9
MD5 049986802a7198f6e4fd3787cb8c5c4e
BLAKE2b-256 f2d27ee658c53483bb5d2c4881b89306d567c82acbc3f24ad7ae94d027886611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cde206d9290dfe47da06d6b962f39c95330f715ac73d372c2fb99be08ac63091
MD5 3c3378ef6aed2fe2d9b8bf7dda00c5ea
BLAKE2b-256 c770ed9082236bf3a797750d62536a5b9dd1be61f7a219abeb4816c58a61128f

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