Skip to main content

Fast parallel directory walking for Python, powered by Rust

Project description

speedywalk

Fast parallel directory walking for Python, powered by Rust.

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

Usage

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

speedywalk-0.1.1-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.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (998.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

speedywalk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

speedywalk-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (998.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

speedywalk-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

speedywalk-0.1.1-cp314-cp314-win_amd64.whl (753.8 kB view details)

Uploaded CPython 3.14Windows x86-64

speedywalk-0.1.1-cp314-cp314-win32.whl (670.8 kB view details)

Uploaded CPython 3.14Windows x86

speedywalk-0.1.1-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.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

speedywalk-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (856.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

speedywalk-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

speedywalk-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (924.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (950.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

speedywalk-0.1.1-cp313-cp313-win_amd64.whl (753.4 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

speedywalk-0.1.1-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.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (996.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

speedywalk-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (925.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (950.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

speedywalk-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (856.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

speedywalk-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (929.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

speedywalk-0.1.1-cp312-cp312-win_amd64.whl (753.9 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

speedywalk-0.1.1-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.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

speedywalk-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (925.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (950.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

speedywalk-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (856.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

speedywalk-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (929.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

speedywalk-0.1.1-cp311-cp311-win_amd64.whl (753.9 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

speedywalk-0.1.1-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.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (996.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

speedywalk-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (950.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

speedywalk-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (858.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

speedywalk-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (932.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

speedywalk-0.1.1-cp310-cp310-win_amd64.whl (753.8 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

speedywalk-0.1.1-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.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (996.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

speedywalk-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (950.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for speedywalk-0.1.1.tar.gz
Algorithm Hash digest
SHA256 0880f6f1c092bf70a3dc28c16b8cf3645f358ed476752f3e49800f4ca50d540e
MD5 59dbdcba0f9b61957c008c790168fe33
BLAKE2b-256 93c20686c7fc7a42f1d2d2f8e96919e7265060ff8e8d2e3ce76172225d008d1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9a53b73899b017214b53a7baaa57dda13bc620eebaa2aa4c6864d8c302773fb
MD5 70233713c607b18afa27485fffb8fb7e
BLAKE2b-256 0df2bf7831d8d2d34166c80f9b21dfa46375c86980659f8a4e9ae1e884739ea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb03aba7145cc7cf8a46821154d0dacc738a809f5e564a327656bb5103eb8ae1
MD5 f3c4892b4f46cc879631ba27db5b86e5
BLAKE2b-256 4b57b53b9e28904abeda09c3cd5edf3ca557708ace30677acd608f676612a694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e966408142e084e45584a32f8bd359782888acc3ffb4002afb3973ff55e2fda
MD5 2670dbe9c2f6ea3e599b9dd7b46c2cc1
BLAKE2b-256 89d3f44b338328aaf7f67a08f1e1951e6126be87796d3ff4210c2b60db3c4110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f38ca8b8a307dd12d802198c476456b892df052a8a248df70b5779830418e43c
MD5 495c30703fd72d0b0ca6419a9b6372e4
BLAKE2b-256 65cadf7fc26bbea906946ec0c6eb356a0f2c2e8238f1e75404a2e36c64d8122f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cad8ed9c6952534a83eefad1dd3c704f968b2b43420dd6bdc9f1861052a84ad0
MD5 46c553ea6dcecb365cd988f20b19f940
BLAKE2b-256 364a08827cbbaaec31c25addcb9d68a4edb80353d08a8bb1a44b17b2c9ec7726

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d66177a830d061cd2004db89f090a42a223554f9e177fe7367a50927100a1e15
MD5 9a33251813a29ccc18a6b8eff92a4824
BLAKE2b-256 071711a2df7c1a53cc233513a5656c0479c7dc908b5f258652e98d6aa674b2b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea3c18221782bbace33ac8fb9110c5120d76e1b4f6a4c27a8f63bce21a49f85e
MD5 8d25f5ad49db6883f299d3a0c53cb216
BLAKE2b-256 e884e47895914865c4ee9b410c59502729a486aa76e57cf8575f2e54cd729fec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f72998ffdd98cf606fed76a9ae01e2935ca35098a5cfc68a59d335fc56460a21
MD5 b5cc6f77992ff6a4236374cc2773d7cf
BLAKE2b-256 5ec6a50c3c6c8f712dbf5de4de886476df4e1099dae4d2a5d7d8fae6f3c07e83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cfd9686012762f55d6913a0e97e8eec0187e0245c149fdacf6f97f7b1a58e6f9
MD5 d003191cfcf50a5c5a1bff62ced69f4d
BLAKE2b-256 b52b17e4d50961bfedc3207631cdaf18ce925e720c7ff76092d9f2a7343faf03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3a248c0dd8fcbf8d1ffcae4fe02433694570352db5e8be5db2c1724197f9204
MD5 3bcfb36f3a09d124d1d6b04ae544c1ae
BLAKE2b-256 648adee09b038168bff9f7e5e216e4daf52244e3c38e11c67d59af6107562e84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 148791a6c2d71f9fae904e4fd7d28b2facca310822c6e25d20f8374c977c79ca
MD5 a36a72cd76aa96ff124fab0af9e9bcd5
BLAKE2b-256 28b27c3672e5bc4201b8f25ddb54e9a21789abf07377f83c62c6a4a96429d7ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18cb1a46a5a4f50268ce3009eef638edbba39244d7d8a07f29dafe75bea71d54
MD5 5853ec585fe482b6e2d968e902c733fe
BLAKE2b-256 41c0ee49374dd7006bd6ee3bae5b7855da34fb79f75bf55e34159a7847cb65fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 92a2328da5631136d3a95a841b34cfe1d88d60d2543aa8f2ca0e80f409e292eb
MD5 f3ec5d943802b69c842c0056aeb19784
BLAKE2b-256 9d738928f9880e570ff451a1670c051e09c330fa5db5b48fe88d439684f6968d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abaf482ca5645d75ebb7998916f49bf2974dd0b14a5cd5a8eae454c1408fed9b
MD5 f14daec9b73a598c69c4528d6fd9bfc6
BLAKE2b-256 aa869793327c8435bcb64604c59a35fb7b908c758a940a776387a068a05fa9f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7322c616a92dc42d2bda1d69420f980911cf450b6cd75d97e0283c1d5ed2b70a
MD5 5928c338725db741a5fb872664f36dbb
BLAKE2b-256 115caca609e61aac5bee288891a775bef676cdccc742baa8f5e732ac1b0cd3de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2abca6ebd9c1da1419d701c9bd1a46311e7d3bfd11ff3edbccb9fa8cec9c89b2
MD5 38ad09ae9de8dcab29f713ea5aa49e63
BLAKE2b-256 53c2489b279a8e43fa949d644a8b8a8b2b3051a8e2e661e8c749591671704f5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b36fecdbdf2f85f21fdf6754d43fc990fa184c289b58d5550241fc5bf7dabf3b
MD5 2298cabb6e8a5ad13faeda588581edce
BLAKE2b-256 897ac31a50474fa512c1ac94f0d3858626ff12a6abfbbd213115f47567ec1e08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9e5198ecae1cbf388484932f86d7b0241aa603f632191cf5cbed7b997513c08
MD5 54400a83d07e1056f6c0708c2626c0f4
BLAKE2b-256 9f6f2f1fa02a92f555f09c91b1e6c730084c173d44f559646442aaf37a24e94c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ccac15194ce713f58d675c296996dfce34e151642b6c2fc606c7225a7e6f3893
MD5 9f1e18ae05b6b3e03da63fc8c2183443
BLAKE2b-256 4569500789c1dc270270563dc47dc75c6940832eef22f8abaff3b35636adce3d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for speedywalk-0.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aa5be806ef511304c70b7ff1fb9fd81bb5fee9a7ccb1b757dd548847fcd54916
MD5 1ff37c7d59880c757e1f6d28c3cd9f5b
BLAKE2b-256 7a11d9184db390959c6f78837d0808a1fc6a80086b466f9e6744d473e62586e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e47eb1a59fd7b8d7461201de8305144fa3f8a18e5793ef5bff0359ec240c45e
MD5 60086502635a88d54aa8dc0170bcc96b
BLAKE2b-256 ea0257a84f6d94b2cc8aecb9d6278bfa15f524eb4e1148797e95494d90bab878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4468a5152f3a6cbc928e7a53d7a1f33ea436e22288b4186f8f576c10b996464f
MD5 ab02e216fb94687096f261876052e571
BLAKE2b-256 409e1904cfed9623150c80401bd47c7f31f117af89f6136205cf3a73c52d16fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 691f4934d13ec358bcf1a19bc27a03378cda29db0d56d18583274d2ad286a2f9
MD5 97ff5c3b8b5a11a22958f66e84d672fb
BLAKE2b-256 24b41b68d73eb89bc94eca6c2e880973821f3df00b8c78a6d62a705944fe96a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb840f3b9940966428adc6dd9b6fc7f14f559ad39f296f66ba860cc5edecaa3c
MD5 b973ef9dbf826920f29de636085aa805
BLAKE2b-256 1442a6d927eb90dc36d6c79804951ea9bf98b5a05610b4fa47e238169c8ade5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e79b93a7e0d7a119c7c18251c894fcbbad996ea6c699e2e271aab5aa49e66024
MD5 c581b951c3a52f567772c99950ef5f74
BLAKE2b-256 a21e3c6202ae220709d3de83a3b83e4375a6eb857e9b96ac218e6759bb332ddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d3c094781137715cae912111edfaf3815f7ad688178c5c7c20895f30fddc741
MD5 4dee346d188bef1c102b370f6c7df22c
BLAKE2b-256 ae407251fbd675e7dd48f56802096533c60928b4e4b3ab0c6f8294ad5d11f24f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20d46907b01d61984e89e6cdafc2276e3bd381927798bbfbb7af40c3c3df00e3
MD5 8f02e4a79ea5587ea66230631b0dcfe1
BLAKE2b-256 d0fc131df9159165fd37838783ba9057d76ee0c856fe04930744617d893cae7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2df6e9a42cb33d60f8387ce9175a5c5d965a0943a324d11b9676f309db3b4b52
MD5 7f9d463f3f3c8816af486019850659f5
BLAKE2b-256 5ff7b3d06f4de35a50b93dfe9e9742778c340dad8f7ed546aee3077783358a55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bddf33a459825c4a34b3cf2d5aca2974e0fc4fa0b967b6de722da3313f2a0baa
MD5 84d5fed3b0c12bd35f2255be79898486
BLAKE2b-256 c7b72d12a91b22fcbc72ec0ed7aaa6f1dd5b5e03f4aa175d2d1f80effe690b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3aada3c3acdef1fe22c551a418d52dc74e3af9bc42fa59f870087f2b76e9957
MD5 affec3966237a962bf309eefeeb3f40f
BLAKE2b-256 a5a1aded4cce23e0fb975d961cb2185fa91872e5b2fcfd7fbfd1c648723297cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a553e50e5047ecca9ebd0a824a4de7df58de936d98117ed2be0bf019989f6d7
MD5 f408eb56e3ca1cc488010cd21412e711
BLAKE2b-256 d18e3659fb1caeb0703da8820b47d60bcb0ad303fdda56f1cf86a36f33dbc90f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b88b53e429a52da7ed9a485cd9ab57d0c84bddc73cebf35f2e52d1ddf070ec4b
MD5 59977fc04775e7e982ff4b404bddab31
BLAKE2b-256 612213b9fba915d0f9b6fef8e352d474ef2dea116f3fab95f50dd52950a869c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17d4b8d2e9c061c8b3fa48f7b7362511f6ea6b4372fcb12e802dcc9151404801
MD5 0148319674286eb946f6d710f3cb4154
BLAKE2b-256 7ecd57f4030ad91a7eed2e8bb9ef8c615d92009ccd726f0a243e9606dfb78582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fbb6debd7bd1ee341723c4357767a41007bc9f5e16bba7a554a2a4facba9186c
MD5 58154475cf1c12d63b9f28cccb51ca0d
BLAKE2b-256 3045d4994f9ed4ec9a0a9a806d9be43c097259b17c6c3921717e4d7bfabd5dac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 36c0ca1bb045c39c6b855ebf107c3369611e6f77a28d9dcc53836d56d21cdc32
MD5 4fc15dfd6df771a4b08d82ff09bd9d03
BLAKE2b-256 656863056d228cca7ed766aa6875a3cd1eca6833150885f729a4e6c5356c31c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19b401ac88f074161e1ce2bc4b863b54002adf35e2417976bf65ae0022ad16af
MD5 2c8d2703a04277048a661d7460974766
BLAKE2b-256 ccdb279debe178024ec35dc97f426c66431e7f514fcb103915099c9d63065a9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34ce19c2ba34bf769880f4cda41ba29e45a34b04b1cf2f36ce6185272caa3234
MD5 2dd2db97a8e1fce1b660e94593766510
BLAKE2b-256 cb8bb51614203b7bfb0a4881ba85fe2d8ea68bcca5a5b08d7c4ad2352a5c07e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9c5e057d4bd4e18ecef2aceef94a14ad580f0873303785b1e258b1587bdcb1f
MD5 38a96fa6205e06f21136b7c9ab5bf018
BLAKE2b-256 a8cab42a08def721bb90b5db8068a43b57d7b8104e2b9b46139d71b8b4c34116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74f758757a41d2990912dc020f42297e87d2565514e60de1ba8aaf5c3ed223f9
MD5 02c574341ea6576d0d3d382b97ec38c4
BLAKE2b-256 cb539d207ec15cfcadc8d0c1bdfcbbb390730cbe3914b43f4d24e71e336e4903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3fe5d0115a88fe7e87437345bbd4b37890e44b36895293ceb563166f85aed00e
MD5 83ac9d5c60e5a47ff0d0ffbbae29f4e1
BLAKE2b-256 1ba574f691b1873844e517fa227dd7933f60ed5baceff8e39034df1130e141e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 16a81e5e76bbf67395882b80ca3eb349975f8963faa579dfe0f2397949ad2910
MD5 800a5000a1bdb0cf5305ba54ceecd1ad
BLAKE2b-256 e2836b994bf5b7469b96dbcb2608eb0c0944fbe41a55c04d8e05d0dd0aa2c0dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ccf690390b8561afe915e2c72576749b01503c942dcf7e40f3b7ad38cbfe2db
MD5 799326f659769a46c5098f0416a59c79
BLAKE2b-256 1b96a4316dd1893c9fda7638e00ae588ee253dd055556bf404dce9d5cc7c7acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3842daa607ed74efc5a192db14a66db32298c946b56ec8a5e4d367c214fac75b
MD5 1672aa9df302b9cb734accfda9c9c6bc
BLAKE2b-256 f67cbadf8912f36d0b7dfa9b0b7faa58d4a362fefa81acc927f49adb0c2c0192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 261ff8bbb77f2b45fc3f662b1ffeecaee1be4c4cba9a3c6716b3dffbaba09414
MD5 8c151985fd7187bfa9a350d42676c164
BLAKE2b-256 7f44040b3f6a7c85bb6821d98f2223ded7123e21d380e3e1589da9bc11c74c80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 21587b3789429ba27e6da30ec62a6998feb2a523df651d03bfde68599aa4404e
MD5 948174205caa5d43fba1cc92c8322420
BLAKE2b-256 db650310b9d2ca998494957b0013d57b608d491fc6c8530c4ff56dc37af31450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 776493381ade24d7d2d081b08c75fea00ccaa3f98d41af9abebc46431265513c
MD5 6a107a8a7476125fb4c7f1b425b7263d
BLAKE2b-256 03a3f4494b94d852a7e7a6d402889e91c38a5316130b2cae944aaff5a43cac54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 01321bf1f08ad7e35a7e313e09814ad1cf218eb514ebfdd1d94d9827bd59fb4a
MD5 bd019d0a31f07a0ab6915a5070441087
BLAKE2b-256 f3c728a3dbe4a91fedc762cb43f553cebe119a901cd3cfb0c8d256172da1d383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5744f2f1e4a1478f3138d790333094f1847f9015a28fd5fda2364d90daa71ba7
MD5 d3b0afe4bde4e10f27553ca94e88cee4
BLAKE2b-256 f02cf4b161cb3a939b837291c066e8199937a926ff513bd54508a283eded19ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 610927f229451e85845d6d1bae5b7cac8a3b5a89a8d144981dee6123e46506dc
MD5 1800d011409f94e7236d9dfbcd731091
BLAKE2b-256 a95154e6c1d7b41e33353007e38aad6e2c8d90b7ba9edcba508f7a91263ca5e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a120cffec42730fb68e836c5e4c714b14fd74bd377efd0cc9e301cb91045548
MD5 dcc7b080e5380bfc7fea0dc25c643e8c
BLAKE2b-256 396262ef469be2ef412cfc80e1808ca1cef0e66b03c4c5a1036833c39bd0ae3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 647af62ed0effcde153563fc5e344af6a3a1aa553ce630b9d8698cf6f3d7d2af
MD5 2042a8da5c41c730241ddeed23f3b595
BLAKE2b-256 8972d0273f04c93a187ede052306a3c8006525c4eb64ff0ad13b730f87e5c7df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 795e5279e3f58e54cb19fe65deada6b4e22a9da8d95ddc31520b6dff102fad92
MD5 f33534681e2db993f2ed8b272ef2c5f4
BLAKE2b-256 0ed861b275a55839b443ca53cbc344a81f8523ef2593237ddc894784d43696a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee146b00d4f5c9faea1432c9dc6bc1350a31b4a20fedcdc08e680aba18732412
MD5 acfbdc15e31c75d73a2799223ff3f6d8
BLAKE2b-256 a2f6c8d0326deeea34fddfb53343d7c70c2a9cef1809069e2c0b33adef9ff238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c896ff9839e8ce6af181ff010f95e9d6ee8febe04327c3fedea51e114c427d91
MD5 ecf3e214d3fb982a5dc6d0883849660e
BLAKE2b-256 b41ed0cac4dd47c3c5b612c95d1d3f06a9336927a1a542b34394813902f7f541

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2449b14a4603b0f5390a3b10ce26d8f802eab54c061758255e7edbda3f4be5a1
MD5 3d3c5636127f11dd51803974a3bd3e60
BLAKE2b-256 cde293d977bb474867e0661276a45e60ca367715243205b4daf04bcee71c900a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7e7cd0b7f1107e8626e7e126ee552ae44eccd35cfec00d3cc99edfc2c63413c
MD5 b60168e47ef9a4be579d8029f9d896ac
BLAKE2b-256 800eb54cadc3ca878978e6b220c20eb94e0802845c9a79db7a72bdb010c63784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff85314de2dbf44c3b9abf751df561307202ece50870039be3dd2b6b7a69d492
MD5 0ee7e29ba7261d4fdc96813976007bd1
BLAKE2b-256 4bdc3348dd5c2a3f8352c8e8d8a087fa7fc70db7435cfb7ef5269c2c2b919ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ff03c0cac0396fce87222f13b11a70aafd9a40674ad1458fb116439fa13c6033
MD5 d132c60d2539bcaaaeaced799751ce39
BLAKE2b-256 8a071c7a7b4a13cb7f73305f44cee76fb6568fe4ceb62394503b28aa1646eaa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 250c8a6bc415aaa233642c456ed4dfb9b6905a70762141d58cdb1a0d273693c1
MD5 a321267f2ab14ca2ef67b444f0a0fd00
BLAKE2b-256 fcda5417eef8a904cfb7dbfddf6e54104d8d3ebb67bf7be04c66a5f113fecfcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a09052338065be6d4c15991446a26a1e1607b186c6a2c3e311cf3a88a275617
MD5 ede53cbcf728f9951587c33689b75d51
BLAKE2b-256 c8fc12c7d2b68037e08e1fb3461b5701a04bcb1aead46c53b0cb8316243e2c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc28f8aecfa7f50411b1ceafbee9af60474674f12fbb40865e7b2e1f66327bd8
MD5 39ad586657fe7c2066adbef394f2f585
BLAKE2b-256 45442416a51f51bdca7f609d82cc61a99278d1e66d4f16e9589cbeaa5aacea35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 092022641c17ac9421aca48894e1297cc77c91eee566c11470ed11dddc5758a6
MD5 b724b8806aada72bc7bba3ecbe456b06
BLAKE2b-256 3bc9fa96dd4487a81b69acf21cd2f7483ffbb3d6f082ddfcfabab463163c2085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a59652840142f2f079195ed0056c690a495e2d002e0fae6627a3cc01231b793f
MD5 53d617a70703d16fcc08ac688c049391
BLAKE2b-256 50e22ee535dcae2d6e9443e1e5caefab443429a3b13d9be26edfa176fefad8cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d7f1e9c8f6e3f5d103f11dda1f62901c79de77101065d622a0677a4a581a5b4
MD5 ab5c274f859e1b5c2174bc4874b934e7
BLAKE2b-256 fba79ff48bb1f6c86e8fcd8e923f37bd9d4202766a12de141e231eeb1dc7b55f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a275d1e39d78192767fa714d0b59b385467b9518967eaa7cb3fb038f8d719259
MD5 0bfadff97db12d289a7d80548d876b6e
BLAKE2b-256 d90ef095e7ad44c918df8c1acdcc26c6adc9f12cae527450c414b671a72ae26e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae74c117ad773e4f3159d60c91b797be1b0c6d6cc733918eec01d4814bebd7dd
MD5 493f2ad6c3dfa10020a98ff17d2718fe
BLAKE2b-256 f4c71c495c169e1fe65cdc34aaf98eada228142330a02cdb36233094aba5b87e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2151e54b878d1f5da080c40deeea669e60fdfa17782a36910e49e077d1028eb
MD5 1a5bbca54f03262eae637737ff62deb8
BLAKE2b-256 0e54e5f99e14930e76a6b8ae64520921750d19632d16c251afbd2b58295c8ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3692d9ff3218e2516d7961a73b6cb9a1b1eb624865a8834ce3f155d52af19d90
MD5 601dfb03a07376c7e829bc33dec95109
BLAKE2b-256 9f8a452c870c22b69568ed3230a369ed1c71feb2a6a85c6ec4f37abecd8ea437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9066bd7fb532a2ab14c67f3fb9dea765b18a2118c112066a0c6c3b220cce086
MD5 e2e78b30ca17940b6a7e40565d512c5a
BLAKE2b-256 bbb6fb9c77fa6a2ba995ef05728b3c9711778186b35cbff1a377cfbaf75adf8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69eb51606b536ad7b6d42bfcf4b221bfe3fda4290450e4c13a1ef5e191759a5f
MD5 a3545a1468a28acfc6e39ab3780bcbb9
BLAKE2b-256 90e604cf0868afaae22796de86e8b431523a26621870783a96cc114b504dea4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 024ca0796c9ee048c27e7f6cc08aa03edd235145bb3ee6aa4aad0e615f92ebe5
MD5 a06a477b697a22989ad4c5330bdba544
BLAKE2b-256 e9980b5fe02234a5c07aca2c39705431edd41692550e369fa9ee19f048a849d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b94c8788af36db7831e886a5a164813c9bcd8d0e034879cea695d21e6bb6f52b
MD5 65aea1f1e3dda5e74250df152b3e15db
BLAKE2b-256 dd7ed9934c9872400a8df28803dc7487c8a23ca1415ca3aed6c040d647144668

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90b97c5bc517f4200a4070c10cb3cdef036436cbf0d9366175b9eb3c5682935a
MD5 bf297c0dbd3f0d1d74ed3cd55e2f0637
BLAKE2b-256 120f317325d40fde6e115a0f79dae18a1e0c5ae1371eee9638d36d37006e5161

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c8c739a2b3ed0337a505821b69a7675f8d0cfcf21d65c1d2dd79aa461c213db
MD5 4f70c8a51c24e43d8c9dbfebd5cf2743
BLAKE2b-256 9299ea34ab4a907265c3ae92c2790a9db4895219209c305fe288aa2617e31c26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a044ab9be9387e0920071d63ed96520d865156d6ed15ee59ccc40710a383021d
MD5 f5626e3ee30fc7d9c5ee82dc4ef661fc
BLAKE2b-256 f538813f777a70e59ebb2b3e9fd2e1bb090bafa251affbd0ba27fb9fae803f79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95ddbeff3c340b73af74fa0d4af356614cfb86373f39ad9e1f92cecca93581d1
MD5 5f0e5017feb9203a20618c736f62f2c3
BLAKE2b-256 35c2932331b63afb89fc8e581093f12a8dc721a44b9a719f603ca8b7ea76b0fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a35bc52fd61b6d87e640ac585aecbae96329d42f58019e4ce827530647aadd3a
MD5 4af708891805dd91d7a16f8f186170af
BLAKE2b-256 755fd3194202635b56fdbad24550445cadd6da5dda156dd72c874d5d0ebc20e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3248038bc641dc2e9143f842d3ce139d5bc6aa72675a9596644fbc6809e385fa
MD5 fff576fd7d5bd1484646f97700ebec96
BLAKE2b-256 1e9f04a4162e935ae162ad7ea46d70e49bb3ab360c3a1c18b9bd86defc671bdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7f419fe942321a271c347a8b4210cc94541db9be7a2da2f44f4644fc8ea360b
MD5 12d0dc734d86bde8734b57d79f794d99
BLAKE2b-256 84bcd0d539156063ec10f288695896766d4d179dde29884b462ab8507d54070a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 150f8a7a2ea52bacc7631d2a3c369b3e8898c087d12679cb86f0b3daaea40908
MD5 90f8207167ef3ceff3d954eef5a83b74
BLAKE2b-256 62e5a62f4f302425587e6da05d6cbecef01b47f3eee11413868f7b4c66275d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ecdda512d592c34d3f17a1a3f1ef32f9ed278483f3ae4cfe8e0f2edf82b011c
MD5 f209fff0e4cfc4e06573e2b50e92760c
BLAKE2b-256 5db9e6101c2178ad7835c587b61f1859a771d5ff754f78a81c586d84039222ae

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