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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14macOS 11.0+ ARM64

czkawka-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

czkawka-0.1.2-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.2-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.2-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.2-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.2-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.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

czkawka-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

czkawka-0.1.2-cp38-cp38-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

czkawka-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

czkawka-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

czkawka-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

czkawka-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

czkawka-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

czkawka-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

czkawka-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

czkawka-0.1.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

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

File metadata

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

File hashes

Hashes for czkawka-0.1.2.tar.gz
Algorithm Hash digest
SHA256 0941fd763c73b2a20851d36ff7b19a12cb64aeec656a9415646311e8e7d90ee1
MD5 9abec6421fe4870db0286e960516d440
BLAKE2b-256 d4b875cb6e8efd92999a77ab6c64b84096f39b8b304781f77ddf7e1e44e60250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8661671f48208bc4699e33fe6049fee7dd164ecb68f882f7793e08dc289d04fa
MD5 a37d50329535b4a6b741bc6904bdf4ab
BLAKE2b-256 5ff3558b316241d87d5d80b5e4c2570ef658673d36421abf5abfd03d9dd85b60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17cd5d79e0939373d0066779981901c4b2fa01bf15c15d657dc2281cd0679e7a
MD5 27193f9ff2a76c13857eb37ff0269a30
BLAKE2b-256 14822ecaf5a73753c2f426f44a9ef620ca0b225b1fe19a10ec3a7ba38559aa98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 54404cb64a018f571a1b5178c8342560e914dd602f1cf485f3852cc95c29dc6b
MD5 d77f5d3a21495121e3d0f679f18c4235
BLAKE2b-256 b0834864b3ab1080d7d37fad5345a25b85daa93d8df01a2bb72abff08be1f982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67c466d7317708be0bd3c3e3d60d789dd18fd0ba9a0f5f867085fed5e68691fb
MD5 e7910b5ff02774ad2acf9f77289cf1ad
BLAKE2b-256 1404e55ef52b4851f989e22f926ec10ef085269d7d70022207fa5ade3ecab796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77728adf809e23cb7f1b21a49a18c11aff5915a79a5d07c93eee9b7b29091448
MD5 2ef8c1c6b1716e090014eb3b788df7b9
BLAKE2b-256 43766a71da2805c62a6ab34367bb2ae5e8aaa8cbca2ab8855abb05485aa532f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9a15f6598fe3c44ace693946546c16ca896a509c8615b607d6a336dbac74c55
MD5 8546d23a5b82a47050271dd65792a860
BLAKE2b-256 d5adf769dd527063e6829c326eec5f8cc71a5b0bec2010c6138f5fab489e3999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e571349025d8ec8901f24095e3898bf656ba109e601b81250f97c1cf1ffeecce
MD5 fe166e8deec0657263a40c69882c72b1
BLAKE2b-256 16fa1b758e96c2de73b613d51bde0886a93acb55dc40be8466cc7ac642c23f15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a9787d314b4e1d818ee35a0bc9794cdf3cbb3ca1cca7c1561f7a7c541cf77d9
MD5 1276a979b766df521a7e3a320c762b84
BLAKE2b-256 a9bf3a2e1a2c5308925f02fe8d58fd9f87b25e747df8a1d34d64922328e45b3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fbfbc733be737ff3acfaddc28ab410c3460b4feff35b34ac66276ed1de747ba
MD5 5d1b58050688325fa127b64d3a83f834
BLAKE2b-256 fdb4d3f0b887485faefa3acece7cdb5943845a78d8de4a06d34ce0520062a387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 99b3557c25d777ee289cc2ec6373ae1f8a5f58c8e7227aca09a74dee6aef81ec
MD5 b3d39e9a54c348548c3d5a63263ff797
BLAKE2b-256 8653ed686f4b6debbca57fb4aa4145a74b80723476161c0657b04e7197491731

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ffd3e9da99761bff9c3ca0a49c9bbbcf09facb4421565c939f60840b5c346ffa
MD5 70a2c3bd19b14f9e0e56b85f6e8c1988
BLAKE2b-256 270ebb687267b23592134ea69e73def771fe4da261211b862d3e941015814407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97ae78ad1a62ca9929b2f7abcbd238f72582fe34f10868e6e2be11c4a8208fbb
MD5 fb020b2acdab6a4dc5079d5fb99cfaf8
BLAKE2b-256 f9ee254279548ce6f36fe7453b14cf6523b4ab8e2837e66dd6c4fb62043994fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f08688adcedd9a6d0695e81cde9248a34214d3d62b02e87b01eec9dd05a51686
MD5 39affffb6713066cf0640b9c658c2625
BLAKE2b-256 ef5731e1de9876b61601b010beb7a205e00a33650a20d9dbc35adbb1aaa94599

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38f4951e5fee06cd75d50491022e3ed20be6547a60392210565abf098ca9d0c9
MD5 dba93961e02efe65f4c4c37a2d284ff3
BLAKE2b-256 549abb129a4c1b25843e02b881fc25cc89335bcb8e92de8f1a73d597595c0905

See more details on using hashes here.

File details

Details for the file czkawka-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: czkawka-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab543616be187c27091f3d31bc73b5d937f5493200d8a88534f52333104fbb56
MD5 1ff3762b3eb8a5755a0672a19ab00f1e
BLAKE2b-256 51bb8caeaae77f9265f465701ad34264330921b9d201143916cd0b77e813e5ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52c4a7782eeb6a8c8b31c69c473fc139d272df7474af56a6c7a903cea231b93a
MD5 5666de28909bb1a3fb1b5e24fb0a74b4
BLAKE2b-256 2bd2cd43e608fdd063d91fabd3ec76e6b067eb055737f28b4474575cc37898b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 64cad64afb652ff81bf5fbfa23420ccb89fb23aba7861838da450b6c32545f1d
MD5 d82d3886023815acd124b334cc04e5a2
BLAKE2b-256 a084c043ceee9f163e2627b56db44510a3076d7e343a4546275abef9a67994f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3be7d160a269f8b2bac540a2db8a5bed5b8eef1c70ed7dfa050ddb40811574f
MD5 7e2ed1f3e56eebe80ac09202dce311c0
BLAKE2b-256 d893ac7e070ed5f17efa805ce3f385e3e81fe61519c3add2f6c4749a8df090a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7bc8f9f13ffe48292ea65a2ac30e1fc4bf52638381b177ff669d4f88b13ece3
MD5 f6aa01e52d2c7766f816037d94088c31
BLAKE2b-256 06c94cac33b3d957c1d61931bec6fbbb07ac5a13d20aa72387efcd304d86834f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 747d029a307771b32733b446f16b7939b8a5e9b765d840b35bfe598c566f86a4
MD5 d9fa662d054d5d957cda978599adf0b0
BLAKE2b-256 0d287072f72f6b2f07acf0a9c25736cddd98cc53a59544b9523cf752f44f0d6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9dc1151cf2b71041ba3d725e0c1924969f43bd7b27760299592da3ca753ddc61
MD5 a46c07c6fb9c042894804f5061d5e4e2
BLAKE2b-256 bdc2c59c89f0ebf83c6e899d6eda3bda86b19ba72fad3c51a9696941920dc937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f9c4497dfe10d65cee69d478191ee2b9f2b69dbddcbbba631b559e1cc10c012
MD5 1907ab8e84c3a8351b288268455658e6
BLAKE2b-256 b2bb8b2db53bb1d93fdd570c35d84025b0a68479b17a97e44e65e39cb3a3738d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ec9b3dde8a2672d1554c7f0cf83abe6189de2121a5c97439c018a6664f6b09a
MD5 6c7bbf919ebaa32d3ae55fc46c345e54
BLAKE2b-256 8d6ef7553a5765afe91c48848ba326576a8f45f55b83c299eb3bfe0bac07b8f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 da85d1f9770a38de8966beebf7e59e4f5f1cedc2659e1edb5d591c99c3f0f591
MD5 c20ef6167553f6821c6e1c7b845f7aa8
BLAKE2b-256 4af9fbc6cd4da87e307bbcea457b4f4cdb92d5d026b680b046375472ab95d821

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 923c48631b5cb8af76dcdb3b699773308a12e1fa72ae1dabc070c43a5c98cd83
MD5 a43a15b734bd9a4c7c716cc19e4124ab
BLAKE2b-256 77a4982f6b4601e4ac1ae1056999d8465ab4a1497a0a40d0e082017aaec90f26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a2ad5570e75c1a08e0540fee403b7c9cfc4770699dcb2a1485f8079b654de97
MD5 094969546e6dd9fec568e65d421399b0
BLAKE2b-256 febb07c4ccaf0b079496e601a88a349f6bc6a3b35521394a1d93e48b1ae2c8d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15d133c3b09d31322a4b07e8391819e17e71001a07a9f48c07b16ae5025c26e5
MD5 fab083c13a54ed81749db6f054d59217
BLAKE2b-256 551bfe064c49a0d2f00f2475ce447bdb4b12a02af953264537c3ad32b08f2467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02cbe57f9cd3933f13e3c2e0c91e4c1fac357fb6f409e6ba30119112a2d17508
MD5 6749532ce1355354b8e2dccbd3d244a1
BLAKE2b-256 3864c7bfaf5af2957002880335b954d2c418634608f3099551e66f3047a64dc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1d3aeec9aa6863bb649fc47f610bb19325378a4775b273dd0a69251311728cf
MD5 14d31d8c80b39293ea59301364bc825e
BLAKE2b-256 4a3790b7b9dc91d109c3892a450cf324de74d0d35005a983da94626a3f8f2a08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af287c75db62b688f6d0a497559d146b1b53857deb7ac035edd10506813c346b
MD5 e4f66e2a5067bcaf26f7093e84ed2450
BLAKE2b-256 9c4c2e1bd582a1e3b506c519458dcafbebbc70975e253e0c92fa643925a3efb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1666d21ba4f758e0e440e96fb13ced3adad7f7c2a145d9fbef4e06e71337f0cf
MD5 6a21f6a6b4d0f0fe7a551e5bfbb1251c
BLAKE2b-256 b3d2981d4f6a969167213293eccbb611d0e1f7222f994adfba7c37766878ab24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b65facf8f5ad8a29bcce0be98e4918c8cb9bf8c521a68a08649caec726cf1e09
MD5 5acfb1aac236f9c087d07158ac680051
BLAKE2b-256 b9c43b1bae53ede1c0f1fdf08527944f891655954c26b01ab1da78237bb5ccbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ffcc19fd12430c586e70bed9e092f059b9c12e7b41a3802ea22c390d1b03b1d
MD5 ba519d6a7e47e27a1019efd83539c3fc
BLAKE2b-256 3b830d4b6e462258e009aa147d65051c8c0177e0519bfaf4a01cbfd9ddfbb7ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7affa07ec768ae4dd18f6ac44b374e51b191cbd5afcde513bc315c5da62c6667
MD5 537bcd2043218c2d48db0194ba880ada
BLAKE2b-256 5620af53c443672f1d0aa980a963cbea0a9bd175d88728f5c9db2c72238bf510

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7859d86dca4d3d3077dfb5231412114b240d131ebdd7e613a30d92f3ca426ecb
MD5 05b83dca022184d7ad57e0e84716d671
BLAKE2b-256 8e797ab10d02ae9b6c01fba840c6e4e57d04212921d36eceb001bd9f00240928

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99198009978b034b6687196bbdb2be3dc8a80d6a5eea133cba096ed0b9b9b7cb
MD5 3f92e093af718c826df35aa6179be5ed
BLAKE2b-256 3185590c767a61f6842b66a4e71a7ab0a74648924c773bb39b8a03807b8c9609

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6504b82b3e8f47412a806c4e9cdbcb4401412a4c860650baf424e254cdf6c521
MD5 0e2f32e64bcfc0a7cace7554b2254d4e
BLAKE2b-256 195b948d7c5bb766d7d86d0fc9be57e9b0e879b2fa68f8c5c99e4abe1efd213c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6755d1356d72a1274241b3bc104b242bf78d8056fa0b298e5a89ec98e5b7e45
MD5 660558f12718fbe660727284e01d40f4
BLAKE2b-256 0da9d6cd90361741d98c568e1d3d2d47a224cb5e1bade993055472cbe774527b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d4083d6cec125d32dcf1f7212ca1aebc404c0e8d627e981241f661efd427faab
MD5 5c2bb14d8503484377bce459913db05a
BLAKE2b-256 2797cf938f629608c7e9e6f06abf2b700ec91afcfac3c369885927821da2fcbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac2e180eace721084508f4ab3694b396893a2831637a2fda97c0695dd614a1d6
MD5 b036a232f2584efce25d956352b484b2
BLAKE2b-256 772fc8598f53a08b55e65348ed9dfe351163c2a2a3edbdd18790eb87ecb2dc3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91673abe9496a47c69a299111ec68f47298f8d52a58e47750a973a1b77b9d599
MD5 8bade7799bcf5830dd5994b2288d9b08
BLAKE2b-256 c83fbcc295b0fe9aa0c5a3208e0fd90aa60a44806cc7e28a1d6bcaff64bec032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2e3757ab18c14fa4771f71131f03f6472851fe447a1170833041ef7aa94fdbf
MD5 7cc019124c208b241d91944f9eede577
BLAKE2b-256 c9e21f9c7f796b8069267aee2763e0432b5ec9d1c21c42e21338e473342d6402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aea3f0051a36a8668aa1aec1148eea19f0ca2dd5c2417896cc988d0fef70c291
MD5 ccab0148af4f38ccb67555f0bd686b09
BLAKE2b-256 3f5914d3fa8f3c8036c5d9ef73b83795a0f93e011c963fd936fb44c31f3071ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2535477fcbf360504a70a1ee414007dec622206628787b6e494c60a45b9884a3
MD5 98eeaa4b2341991e5599dc21898ff0ea
BLAKE2b-256 08cfa41540e184009f51fc26b45044ce6d9053b257b9b73cc8a8a98cec6c76f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d7e3015bbec01ede48ed3c32adc81a3ce2e2951f663eb516e4222c1717e7bfe
MD5 805603e1dd0d268e6be58851b2e57a4e
BLAKE2b-256 95b47dc43f9b15da8ada017895d1f12d1d70304f41d21591288eebacf668724e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f0795442b28023c460fec61541a0d63b78fa675a5967a59607d696eedff78e9
MD5 1609257bf0864b821aa928a883211017
BLAKE2b-256 d4a63660dd2db46fe25e18c53d07cf0f5d89e20372a50e6894ee4503cdedcb77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ff52fc44f88cb3953cff3e1e9d9117fb765c04d6783180da209a9da4dfa61298
MD5 e55177f8ac043bebfed393d720dcb2e8
BLAKE2b-256 ae6a22840e8cf5dae47cf52cc764337a60ef40906f32c3cdadede177fafdbcef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd9991964aff0c66494e633fafcafaf5a38af77ba4d3cd048f8d778638d17423
MD5 53c10b1ac5bf4fc49ef96fe5c070d45d
BLAKE2b-256 2b51fc41afa6f5a3ed5a0fcab6858417fee81d6c0ed8c241e30b7e02a6c9fb8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4fc70967631a63b0104578055c73dd18ebb463c31d2d91d6f438e55d92fba803
MD5 22bcbe52cea60a6981d5c90e3f2e793f
BLAKE2b-256 1d662bb071fc89fdd5470f2055fac7d351b224df107e4632a3ec2c3a92c92155

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2b93b75dfde4b8e0d295f743355ee37c360bf8f82c9070a447df32cc022f2491
MD5 c137d54418789c85bea916a4d1edb0aa
BLAKE2b-256 20051143302ebf3f192362e2eb57a1612ccf5b3ccb38f3b580b1a211b85e830f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7d8795f7aa2e55fa35553119bbecc51ec15e73358d4c89f1b1b457de38ae415
MD5 8ff361654d7f06ed1c67c4e6ecb4bf56
BLAKE2b-256 726e9b5a50747af21f385629ec37d459256219dd54299a2a69d1c868aa9849d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0865994b1bb01d3d1e88e13cd1434bd02d0900e90ddf2757a6df3dc2728e5b1
MD5 e4d36d9b42af1196d886fd8bb59538f8
BLAKE2b-256 402eb5ca74e3abb4ce689aec5723eeb888c9b5e918cff449d4c2d566a0c1a459

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f7972ac1c070f725557a1b04924524bd47427eead9782cdc5bdde90977f9145
MD5 3f77ebedda9a9c5e0d2e6dfd03482978
BLAKE2b-256 7973032daa0afe7e85686d09989225d2f2845aee60c9bc10e158b96dda5a6c73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe0e9f9223c35a02afb9e04f796620298b46d07113bc873813a7b4141abb246f
MD5 5064f66e2f7c71cb4d82fb553b0c27ac
BLAKE2b-256 d683436fcc45e9d7e390d0ef1ef719de0388cd0933b6744d8e2d45e141c3e7fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d996cc29d07c5b34893ee7214d07a2ec8608ea869aec292e0057919d25b6d21
MD5 8546a54a5ff8a022597614d74070ffa2
BLAKE2b-256 af841fc12911528851af320fefbce19357f2c44086245948a04ea159885b54fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 232d5b2408e622f5a9fab9a59b6a01781e09668104581bb4103bd7bfa2a4510b
MD5 f642a3140df8f5e6108a3d225fbe12bd
BLAKE2b-256 537cd3beb4c3f8364758de05450451886235b021988abef4a19ca047ace06d4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf470cef7e44784d86055b4e18d4798396fdc45e7d423820dbcaed0f392d5a8e
MD5 302f50233c3dfd10dcefdf96bf826807
BLAKE2b-256 14e5858815de188ab956f15810887d4d62488c0670fa6d36855e7d65715da8ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e9b087413f80899c7c43271b247a570a018c89d2a879b387ca524c7a81a308a
MD5 f351542e61ad098963e8499e94b35067
BLAKE2b-256 c8211c179274d913e232bdc1424f6bdb9541ab148b815980121aa686a013643a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebecbdfa486439cc782d60e1a7fee07dfd2d2a1fcd140c7e6f92cdac8991f918
MD5 86ad3041116d7e5d6563eeae28abc184
BLAKE2b-256 090c5c233c328f4cc53dceb06992f04904253dcbdf2a9566a05ac57f42a87b4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e6b544658233d7dee1fd242f54a1a8134124c251888c683c4e35259ca76aaa23
MD5 101396f640170b8dd3f62f3179b9abf0
BLAKE2b-256 2793cc812cff4b7658f736ad834c4e8c492fa52800c7364195d819aa3b80a4dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e895c061b00ba16ddc0f6a950fc816fb5a2b5aacc7938e5447f3c36f487a994
MD5 a3cd99f2abffd4bc6fd3df6386b0806b
BLAKE2b-256 9d8ba583eda351afc055447fbe5f0a61eeb9255940ed01ad11565ce4b6d7239e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a51db0dee9f0e374c649392aef1bfe4425f267754a9bb3c7946ac4e4ef876ae
MD5 3754e0afa1a5d2acc80c142d2f8b6079
BLAKE2b-256 84f217a2c19634e2823cbb230ea67da124675fbb5e6eab82c1a6e56e6e6b0649

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7c6921ac4c20a3da4df65153d385ac059fe6738738ca4e239d5627064fc1c333
MD5 5a13041732114999ef5534f623af4ebb
BLAKE2b-256 09e9f65245336f3b34e69bba7c2ba8d2ffc98583692f9695c53a1dbfd4397473

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4d3a68d9dda066f491930b318a7a307c1f22f5b28d3940cde4c6eb850844027
MD5 c69a9330d1ad5ae42d97e05570973101
BLAKE2b-256 c4ea3b2d5727c069091579ce2ec03f916eee88f21394efb56d8b828daffbf0ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2960f239f00a0fedec88bd36446f6b83fcee12528117e119c81d0c2525ae82f
MD5 71a29e5b9f8c1f037e800b6b68e097c5
BLAKE2b-256 6d14b8c26b55149f41fc3e4cb20b05a7102ad21e7b6d3db0c1fe3f6c12f59c5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 09e3c5c45d20f962573d9b763fca4b7dc70a75069e6b95a27dbca092c63d860d
MD5 b5ff56dc4278a6d179311d054635a17e
BLAKE2b-256 629690f160381a5d1c79936141eed0d694267ecdb40c6175f86603732e676765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e24e56b1d6ab1430eed9cc797d90d19d800c00a1dde8e4d5d6e7f8d7ee0a98b
MD5 1680d556ba2db6facc5c070d1e6ec105
BLAKE2b-256 8934c05559949b7ab0a6c2cac173ab22ce69eee6db0d8eb4fc0173ba2bfe2c1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dcb151b83c783fb2b4ba658486b62241b0912e36f49f3e02c2eb6787277b8b0
MD5 445dae67079062ceab1c6faab26f5638
BLAKE2b-256 7d536abc615279ddf463e07f12854d8ad32ef03e94201e4618776f702f2f8c6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7dabb03d0a0842c27e6470dbae9f127678c72eb8c0b099f22548487370d2aed3
MD5 b3f93464861d93da74f8e6919e4a4ab5
BLAKE2b-256 2c2cfdfc78b8d457d0e5e28c4193f84feebb36cf77422f28432fb294bc962d95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7be608de7b1a28bc189720e07d048a3a71addadd47b459d3b5d59dd1666085c
MD5 8fc506ed0c1c8cfec5c9166cb5ac0a41
BLAKE2b-256 0cab0490faae67e340af1cf78c32556cb3b6cb2f718151333c09df2f380f05f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2afe02087a6a499968d7c39a3045d70140f749e27e8c2e722b3153486dca2b2b
MD5 9fcc547b297b6a36a135baab9811e136
BLAKE2b-256 42e571b29323ea7d9aae2f26b1564a4a56bdac3c654ec9b03976b4e4e786fe11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8c5dfb81a07c0c7255926f269fb14348e09b7333df42a537a30fd701c15e9cb
MD5 a8091eec129f6e823bb31528b4f06f80
BLAKE2b-256 5170cd56e45b6b9941d038c3bb04f0fd559d7f9ce5fb15c3fa19b1e339810d8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 626be1e39c7ce61cfef7e1f29023fecdc76ab7839a4af2db4336744a934b532f
MD5 eb733e21a284ca5eb4d86aa43ec9b3de
BLAKE2b-256 237e10a9687fb389ef9203b759d1787206d71608a1f00954571058f1432c055c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 048bf7660e11f304c270abd078b98a2a7c7d78bb43b6eff11a59efca7e685fcd
MD5 1f303877cbaa5723e01f5b8348f1c54b
BLAKE2b-256 4d6ec72abd905bef84cac55ae2702bab83ab3940d6ec2c5ee593f68adcafe671

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 782d90440fa6a34be6fbac6d5db3ecb63bbc0e117bc793a85ac3e948d77b2a51
MD5 fe607139f130f70396532e3bbcd15eb4
BLAKE2b-256 30305f51a2bc667a219eb41cd5b8f2e00c69a4e9120b781835737c39b7e1d90c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b95fd03ac1614f21a56591cd04fe90a9e7584d9d1277e9d97bf08fbddfe0b76
MD5 730f9ae0618f46232ba0cf18d2dbba2c
BLAKE2b-256 94314948a35f5fc3e0463025244c01137c06a7b255307e13d26c12a61a0467eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f1e2307e41d9866aba439d2ea944bbc865d392b0df921ed8f6fb57879a7dd78
MD5 b55b08fa49134d0815edaedd052a1985
BLAKE2b-256 375d718775396711f16ba03ee3e60af53becbe3d9f9078dc534d47ff0fcbf00e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: czkawka-0.1.2-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.20.1 CPython/3.13.3 Linux/6.8.0-57-generic

File hashes

Hashes for czkawka-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f023600323e984118840d73be107a76d9cbeca3b330627bd980a1452dbf25a5
MD5 8a9c999c156eef08f9ae9e246490ed3f
BLAKE2b-256 c235add627dd59d9096f63a0da8cae527d677d75714a3fab440946e6b4d8f076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92b75bbf6fd781e730e43a301ff62703bb972c65f2feeedac8a307524cd0c108
MD5 720e95ab5787da0c8ec59caadb6514ff
BLAKE2b-256 616147ad6e4ca8e5c96add5eba2c00c127784355ae5d7467a6effc2b942052e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 723038cc6eff6576a4abc0649f95bf3deace694932fe2dbf075fc4d1484f19f3
MD5 e0c717c12720c138f1db4f60b5f7506b
BLAKE2b-256 44a4d4e1410f592ebb8bce7c9f3eb2992889cf596004a70b87e2717929beab2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d793debbdbb74e16e86ca5ed191101a2f6321d12c2888fb0739a608adccc3bc9
MD5 efc91cae430fa5eaa9fdc15f655ce768
BLAKE2b-256 ef81938014f9c7519a5983d499771773c474a3c0716fc368ca88de6caa7c9849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e1aa54a4167eb14aabc5f8ef21b77bc4022df14a24dd8bd9429dbedb5012996
MD5 114bc401085be2f5ce2febc58fb6b0f0
BLAKE2b-256 f58901c12b82be1cca8c4dd443b78df978b1c3a1d386c5d7bcd970f0c70ee195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6611f8a1126d6b96e40c8c4b8e458a12bad424f5eba8bb43e57ce889e0babf54
MD5 2817aafadffeb4e8fab5df3dc261e4dd
BLAKE2b-256 5a69423cdf2a768153d4b9753d769c61f1291f3680f65a778c5c1838e63463f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for czkawka-0.1.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9b183ea4d79a5ef52799991442f84cfb56dd0fec39b3d5b6b6f7f0f974dc5b18
MD5 22c91ba1f2b5d7f6fe2223aaecb91494
BLAKE2b-256 d0ea5314afac2b2569a4cd84f8d3c976d79b5092c12510ce6c8957fc1e549bc3

See more details on using hashes here.

File details

Details for the file czkawka-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for czkawka-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bc9497e52a61bac42fd323fb53f075c46a066fa16171cdac2ae7f1af9d9f433
MD5 bfa3eef7b51cb6ea18d083d570a41888
BLAKE2b-256 317f3df31dfad972bf35e8033ae4ee3bd3394b1e7f2e51b09f1de9fba2d1fbb5

See more details on using hashes here.

File details

Details for the file czkawka-0.1.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

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

File hashes

Hashes for czkawka-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ccbb2a4f65de08cecda5f97d8bb153b7cf275f5e7055caa2d521846f73ac81dc
MD5 b2b262cd982aa228780e149ce11af466
BLAKE2b-256 97ea7581feb1cc06e35632658c72707402ae7f3d25fe763e7c56c565150204ee

See more details on using hashes here.

File details

Details for the file czkawka-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

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

File hashes

Hashes for czkawka-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dac35c5f2fcf11c45512bdab675524c43858d65546d7cffc14bc9ccb6b5035e1
MD5 55cccd3d58baf34eeaea5fb9d41b3509
BLAKE2b-256 07e421e88f9af28949d4d27de99d21b6e32833fb5ba73cc1542a845d09140225

See more details on using hashes here.

File details

Details for the file czkawka-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

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

File hashes

Hashes for czkawka-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d16cb7a2d98cfca21be3bab671b05408a678392042ac72093be6f57e7bf43a74
MD5 3b5a6bcf04e3d8afa6a3223bcc7daa17
BLAKE2b-256 7166cb65ddb37f61c3c4eba49239243f87a34e3f4fbfb3a83e993437e9e4c919

See more details on using hashes here.

File details

Details for the file czkawka-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for czkawka-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b708ea319917663f80f9ed4b7f3256ca383edd71f7ac7293e83c4f62f20ab2cb
MD5 88f16c8e37919695b2247b806e300abc
BLAKE2b-256 4f0bb0f5f3f352d866caf4935878515899b8f6848323cdbf7f8081f0c410f9db

See more details on using hashes here.

File details

Details for the file czkawka-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for czkawka-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04888a6810e3bb3ad5265c788ff54d3e1d844be105cf6f6ff2f31ddce4d19e46
MD5 9f50ff5abc7e9ccaf9831fe46861aa20
BLAKE2b-256 e42acd608d078e6776a331df4359e9a7669ca32429f30ed98ae2ccb968fa03de

See more details on using hashes here.

File details

Details for the file czkawka-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for czkawka-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e16ac7d2e6cc533bfd7fe6f883e36f2fffe0636af5857a629228e14568896ae0
MD5 938473f454c890ad8ee08e85aee0d21f
BLAKE2b-256 059a1ad81fef8da1ee810e1b70e8fdda4491c1628bd1e5b5b7f079787e9ce185

See more details on using hashes here.

File details

Details for the file czkawka-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for czkawka-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5f94ed7a1c2d8471dc39bae369d4f9741bd79ee11c94522ae2f9f9b5c9d0624
MD5 e154e9c72920e1ca0748493370b24e49
BLAKE2b-256 243d565222cf0c74e3ded2e980bf495009689bb0bf152151e69609d1d1d30cfe

See more details on using hashes here.

File details

Details for the file czkawka-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for czkawka-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77d658084b210fe00aa88f2c988b5533648b69a6794f952bd87bd2cb829bdf19
MD5 65b2a5cc7468907144f202ab6d71f084
BLAKE2b-256 532a0a15bdd50807fe22bc822aebdd8f3a040da4f0c400d06d05dc9dab4268f5

See more details on using hashes here.

File details

Details for the file czkawka-0.1.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for czkawka-0.1.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ac17d0a21b4a80b2b031808ae46aa3272965ece0839a5faf60cccda6460f7ed6
MD5 33960911fef8c857f67af4a72f51a27e
BLAKE2b-256 a472196e2b25b11cdaf5fe5e74f3e81218fb8aa1179b9b218c63fc6b6c2a3d1f

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