Skip to main content

Fast parallel directory walking for Python, powered by Rust

Project description

speedywalk

PyPI CI License: MIT Documentation

Fast parallel directory walking for Python, powered by Rust.

  • Find the repo here.
  • Read the docs here.

Features

  • 🚀 Fast: Uses the rust ignore crate for fast directory traversal.
  • Parallel: Multi-threaded directory traversal.
  • 🎯 Smart filtering: Built-in support for .gitignore, .ignore, and glob patterns.
  • 🔒 Type-safe: Full type hints.

Installation

pip install speedywalk

Quick Start

import speedywalk

# Find all Python files, respecting .gitignore
for entry in speedywalk.walk(".", filters=["*.py"]):
    if entry.is_file:
        print(entry.path)

# Custom configuration
for entry in speedywalk.walk(
    ".",
    filters=["*.yaml", "*.yml"],
    ignore_dirs=["node_modules", "venv"],
    max_depth=3,
    threads=4,
):
    print(entry.path_str, entry.is_dir)

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

speedywalk-0.2.0.tar.gz (46.1 kB view details)

Uploaded Source

Built Distributions

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

speedywalk-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

speedywalk-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

speedywalk-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

speedywalk-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (999.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (953.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

speedywalk-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

speedywalk-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

speedywalk-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

speedywalk-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

speedywalk-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (999.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

speedywalk-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

speedywalk-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

speedywalk-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (953.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

speedywalk-0.2.0-cp314-cp314-win_amd64.whl (754.6 kB view details)

Uploaded CPython 3.14Windows x86-64

speedywalk-0.2.0-cp314-cp314-win32.whl (671.7 kB view details)

Uploaded CPython 3.14Windows x86

speedywalk-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

speedywalk-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

speedywalk-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (858.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

speedywalk-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

speedywalk-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

speedywalk-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

speedywalk-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

speedywalk-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

speedywalk-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

speedywalk-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (925.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

speedywalk-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

speedywalk-0.2.0-cp313-cp313-win_amd64.whl (754.4 kB view details)

Uploaded CPython 3.13Windows x86-64

speedywalk-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

speedywalk-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

speedywalk-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

speedywalk-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

speedywalk-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

speedywalk-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

speedywalk-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

speedywalk-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

speedywalk-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

speedywalk-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

speedywalk-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (857.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

speedywalk-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (930.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

speedywalk-0.2.0-cp312-cp312-win_amd64.whl (754.8 kB view details)

Uploaded CPython 3.12Windows x86-64

speedywalk-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

speedywalk-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

speedywalk-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

speedywalk-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

speedywalk-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

speedywalk-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (998.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

speedywalk-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

speedywalk-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

speedywalk-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

speedywalk-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

speedywalk-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (858.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

speedywalk-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (930.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

speedywalk-0.2.0-cp311-cp311-win_amd64.whl (754.8 kB view details)

Uploaded CPython 3.11Windows x86-64

speedywalk-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

speedywalk-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

speedywalk-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

speedywalk-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

speedywalk-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

speedywalk-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

speedywalk-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

speedywalk-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

speedywalk-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

speedywalk-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

speedywalk-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (859.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

speedywalk-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (933.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

speedywalk-0.2.0-cp310-cp310-win_amd64.whl (754.7 kB view details)

Uploaded CPython 3.10Windows x86-64

speedywalk-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

speedywalk-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

speedywalk-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

speedywalk-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

speedywalk-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

speedywalk-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (998.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

speedywalk-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

speedywalk-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

speedywalk-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

speedywalk-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file speedywalk-0.2.0.tar.gz.

File metadata

  • Download URL: speedywalk-0.2.0.tar.gz
  • Upload date:
  • Size: 46.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for speedywalk-0.2.0.tar.gz
Algorithm Hash digest
SHA256 c535abc31c8d25c4208ca9a6b8f2741c811de20aac0af2f3c0d2fb57dafa5728
MD5 6ab69ff7c5ab8dc4b7b21b15a366e250
BLAKE2b-256 f14fc6784b049f33b19c8028767dcd93b176e16635993c7993ed18fa8eaeb5a8

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1a69413b69948521355f14c9736b068612fe6e2daacf57be82d0589134ac5ce
MD5 8717e1c6f7e7e72445e76c00bb052d1d
BLAKE2b-256 9422cea6a0e9741e936dc6c380605d05e97c0b615cf5d0dad596b04fe21e7f10

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4df84e2181440d68a06c40144b433cdd3b0dad8f9c82f764e6a00465009b842
MD5 452b470fe53ae33aad6ff6fac256691c
BLAKE2b-256 31faf5505325f3216f25a32c4833c0543f1fe830a2af78d42bd21f7db20f0490

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f4c635e66462a167b6e3185c182d53e852c2c81872ba64070d5561bec5e898d1
MD5 cd5f51743ca7ddb15d89a5a52551fefa
BLAKE2b-256 b45f9d9bcb98de6a0d3540ffd1f711f66961ea1dacde7f35bef7b4deac0bb20a

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f5411f72b88d6f689cea88618833bece6a518cc42c7e19c61c062d555596c0c
MD5 5b07141af4fbc8548fd2a35f5af559ea
BLAKE2b-256 8c30b0ff6b648e13ce2fe50eb90a6a0b63910b43093c7f508f9120a7ccef8412

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31458e24889affd48d2fe64a53f33f9c27d20f38f8ecb0fc32b61f74a5518f5e
MD5 2dd32fabc4e9408ad2225f005204edd3
BLAKE2b-256 04f32af3c05d3d6620fa537f50f85a9de5bd307d7a1ab2a1422fac709e7c5664

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c23f36de25f2bf36a22dca7f5d283edfe520d6ec8f3dcb00a1465d304dcfc7af
MD5 d66450e834125ab1450b36f9bbe11915
BLAKE2b-256 613f09c42d7686b18cdfbe152cdca59bf4c9d290c5977ea98c56a6e0ff16c7d6

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b4af5cf740687be724e3b5099d2a1ae5ec84696437bc9611828f7e93bd5c54a1
MD5 26c73977050f856be5d82811ae83fdac
BLAKE2b-256 8c024f44a671b3df8af40bb513eac30130d301c22d7c0c6e53e4290e341cabfe

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23795602d69820a77caa709c0dcf69691b15062039540188913103605643da2b
MD5 1080d96d9e36f912b404077b7e8ad30d
BLAKE2b-256 ef635d7c1c5d76158674bb3a447c6222d1ceca08de5d43b224c3942f2ae30f0d

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2f18943f19bcda65a470f5321b8834aaa43de6f8132a49fc24f9f9fecdc813f8
MD5 79b0fb7fe51924192d3e5d19499018ed
BLAKE2b-256 7b30add4bc58e238d4d111bcc284413bff150b103ec3c2e21fb3a0d4e1985f77

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03b9cb19762c54cbd2c36625d7b22880a5e7bbd1eed7fb56a6d3286c778893f8
MD5 d95a805a709fff032352c6cbba4af303
BLAKE2b-256 078ddc36d5695bc7b2aef4bc6a3477366fb4d258ba3a1f011c6a7ba9adce7de3

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24f4ddde3c9f65779bffefd5ea9bdca73fb2e967ead0ebc4b6ae07ee86a924a0
MD5 642b2aa36abbfc71e613992fd9105f22
BLAKE2b-256 6b61d3e2ab61faec452baba34846aaadde6b18be37bbb3b9f1807e888919bfce

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9d913da6eb54dae8caddbba59a2cf9d8732ffcc28dcff1180bee826897430c5
MD5 dbe28db9ffc1fd8bc6d24988be449f42
BLAKE2b-256 8cd4b7c764620cc84f1b34744df22724d5decdc42d77ef1826268d231aa0c813

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 786ee9aea282cd9c1ac32bb66d5aa3a7be6932e41e123bfcba268ca3175464bd
MD5 d87a3846c508f0c9232683e6198c5b94
BLAKE2b-256 e60d24c5910a724b67a0b32ce2592dc6c94da656402ca0535ace42fc8d256653

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91f9331a2d9f2e791b8408d3c4a3bbbcbf2b12a35cc5fde3f1b3c90607bd9711
MD5 1d963c7359ee1896ffb93893cf5e434b
BLAKE2b-256 063fa52253426d9d78c16124e3847411010050a0b5207221b63c57125a292f01

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3dd58d2e21d3298918c32bacce9be469fc4887ef566bb87dfc0f31f8a786d7d4
MD5 066a7e1cc2f2a7f03337a2621bc81649
BLAKE2b-256 2436dea954e32997220589b05c20663f27a25f52de772ef3efba533a20918362

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0bf4c4445f7b691b2ba75ed16bb0e2a4942c22dfccf3a79817577bbe405f8258
MD5 61e52eb8c8a2e71b458fde1d22e7ed73
BLAKE2b-256 f37e85308066dcf5d44499085ecfbf47c9c556072f0efb65d8ec6693008d3dc8

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ddc94b59d9034a74208529b22002075b448c5da110fb3eb522ff9329bb39595d
MD5 13175ca4d7fb44b411f6459e22d0fcaf
BLAKE2b-256 cb0b5675c5889743bcdd5190fd40271869ea802184904146d724006335ca1c0c

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce015df16b5d19cda3c7f6cff3bd8dbe4e85d8be13fc4699ed9de58636f939e5
MD5 0f6ab9357e731713f03c433b83a58214
BLAKE2b-256 95eceaf1788802ce602c036a9ad0ee8ca898f015bfe8509723b5ca4bbc09d6e9

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e1c2dadebd7d28c1a5df583e9b1ac62ad2f08d1d0c51c13b16a9e354f72d1d76
MD5 bc065204e1206d75ff36619b94e2e9cb
BLAKE2b-256 4de7b327fbad5fcc985c5525b6383d651149d04d50cbb3efd9f8859976f53850

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: speedywalk-0.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 671.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for speedywalk-0.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 17f73e23d33dc6a06ffe9cb8a929820686fe2deff0660f1a9f7f01a8a42610bf
MD5 d62117e24c2e761398fb9ceccb4ac4cf
BLAKE2b-256 21a40167930792fd147ed85e22469210cb0279004074ff05dca8ca7388a08dfb

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 486ea96a41408934caa5d039a332f0607037b09c5d91af5549ac3af83d918db2
MD5 0f772dc7b99d9390104de86bd4e9f47f
BLAKE2b-256 dc8b821d17dfaa12f0956ae62bb6468b63a8a39eb05f6d3c2f301bd12fabc9b8

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea34daf70f0eee3ccc12d2255a995a8d1a4c3148bac3251a72c6b81b8df0362b
MD5 748c9732cf50f596921bc941455669fa
BLAKE2b-256 4d945c22acd9d6c10d5ef8e0da86ad8f4fd0d34068cb886c39fa22e4e3a570fe

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9308631e879327847b6d144fec0d3690271b972ccbc3809e01b69504613e695e
MD5 784aaecf1d7d6f95a601425f385feae3
BLAKE2b-256 8172f071826bfcdbe20f45658eb76bacfcb787ee78eb7592d66f491df655dd92

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10bb1d9395d90982982dca70240d2502b65193abd05ecbe513439acaa6100f53
MD5 8e29681a2eb425107d4f8d185aee2d74
BLAKE2b-256 38a39b3509eaa483908111524e3c4e4c46bda8675dcb72c3f1e95ce658a5f71d

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd41048c9f6e793bcb96d373dc2815891da0e0c2b7b096dac87bb9bd551a722c
MD5 60bd6f6eb87007df5cb7616c7e17d040
BLAKE2b-256 976d74f11e9f418a5574e244ee6528ceae1d0f2303b92ec0b6dd48f0acd46e85

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e716cae27c42c0247b2ca9ba08ccf9c6fc58712ea9be531fd87c58878d139694
MD5 7329aff4256b4ef16d73f4c85aecb3ee
BLAKE2b-256 fd8abf5e5256c7426d5af08d226e04f08c2533c39fdfc3af49ed8bf5c5224ca3

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92343499039ce8e10feac4a03ef6dd7e2a6dd1e337df1dc62e78ab9200433200
MD5 23dde964efc0b8f7dcacad9b5b9f75a7
BLAKE2b-256 cd6b4087790c4c5883db86506a854e5ff52c6e05dafd2c22901842f06816236d

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a3b75b0a08ed607d50e4862404eff245613df3b8e7affafaab8cbab7a002078
MD5 6c2b9cbc692bbddcd958d6bfb2512cc2
BLAKE2b-256 4e6ee2cabcbea9a67322565fd97e47fd3c247ead4621811c0aad5ddc29365443

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a894197c6463d55e57eb616863f45ca6dbfd252407a4eb6bf625ffc5b64f7a22
MD5 3b49c732a4c2f86c0a88a1c29cc96582
BLAKE2b-256 c74598080a03a3acd83c2795596dc2bb07c3be939858892070474839ae30b981

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ed35cbb85f011608b8b2af5ad201a9de57f628d22a920aa3d4a159cf4908a3e
MD5 84d138c7e81153311b1ee7a447735dbb
BLAKE2b-256 9f8910d9202a71277aa54c0c275f754249dcadecbec7e7175f349bb1a54af61b

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f064d4a21f911e2a2c3724fb0a6af82c9343ea43991f7f8993ed16c7853ac15d
MD5 551c670098994199b31d787fdd8912f4
BLAKE2b-256 1700114d2beeb10c1925517c341e3a3494a8cab81d652fb2ea807f35d1714a58

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0a73a0cd848b05e78385de9225f5d9511817e1df8935968c7df33d816eaf5188
MD5 7d25665f78126c04df4e3a60610bb0d0
BLAKE2b-256 313e465d3a7a627d136959ef07e04eddeff0f8771d272c1407bebcc89a3155ae

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6780dece7532fe2cc8d6c119d48c9231e46dd356005d65c6360495fc5c24ab4d
MD5 812f2f9a7a6af5003ab775e5d3c8481c
BLAKE2b-256 7584962e324d68f8e9f2e15010108d6ee491bbebffd828fe46ab573aa687696b

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65097a66cd8e7dd9d17c29726b8325a048a08b77068b586f80ff4f388dab51ef
MD5 ecd1d3d9b43346f3f4de772424f515cc
BLAKE2b-256 10f09c2c7c3440b98797fe1e6b7cd0170d41f765a35f09ab45fce355426603cc

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15d4aac56a0a6e5fc3305634f882d7739e4350322a8c377b647c72c72d40a72d
MD5 016ac62e109a4b08c6d97bdddcd7cd20
BLAKE2b-256 100bd12a00cd292e53d2d20fda5370d0b2b5150c910100b36c20fa7dcc064a23

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f62e4a40c938b2427d1e6f2eace107d9ed5a52298b103f32451cdc170a7003a0
MD5 d70d7c34224268a185252e8f0c6a8a33
BLAKE2b-256 6c2744e2275389e35242a3411ce0b120e885a415bad8feb5c6a771d4ea8d6a6a

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc6027d2bab6689b651f724dba5257665fb74c9c85094a4283d389fb2687e5d4
MD5 a63d8241c84125f12880512362a03e2f
BLAKE2b-256 1ec7f88c61729bd266429394d0ce49949668c30fe93444486de62d5cb0a19a0b

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 052e38c47753a328024b17de8eaf4b54da8b103040f2ddb556eb6d232416160c
MD5 c8bf0e14a55e3f49221246e2761d1439
BLAKE2b-256 cf4a83582408fbfa9a1868ff5437411bb7dc6432a70c57a65263cc2879237276

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56307053a6b759c71157763975d2feb7970638e8549db81bede83f9efb732f33
MD5 67685378c0b3c1bd7d9e0edc84ee43db
BLAKE2b-256 be248534573e163926ff51e7a48c42d10576a394bfe95e4d72624151a8d9f8fb

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f114c4f6089e2844ab630978f2e61a42763e02f594f4866a3fe9e7ea4b49840a
MD5 bd60f2de294a40d2c4f7d0728ab44a00
BLAKE2b-256 5ca6c66efaaf15bd4b6483c8933620b5275aadbbed8efc2b650f0a4f6baac6ee

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92bd072ddc46e5b8eb0001aa2f664ccbff120f31bca1460ef20cc20052b4a724
MD5 6dfdc68a7db1cc1ed415dbc58e066069
BLAKE2b-256 116b3deeec753df99334e113a905101bcc61e63f01d6c27133ca0eba2fabdec5

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92144eee7639e02e6de45e570f078ea3f056f35147101f483075431a025db546
MD5 c14a0f53e6e4d60d7426f413aff65026
BLAKE2b-256 597db77b5e581ae7c64fc515b18c9d963d9938340026f7cef532c184bbb9ff37

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6b4a2828d1453a1921144901173beee086bbe1904dbe39fbe5689be0088cbc9
MD5 29a734a3560659489ba1c83c8a020f52
BLAKE2b-256 11bf1fee4bc88c20e6a4b0f9b6aed935a42662105182e1a76fe58ad3eecce76a

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1655def9d3d9d2bdb9c9302723766d6c84c217685a53f9f38a6f1822aa391ff6
MD5 fc67ae7ad237047b59d9829e2535e8ae
BLAKE2b-256 90a2e31d83fbf5cf470a735798443ab0ef115c806f72b1a6ebd1f04fd3ebfa61

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 57f37582235bf3b38a8906e12b6a8483acb39de8d12b67209fb690a432de0640
MD5 db907874497b786c855dfe499fad6ee0
BLAKE2b-256 e7925cfd7d1dbc2d1d59eeb719c87c3f948f0029b7a46eb99f0151432f533df8

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e617e321449f5d03aae8bc0eade5e694daafd68fc744be882f866f13e54aa385
MD5 3ed31d3a4f0e357d794d94bc76bc3a38
BLAKE2b-256 90600289c884e361c48260885e2bed9d27417bf6db128779b8bd8c45581decef

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9788e674d06c09b93e1086bf29653805621c12b70d0f48d3accdd609d2b86108
MD5 10f03b5197ad2672ebf368bcacfd3429
BLAKE2b-256 1ba66f1b5b8c1fa0931d9d9aa9ba1e18575e01974fe5fe9df6e0da56140f21f3

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93dec3b59bb5a16ab6c5c0c7fcd9fef210f86f78485b0de153100eac773ad85c
MD5 2196e13d6c0c870ae73081db04522503
BLAKE2b-256 fcec97e2b5906647fe4b35d0a03429809ff39615eec21c34d65bfab247d3d566

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a46fd564bd5873658f0ffc5de03c4b9955509be554cef4fdc369cb43a29c4521
MD5 cd9f72994f0f0ad8819abf85a9e717db
BLAKE2b-256 a7e9687689d633eccfa2e2d1576e48fe4f9fe2befcdcf11c79bc17322d190874

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b018e18b1093652588bcbc3cb573b299bdbce81b8e8753323ea8e62c7f53a310
MD5 6f36e705935067f5533e7a54dea56c30
BLAKE2b-256 1de025ef9ec3f935aadabed381b48e9215e2e3765f5307d2f95ec8ee6df4eb36

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ba2f12aaa27de64bd3ef50cebc020e3728b0ad8405e1d68370eadf56d60bac5
MD5 1a5ad83df4abf5578dec95c24e3dee57
BLAKE2b-256 f970ea9f792c0de106bc55febca833c1b74e426c6b6b57534d608dcbacb0c75d

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d0bc1ca2bab0af38d95130f62a24f20535eedb4ce039289750a7f9f564f0372
MD5 b43bf472d02049ec568dd69caed6caa5
BLAKE2b-256 80bd2806779d4fa7b1c08993b5bd33fbb6cef8e38fd1587d7f0e98629b9a9691

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f359dffd30abda9e62be66969ccb090f7f3817ff4f429151ad77e4b1e2546331
MD5 5f26ebe038056006110b2dc0eb91c305
BLAKE2b-256 e7517170afefa3020d8da17a44943b91ae845eaf4266de0ef0a9ccb625359517

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 284c8558ac8b512895c99a193055c3385b9dde6cfb7f9136eaa21f10868f2cda
MD5 20c3654da271cc157fb9c55fa938d15c
BLAKE2b-256 e58a9eaff291f918853228a5c06a880cc348d72aab41f2684dd9ebce4c189e3c

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4a63ea23325bd4a89196a76936be9093619148a80f7516908006a9192e5de11
MD5 4a8a46ecb9442b356567b623762b0a68
BLAKE2b-256 ee2d77ea31bf7965557561728d8c4338ec85049a34328787d806b1309fef9ad6

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cca86baf45cb84933d3408cdaef07b037e7606506802159a0fee43551314e2db
MD5 e7be866e999736a4fb37fd668d8160fc
BLAKE2b-256 4d48d0052894c5c5f307744cca8f902288ac323a54c9edaeeedb4258eabbb795

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b2b754040390b82e8c494a3e42db5582decc4b7b01876cfff6923bb36e2201e
MD5 801cd3eb00b5ae597e040aa7d84e6e46
BLAKE2b-256 fa0207f5496fb98eff1ae8328f835d30bdbf13c59951e984c60f97c3a92d1a20

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fd42dd63d3bed9d959a9a2bea3541e80c1fd8bc8312b1d75b191fc0af3f37d68
MD5 cf54f0f72d3864f402bf381ad78c6190
BLAKE2b-256 a524a6cdbfad9ee55b0735244aa6a13feafc5c222a411a65e3cc60916c32c0a6

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b1c677dc2f67df0b844f13675b3ddadf1c7dcce705b500bf3db0354d69957b3
MD5 9383b717c83dde37638150f68e6cd7a9
BLAKE2b-256 910fc4d8b52a42513f6947e280dbbfe1ca41249c8b4b226f3b6ea10b0b324d5e

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5405e95dffe519edf71b4f4c0ddd09d17d98a915bfea32c91e83cdcb0a110535
MD5 fa7a2e9c944e2ef93e4fb99c82b6671a
BLAKE2b-256 cddc1afea89f6ed3599905bccbad9bc63d0ed3ebfa5c41c84df6a18ef52800be

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cbb31b580e60aa749287a4d29dccb7927c7bc7070089bc7ad772db4b238f63b8
MD5 b81651c42ac5f5ebcf5997f8c95b42ee
BLAKE2b-256 7d49f9bd1e4e5e99622ab3bd3da665796009f4121c7a8ac46fed817bc8d901c0

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2c659944829717e59187714f51d06b78234103976c82bebf03fd0cfeaff5220
MD5 c75b233cd72e7e9f52fc1945da35c7cc
BLAKE2b-256 57308507b021e92d0698ce1840a3e5680babc5a8cba9d16280148fe6ac6427ed

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c39853b13d3b8aff09cddadb90e15b2a2cf341927d53a00157fd0152401e584a
MD5 c1b5b9a54a83191e075569874032ac7e
BLAKE2b-256 5f01f8868cbcdb748212e75e8f36ac122a1b0ddf1965dad09507c10d2a69d2ec

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2bfe1465ff2cf63d3aaa3927bdb782d5be1fae19f479ad0596bc1e239cbfdb7b
MD5 33c401a33ddd2aee9c25c91fe9b0a013
BLAKE2b-256 4e5f744c9445f3c8f69eed14c9b64c511143e58292cb9af77fcf9a2fd8bc6855

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de1dbd00bdfe452ce1ac945e36867adf37eea748cae7efa29b85ed7dde012023
MD5 26c84a5bb16a3edebcffa1f0397f36e1
BLAKE2b-256 0ec967233db2a36ad7d0d04916650371f1323084c4aa039b7bb40e5b25c585eb

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 43a384fbc640640a33b4d1ebccbb500b332d08eee9c1379caeb983a82bbee14f
MD5 b6b8734a82bbddc407e2bfdaa8a2a76b
BLAKE2b-256 61d1d7fba1716db3f388e3cac5273e54994e22fcb5488424700769c52394eda6

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 008c7a1dd445fea42823fe14edd6bb0efc2802896f0680c271e3599ac8bc3af6
MD5 36537db4e0c113617494ddda54c23ab7
BLAKE2b-256 a28de840c51e8968dddb72183edcd23db00b419db2223892a45d4417dd817665

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48edad022fa0ad65f281ed5296eb612f6130a356a7421c1815addbdc0eeefa54
MD5 e5d4c9c0b81396bca8a605dac2a51be4
BLAKE2b-256 bb970dc78d951e4ef7b67853a3e1780ba3ad80608b8be4e18754011067b26445

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6344ea7d7882f735af19c8a5ef7ece93fc687af24a13ef4a0639e2f46b9a166c
MD5 4ff20224aa7403fe0b8f409534865b1a
BLAKE2b-256 0390f107a35df79f2eb8ac6e9b0b0ea10595e843bfdfa4b264d4daf1ab1583ce

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 097b43e8ef7d65db7fbd93fee1c87396df88b1124557f6dee2e5896e0c8ac9a1
MD5 86e6e878ff383ded473165cb1215816c
BLAKE2b-256 cf86c378f217702611ce7810fc0eb5505789a955713897fcfe630b47989f1b05

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2f8bdededde08d266f91390534997cfa0d649c09ed2a7917f472dfde8b85e14a
MD5 d5f785a54e95cfb0d1988e6bc4612760
BLAKE2b-256 c7fd25f08756b2d21bb98c73ee9b33c581516d1b92cfb3ae557c9425a2f46b54

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c911d278949d8f98f4c444d5f11e0c4b80da0f67f5e96a2ad1a80eaba802eeac
MD5 0328056c6a6fa0f631d2f92b5b3b6162
BLAKE2b-256 8bf3dda7f99d56073d3920af96285a91d3788515590c8cc0ba2d9cdcd8f1e0e4

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd81407c4e8272efc691b5040aec3ea0db19f0003c913e5727c10d7dc6abf0e0
MD5 05ccea22e2190678aff58b03c329d530
BLAKE2b-256 b9a6e11765f2fc4e3db71a42c9b8dd977f266ab5de565fa7f828e19335d6fee5

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4ff3e3dc8d6e38d55bfb97122a6cc04b6f68e988105f268ec36383d9bfc0a6a2
MD5 faf8f7ab793ffdfbd5b4ff2bb8e36946
BLAKE2b-256 e4b185134e73c1a0d278155fc9ac634d6c74939790e9b1b48e00b1af00840232

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d813e97714f18f628906c0974d112cfdfd400976607a8d11b6d4965676ea8e32
MD5 d9826d3f71c5d3e87b55f5e9d9a2ae6d
BLAKE2b-256 bca5f74e5908ebe28fffcf4c1b3528a9c582ead08e7a83cc3267984bbe55016c

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51ef740a31c7fe4a34c4ae213d490e157f7d27f7310b96b9ef7ac978f70220a4
MD5 ec49c167d340b4d9094ab616b7d87248
BLAKE2b-256 08b5f2063e3acf7d0715f3674f08514cb164850114bfd988a736815dd9b3fe55

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e733a593bd734ae2161cf50c8ae90e28a006bd6ca83c4db1db21a9c007e811e4
MD5 8f68899062134759d0fb6d7199645227
BLAKE2b-256 c4d24d911524ae17afcfe22b78e4693e50d2617c23c27eeee99313af812d1cf6

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 926c32811c79e603296811dad7ef92a1989b25488f08ad73f110b834708c5fb5
MD5 dec3e9b41a779277182000948eb4f9cb
BLAKE2b-256 e3df8a5ddcadf65060c6b0776e45fcbf02201ec4c67b81efa649663eafd546de

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5bc0afdb1f576638585e571a40998651ac70fbc09744a27b5675a2c05270ab8e
MD5 bf5cf485462345289b95cdffcf7fb48f
BLAKE2b-256 ae2a80b5349cb034cfe3a3288fb53f9b79655184d86594b00dacf1af53eae959

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44304bf806cbf79dc6d2ac46541af733716544320dec99ec4453b0cca483412b
MD5 4afc9fb67d550b6df8b51ce44aa800d2
BLAKE2b-256 414e19cc57a0fa31d0ff8d07dbacaf7a559f7895201e8d8125687eefff8fa797

See more details on using hashes here.

File details

Details for the file speedywalk-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for speedywalk-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dccd7802a42f4f3c092a9dda22cced32d468470227853bc90dbc8f4d8ac74afd
MD5 7cf431d5915a69203fb27dee49f724d5
BLAKE2b-256 b9d22f05f4bc35481c01af265ed9b746cd5aac057143cd25494376183cdd45de

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