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.1.6.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.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

speedywalk-0.1.6-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.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (999.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

speedywalk-0.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (953.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

speedywalk-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (999.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (953.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

speedywalk-0.1.6-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.6-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.6-cp314-cp314-macosx_11_0_arm64.whl (857.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

speedywalk-0.1.6-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.6-cp313-cp313t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

speedywalk-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (998.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

speedywalk-0.1.6-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.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (925.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

speedywalk-0.1.6-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.6-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

speedywalk-0.1.6-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.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

speedywalk-0.1.6-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.6-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.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

speedywalk-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (857.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

speedywalk-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl (930.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

speedywalk-0.1.6-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.6-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

speedywalk-0.1.6-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.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (998.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

speedywalk-0.1.6-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.6-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.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

speedywalk-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (857.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

speedywalk-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (930.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

speedywalk-0.1.6-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.6-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

speedywalk-0.1.6-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.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

speedywalk-0.1.6-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.6-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.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

speedywalk-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (859.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

speedywalk-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (933.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

speedywalk-0.1.6-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.6-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

speedywalk-0.1.6-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.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (998.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

speedywalk-0.1.6-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.6-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.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.6-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.1.6.tar.gz.

File metadata

  • Download URL: speedywalk-0.1.6.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.1.6.tar.gz
Algorithm Hash digest
SHA256 afe58ef16c125181042d194bd0e94f8864f1e5f65320bd291cc186e8e277f0a5
MD5 4828c9d7f28b85d92ba07743063f8e4f
BLAKE2b-256 32d57b58f3430206474b51163e8b53078ed9a5c2c4330ac36dacc6759b34a34f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8841bd72e456786c13cac3c79a8ad13e518016478e2ab677729a501242390f3
MD5 7966023750276049a28a692d2f7a93b1
BLAKE2b-256 16aab46daa359a2dff1645a732d35bf8e24e319507ec63efc5b971018e2cd32f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e26c2159ff898ab0b77aaa54663fb6eeba67b1d3bf8b941ade45d7da4e6496f
MD5 6d9d0db0351f4d3b9227cb44abf7fd0c
BLAKE2b-256 adba6277ea5a689ca0211ff466d8d7874f5c23ac54462f232144e5aa23e66534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e5f2bd5dd376d87721eb83b393d3800f84fcd383708bf146a3f676ec46c8f47
MD5 0bd7a3270963b8b0332f7763a0792b3a
BLAKE2b-256 03a9d00d435f624500e984cf15d22f9bb90577d6b12f43753be68e6e499b40a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cfa6db862f62d96aa099d02c1c2c812787807d73240a17453811359e81fe312e
MD5 b0be8d698121ff598d33a96b944e948a
BLAKE2b-256 af296ac320a218537fc101a5f599c98efebefed89c29537217268adf9fcc1c95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e12101d989b9c5279af4000b3d1ca44b598af0c5062fe801391bf3db7df2c135
MD5 c4a928f7c3f64c5bbbdae5eee5edff75
BLAKE2b-256 e18ef54414354ee1dcdbbe1916fb37739a81f0906795ddf965691a9b0c321d13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b869f98867236ed36f4b4d6ea0d91c2f51757ecf63944da74852ca0f7e93bcc5
MD5 629c69a5becba598c2416ef0b0b7f22a
BLAKE2b-256 c727becf99f28b4dcc192c568b576560af66aee36c0226f72d464f0df912b95e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4941469e2fb41db237b5ed3827bcef6c5050299b34e36e8b708a102899c0902d
MD5 f1b6db8f39dbf37ce914ff308b9343a8
BLAKE2b-256 0e0fc9dfc84af96bcf1cf1af4c8a455a524a3dd34746598dc54c640c587f5f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 150f86d5e1f80359b4cdb4490ab74be53829ddbdc2f37ec5f761f2560f8b13fd
MD5 b5213c1bf1d0436f8dfb127b2f689d54
BLAKE2b-256 a6c8e610790d26ba24ea6987aa2ad3562be48b20ca55340dba9ef8581295b9e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4df0779900ec53f5366a074104519219561c1856991c0ab1e700547e17b94521
MD5 60a5400b094c66b72be172a515bb8d44
BLAKE2b-256 d9ed88653b18ac511913caadfcb8d595b8e511e6508bb7e1de429c5cdd124616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 942b5e965f26a9b673c9264627c83cd43581987a50e27fe4f2980385612e8c6d
MD5 a92db9b480d5a3cec7c0a2fe5005659b
BLAKE2b-256 aa32c0a8a5ea4be630ef2c63c8202c79a3cebafd3e69cd8b07a86b2eca93aec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f9a06c61766788d9720ec185660428652554aee3697371052e3741b2b507c58
MD5 f45298e349be05ebf307d60767d1a386
BLAKE2b-256 3d382a17f47b9fdb0c20684cf80d26ffca0f889eab7af2d538ce2db0638e2fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6f6fa83c5c96d6e2da0e9f81aa99302c6cd2ca64838aa7b7b795ae6da78a6a7
MD5 08111a14272e3c0872a90a0e16d7f63f
BLAKE2b-256 bcc375ae3d3009878b4adb08dd044fdac6bfa066c1ca6d95e9dc83f430d39edf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f142225b09ea13cf7ac091699d2898914b3c0cd5841e877fe0066e0edcde75d7
MD5 f131c2cf1fbc03788700acd0667ac0fb
BLAKE2b-256 6b7397dcf0d79ca3c893138981307dbcf95c352e2ccc15f1d703b2f6c78f6092

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d6b15216fd52d34613d4cb1e86f0a485dc0f6521f73504fc4de87a32961f033
MD5 bd47ecdeb0b17100050847a07c5cab8a
BLAKE2b-256 1731ff864d0cb52147803f55f3553a7ea99d3bc7282dcd0bf080d409809cf0a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2bda387f63102f688a3975acd2c3321bcda7139f007c31c8d9bddae225a9f93d
MD5 e0a313a2c0117e5c864a6d2cbe44bcd0
BLAKE2b-256 d184e23c4421669bc60c6c37545c6c70f71471cd74194f4e397abaedb28ddbc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7acfd41487448e4dc31bae4611d23b2c261e7f63163b2029312469b954d88463
MD5 db4ca598a15a7c101ada892061a5abb2
BLAKE2b-256 6727f09d8f693cab8e4c644f3218b89daace95f949259bb63dff7732a2663a46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9043224c5484537319851d84e97b0f460dc6fc221d9dc4a8530e9b034c7479d8
MD5 8717ca6b013376da40a719ada75d3b05
BLAKE2b-256 314779b274463d0c8967b34b7c4438126a91a6511a53ae81e76a9a1d70dfa135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cdf1fe0d6731ab27b10dbc73c525ad33d398f17292334d1b0be75ddc4dd90caf
MD5 15ef57a5397bae20451bb12a45ae958d
BLAKE2b-256 37e18764c3609ad9524466679a8b072145151aacc493dc9f99ae83b784565ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b81cff6a85c358848d75097ea84d54225c4737907ce07b4e42378a6857423fab
MD5 575dc8e753dbc06055d83faa2428032c
BLAKE2b-256 75d04fe2a0fec7a46c800aedc24f6017d9fc0d0db903c87614bc0ecec837ef91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: speedywalk-0.1.6-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.1.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ec1e1fe5d26276e1c03193e79db11a5c22466cf8e5e0a1f2bfe06c106cbf8f5b
MD5 3e84752936f8aa47145c5aa2f89883a9
BLAKE2b-256 a9581c48195832fe289fdb8658bbcbf3882b548a4750dc9591ec545501d263dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e2d5578dae375cbe70b36bbede8c9077e6f74e5edca374a4f575f47bfcd7090
MD5 57509f32134d3ebf3ae5b6dc7843cbe9
BLAKE2b-256 cee0b195fb0597f271d954dadb492b75a37908c67de9a2265ece41d4f6f65e5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d75fc3bfb245753f0688e576a4526aed0aa4ff02335f193858d6cc8c4cd1a37e
MD5 575cca6e1a9c7b2555921999424a37a3
BLAKE2b-256 112bb8855a94fa625952a25eefc5833881d37541950c5169cf2f5c3e5c7df72c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4c55fb5ca36ae0187b13e1437d7edc0384a9a7e3a59fac852fb31311c4a1923
MD5 9214123879b640aab76e6391d8539ab7
BLAKE2b-256 b8fc98afc09da4762dab83aad4e3e2c7a29ae20d9d0c50e59393d2912e35227b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d64da161645ff0ed21acb88add5d17653a86e7faad1970c87d154eb615c8fb19
MD5 c8d949a2f11104c84cb578f17ad4b29f
BLAKE2b-256 866963798424017578e08c550247ed2c26d45d60bc7c74c87c656c0e187110a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2048499d7f3117f0790197e61445e2a710c366a0910e0fbac3c0e4dc2f0ac4e3
MD5 103d16b47ecd358f3525143ba4626a7b
BLAKE2b-256 a6c6b026e9a867a5f7015374da130be5fe920de214ef485010a17fbaa9abff32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1bcb7f35371a43f24fa080de71d2c4fc9dd78a9c318e60e5ea8b810574a8aae9
MD5 cafb762bde2e445c4312b2c6e7acdf5e
BLAKE2b-256 07d866fdb2ebae695ebaabf2a0012e85a78d99c6e6c867fba0c0c265d15f1642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d7fc5b27904faf71e0598235fced6c089761d76e7398f094b5dcc839d310e9b
MD5 ece8ea078845f555230ee78193e46441
BLAKE2b-256 3c81779119e909d8b3c980b2a62de0fda5841080dc63ca5413442324e4766ae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 92f0c0329ecbac9bf9957d52df95cf83fcf5e5605e7a9c55ebd775eafcac7fea
MD5 584a6472c044d739bfe281a6f280a443
BLAKE2b-256 f51595510c5c0da17c4d4bfcfed796f4b7f7eaa111d9ba15e4f51b35d9d013bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f656c98e2de75e4fa1defd06dd4b8ab440a98b931209880f261b414363710b99
MD5 a7fbdae44b11ef0f6f449ed39eaf70b2
BLAKE2b-256 7ce8a1cac2d46c33f10e012859766ad9e80e8de1aa6aba31257c000c9e7f090c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77d7ecc703162e5db932f7a6ce7332c8f309974b597a939d2eed03fa1492eb1d
MD5 39ef27d29fe487a02231beb01391a8dc
BLAKE2b-256 f86efba560786e8998704c37b4f91ad981414f5b9fddf1403142a2bcf8fa330c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ff3f5098d857340745850504fb8ff34ec2a21d40f1c33775dee7c9b88069cd7
MD5 3372e99bff6cb63ded5a51c0abcacf95
BLAKE2b-256 8de2025753791a79097e8eb2669ded7f3e9b08f36392ae181cd490fd04924d19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5e8723e326855efb1e8508affd5dc1e8f05f5e48571ea41950b95ac81727ccdc
MD5 bae1e0f9cc94a82706b94e7b6e8fcb94
BLAKE2b-256 ce9086a0e77f20ecb5e2601b23aefd1c5091ccfc1c21de71dccf13ebf5fff191

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62187dea43bc1d43063038c0e9fc4d7e0a52d7c5f52cffb2edfa4862841c5e06
MD5 041bf462fd8eb581dda88f3083d3c21a
BLAKE2b-256 4cba25ac0b6ba0b918f3b813d22645eea32c5c477580a75ee9f306e37c5e44cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 211078d4b11f34ee534bd90180fef0f505f7edbbe083bb5165302f18344aa14d
MD5 33fa2a7e5c6a347ccfc513a38b564130
BLAKE2b-256 9ff354cf14fa6b036b930a5ff50859d9e6d9940021727a37fc64cb2e73d0c4d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4c1e8cb0e07441366331308de204e74b4592e6c544e399783abb17e7ca59b758
MD5 72f558d6fcab3dc51de4173f6ea75241
BLAKE2b-256 e4957924eb3ded9efe2cb7ffb60a3117138495bd8b77d36e867ef7a0c7c43d37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1579881233adc8ca5818f6497f2efe7e070fc1446f13e3be36350a20c54874a
MD5 a7a50d02790ed50a81846404380d6352
BLAKE2b-256 ad40c9efccaf68923ec7f1d9b1ee137ce67a2a99171471db33fe10448be80e76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7243fc4003a1c82806c2de25c0bf0ae4baa5cc10f51c8ab7296bf30cbeb62762
MD5 ea05a7acd20da3ab03d091f95b161c98
BLAKE2b-256 5553ff1c28a5244428d3d27547740c2ada76ee5b50e507306072187ff5763068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e189e70b098eed446d0e97f1d87e6bbdcdbe1687bfc5b637677d6b625446e37
MD5 d22b0dcae553648d6e00f3018ceefe68
BLAKE2b-256 5b007476f8d3970461185b772e0b58c499f0d221ab4065e2f2cbaab6069fe197

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e31ca9fe12eec7aabec6f0a4e539fb0997eb850d2439a99197dd97f43538ed1
MD5 41844dae8b31aadd3e12693aca07df20
BLAKE2b-256 0193f34dab7ecdcf1b1a4a04089160df1812910027e71e7f8d93d2c4fe2299c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 097acc15c592addb139570408631cf188b043d87ba5ac0f83852f9826794a993
MD5 d353b8d5f4659380f40191b6bb0a8a0d
BLAKE2b-256 eb32bb6dc0bd6ddd259d428b5ee975f9a06b52a51777b5bb82f77dfbe9a16c5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ba1f88349c6c77dd5b92a42140167da035e1534a7882108a10d2bd0c638bd12
MD5 e74333427744bf58bdd6ceb98efbb5bb
BLAKE2b-256 a4d4a09ca9cacb0f86d0e9f3f77b04b7820b711db3c97da176300dd8e3914936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cd042408aacbcf348b8b16bb13bd4d871db3776c2a34bdf81c316faaef9d6a1
MD5 7cfc194232d5b2a150e0b46f64fd6e0a
BLAKE2b-256 a54e2457744d9a205ee42d5b707cf3f9828478add72f96552118097d5a69c1ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e0b366dda08353e8afdc1f6c20a22bb829051df488ead1bb06a1dfbd3e84cfe
MD5 f289c572307370264783c7ceeaab31ad
BLAKE2b-256 0c1a4a15c9b21c07b16d9ece33dcbd714db73d5f84f769df1b061d246a25ae71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a84f79cc4bf544584eaabef7c57418b81533393ef35398d632169b8259e8443f
MD5 7a4ca4730fd09801636bb0afc1aa5e7e
BLAKE2b-256 44b9c9e43fc28b5846ebdba61c9b05106a2bd3ace7487ca6c506ff0613cf2513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 abd303007a39ea63ed11dc1282ce96de71543cedf00083bf8147fd2e51eb12f8
MD5 4f3619c2a14cb5557938bfca74772f8d
BLAKE2b-256 a96acdf7ba45272a1ca63b4ad1ccd5cfba5b25c1435546ec0396e68a84152c48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5757d02d4bf646c0f58ab1a1e5bf3cd4bdd6004c60236c21286e27625ed19ce
MD5 b9a0325ebbed1c4d1f81bba2f370b801
BLAKE2b-256 3d04c5180a3d46511ea63d0f4fb836b685c0a74063bee9c587353259ddf80038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56b75409be2ece799392ddb23cc98175aab93d4429b62af77fe2378388611b96
MD5 b897ce4129cf6f6cda2409e8a2e91220
BLAKE2b-256 d7e188d9ea7ba642bd126ab510e62d85036085c23825338a795b7a144c3b9310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5577d6ba0e871c9ddfadb38d6ed6db4f24a13181ff2cc7420eb3b2c50a8fa7e8
MD5 e85048310ee4c5825dea0e1cf560b090
BLAKE2b-256 2e972cee4338eca0ea8428d78847a71fca784fd6710bef48fa598d8dc21f051d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e740b5cf29eb560ca51aa08361cba5a36d48e53e5df69c857d2ef189f94ee26
MD5 5338153c0afc6ec611e079ad0e847f03
BLAKE2b-256 1aade44f381d6f75775eee3b34c446b8a08c20aca3d81f542ae6020aad15a936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eaad35c264e558a6e2ec189db410af34f5a3d14b9847691849de6e4fb17aa542
MD5 53af7ea5ee7e82e0b120ad577d652c9d
BLAKE2b-256 e2ae4745818129b7c34249ba2e6df6b47da7e12a09cbd75781931b8c7b8b5e59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88ce41e1eb92898b07156b0edc083bb956f1262059020f4bdbb8c2650d88b41b
MD5 d08420a050ab98c92678ea17446d9d35
BLAKE2b-256 57a08672f8ab027ef18e5f00e81d8bd63c7a047e031ef78239091ddd50a85547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55c7d8a6f952b29e1e9d858a61c5bd6f705c003240816949bc5fd476f70218b0
MD5 d3349c878d251434453cb34e2399e3eb
BLAKE2b-256 d69584391f327410ef4ec51e7d7c8a886fbbcaa727b8e78be3fec204a29dff04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af0c2f8be875af5e4d9ae8ae1fdf99e122de5c588df48114d94a0d814c5148ba
MD5 e65cc718e52d4b69b6b826dd7c456695
BLAKE2b-256 d23c0fcbc7db9e71557f032b5b94f4e0bf418fd8995901e0e4d975ee54e031e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bbe8befc9b4fcc6c781325f17278d4f40e03ca133f7ef129bca82489cf29dfe1
MD5 e51f9edc8d4fec9ac7e2919e4116c435
BLAKE2b-256 16ef5029b42a037e3879319fb0e9b6041681b2c2eb15d94227fee25cb4ebd3ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d76aa2d136f776264ad4c74544fb8dc11ee4d2b5f643359cbb235a3af8f83ac1
MD5 4d5ef70f1f825d6e87ca259702aa21c6
BLAKE2b-256 ed70f9e1eb347cdb4ab989489956ba858e8e645d7456b752d2a43cf0860ebfd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43f81a24e38ca4ac53d5b5da6653446df32ba2517380208bdbfc0d37af50f5e8
MD5 2626b5d7ae2b94fbde468b73e2078d60
BLAKE2b-256 3acabefd793931a2662a16897498aca7b43fea502f5082e5fc5a978aee32209f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f0664a76dade8a6eb7e2c93d0d071e5b58b931dfbc156981dc61513173bc803
MD5 731a29d09857257b4bfe6dfbdb208574
BLAKE2b-256 5b8fc02d876a602522bc07edd32c276eb9e172ae41f1d1e8091dd7ab0e24af6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f35dc7c42a93545483eabde444c54aab40dc0f14791837d2de2aec595fa87c84
MD5 2d70c3eede6903b82cb19052896c0450
BLAKE2b-256 925f2126721950aae8e5bbaafca52b0b82009d0d12329d277d698ca431712d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98c77f4cacaf7780bf6295ffcf1ca69c5bff124f304d97cbb1e6d096186107e2
MD5 4174a5a57c2b70eabab9c83b97e0b1d0
BLAKE2b-256 18d77f66c9aa4e5cda1e37ae6b244b0f956ebd826def2cfd99831ebf88f02f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b55ef380da6347403380ad381852350e3e9a5c92bec254731eacc5f2806a50a
MD5 439cff8ce2f5d68ad8c1da92aa8f3ca4
BLAKE2b-256 689d73a9c62370e82488d07aacb1568084589d5cc77b1ecc9ed5a5646d4f1ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf075fd7a6d5e688e01f662ca3fd4e95081dac7ff8584546032d945976eb13a2
MD5 1d6292d47eb1625784763d53fb3f4c5c
BLAKE2b-256 2077feffdf32343b1742ad15756a9892f775273096c65d68ef8c9f6211e7faf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4312535eae701bfd6da3fdb5d44c37dd94b7901246ac9edb602ed469c10a55d1
MD5 11275d3829cbe6debbb1a994d7fd987f
BLAKE2b-256 576bacc979fcbc9fefede41cbe8ab424316e1595086d4b2491cc8044fc526fc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fa3f16de84f47bf39b4d1837a6f14a3b8ce224cfe2ff7b8bcab5a9b83aea405
MD5 ab6851fa2849aa87348152cc42ec3f54
BLAKE2b-256 082143143bb6bd09588d3399106afa95a3b82b63393594eeb3e7c78aa1160d4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4203a53c337ecebe901a9396b107df8476e142968bfca824bffd59ca0bdb5a5c
MD5 025d0a0d085202fa5ead1f5859c6ad9d
BLAKE2b-256 ebb59aeeae590474a169323e1858faa8db0e1182dd6d997851f5490c85e1bf54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 65d9c6c190876ea2b4a266ce2a6789e917777355ffbfd94391f7039ebf3a97a2
MD5 c7e8d276f0d346ba70692cda3c93ffaf
BLAKE2b-256 f8d3582230aa71f84b58374f341929558f666ba17735ddac1029a1cc5484c303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b102b8a4cdcba6c76f106b71920a1d819ff99e182bb794e1402a140fc8ac71f8
MD5 5415d0f4d4a148532e716c29f7b7b0fa
BLAKE2b-256 0eb1344bdf77e2961bed0a3b2e53a6750b5f4caff713ab620eaec1c5ffdfac8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 203ec8b774ce539132e2ce05155c5fb52fe045692eead44976b8326bf0750326
MD5 fc67084e666c567c0ae2378855c7c67c
BLAKE2b-256 3a70c3ea7a657eba8e09c9cbda8be6f11dacef53c4f619a44fb4213769a52678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbf6b27e9e943b048a1cca783d090ccb2b769fd3f711b660144bb5993b0498b7
MD5 14d60e90f3b698a23c7becc5aaadb492
BLAKE2b-256 d83ca38a59a111a60ea134e17c875ad2cd44b7c5f234155b39d65c857d29d0e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fc014577949a54efc1df7e6b2f151a785c0329a3668f0480feb4319f6b5e59f
MD5 02618a714a8b8f8c9770267c1be83609
BLAKE2b-256 c0ea69a949ca797b8feb489844a161c507f1440929bd9156f9a33c00bbb16c78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3bd34416a8300ee7cf5b7ec78064e7a56f77a14a561c7088c2bf5efb47708a79
MD5 81ad493fadf4b7ebbca2f9882c34cbb3
BLAKE2b-256 e6f035826826f651c40909c577d53432568a0556b4e05ac36117d8d67e06e664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 001d4f0920ce2d2ae123947004bb1e61e990bd6e4e527b54fffd1b914917b5ec
MD5 0eaaeb7fd962ece707294d3bb1710b71
BLAKE2b-256 4b040813e8c199b93e07b78510e3ffd74acdffe9c6354b821334af7367578007

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae276837aa91aacf436b4fad7831909b09b0d0949205c4394429b510f6203444
MD5 10a5e1f53504f8c7e3b9c167b2ca0564
BLAKE2b-256 4af3eec202b7d4cd75008af99f2e8b63b70c20ce73925c223cc7843abe060ea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4550f37e60e34177f39f3f7ab881f284ab58efe13040b2b753e8aa3f3b832292
MD5 62f9ceca135953742baa8f63ef8d3d02
BLAKE2b-256 fa2c1bb3a2194add3b1e437b0ecc318f407da1bddc222b65cd67e41c156c212b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 683ba4d825ae088b76f1b128edc710e4a4cf6539888ef6d3c35ce5452a27df88
MD5 48ccadfe1ba2f6e253ea1cb638b6d973
BLAKE2b-256 bb25ba775516fe46b6d703421ace3886d69725e1825b1ed998cb0be3493ba89b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a44476159ec5223df84520ecdb712f44b45a2ba36ec7aa268ce7c51fb2f4c722
MD5 ecb170a3fae924dd1c2f4720b9348b99
BLAKE2b-256 ba0fc25d9f084454a04e68fdeebb7fefcabcc077149dc41726feced5012eaf5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4963f8e006a2cbda19131536f636be8b8fa5d50115520f66f2cca61a03129238
MD5 f6b7efddd581badd9beff28df00ba743
BLAKE2b-256 a1fb19761984b140f78e08cffb3bc12e4f51592bd6291c907266c1208b50b500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d63e7811db44895efdc405f8d24099c54374b21496f8dc1b2aad5894bc38047b
MD5 bad6ab75fc44021cd04eaefae3a25c51
BLAKE2b-256 b001e543712b4680fc6de41191fd1069f2df28078abe713aedfda33b86c3af85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43b3afdd528c1cd76838bc72989f79a343bc90874722bbc5eb7051c88ffa8c19
MD5 8a1960d284d958a2cc29e359d08a940c
BLAKE2b-256 9c1178623ad90582ea361cac2936a9e0eb02f3f3e4490e572390d47d395c3aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e3ddf1c95007add46a71e78938627150d7f5ad5dcf5014d0e3d4e37a2916fda0
MD5 f3b9c41379c22fdff46b9b05c66a0170
BLAKE2b-256 b95eb50574abd0b6a9c5b593c16146e354028c6bb97ec6ab062f537f9bc87dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fac0d195b276108c86af19b1416d6c216afbba4460946f46b4a059520108938a
MD5 0c46da1ba18e1a3700fe48963334b586
BLAKE2b-256 84b97dbaa9be7f228011cb6a8fd9295d1f728b3d03c2056b4711367342621da7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3425dd124b0096a314a22497a48aa1184fa4f2f080a48628d15794eea98958f0
MD5 d489764bc5b00e97c0a7525df4ccdc4c
BLAKE2b-256 b59981c19dc376e46b5f723bb0c7e34afc49026ac973d8b4c18c5f152fbd4942

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