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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

speedywalk-0.1.2-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.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (999.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

speedywalk-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (953.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

speedywalk-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (999.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

speedywalk-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (953.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

speedywalk-0.1.2-cp314-cp314-win_amd64.whl (754.5 kB view details)

Uploaded CPython 3.14Windows x86-64

speedywalk-0.1.2-cp314-cp314-win32.whl (671.5 kB view details)

Uploaded CPython 3.14Windows x86

speedywalk-0.1.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (857.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

speedywalk-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

speedywalk-0.1.2-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.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (925.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

speedywalk-0.1.2-cp313-cp313-win_amd64.whl (754.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

speedywalk-0.1.2-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.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

speedywalk-0.1.2-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.2-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.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

speedywalk-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (857.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

speedywalk-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (929.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

speedywalk-0.1.2-cp312-cp312-win_amd64.whl (754.6 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

speedywalk-0.1.2-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.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

speedywalk-0.1.2-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.2-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.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

speedywalk-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (857.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

speedywalk-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (930.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

speedywalk-0.1.2-cp311-cp311-win_amd64.whl (754.5 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

speedywalk-0.1.2-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.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

speedywalk-0.1.2-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.2-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.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

speedywalk-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (859.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

speedywalk-0.1.2-cp310-cp310-win_amd64.whl (754.5 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

speedywalk-0.1.2-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.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

speedywalk-0.1.2-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.2-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.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (950.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for speedywalk-0.1.2.tar.gz
Algorithm Hash digest
SHA256 dea25333e6fb4b720feb04ce901c41caeb58718c2db6f92655729fd4ffb895c0
MD5 f68b346658c70d6791d220c207b822a8
BLAKE2b-256 f6c98f2bcf6b42d4b1be78b345b4ae21c95c8ecd0e0a18492950e5d3958e477f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 756cfa39214fa694d679355a7523c11c8deaa659555d77a13aae5ea875c56a60
MD5 3d270ef4271916bf4b76dffb337e9379
BLAKE2b-256 51818608c22b81edd3024d40ec04144429e6a77777bcacf8ae470eca3fb90e2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 faaf89acd7a7d4ecbe18d2b45dfda05d649555b8eaec5ab9316cd5bf2c4bd2f5
MD5 f82f17bcf9ce98e830b42d5e4c34ee30
BLAKE2b-256 5e8f3be246b6aba376bd20867605525b05d8558655d47172b66e06e9f251e57a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 06eac7051881e7df689f087d6fd8eed04da850b210b4a08ff325c38bef5a1fb8
MD5 3bdda247a41ede3cecaa9da882941816
BLAKE2b-256 5174b0c26d23e5310c4c0b88e86921b8e6edfd3bea9fbb51480762f87855afa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cfe8d240e580cf995c55fd4d0ae9d54664a4fe4f4463b22956e25db18e186c8
MD5 816061fb5de942b9e182e7d3746ea1d0
BLAKE2b-256 0bfe19d116c445e317fd7983bd1018b8939935e6fdb2782ce13b5259ef9df578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4d8bcba882be244e66bcaec417c7620e202fe1f092fb2bd0eabe523631361f4
MD5 298ada36a8e72a6f5ff55b2ee618e502
BLAKE2b-256 5c2196349e596c193d059d97c23032f0d8ef137acf6493834e179892d4ffaaa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f3ebf89a6cf73a30b989e316aad5cef6868ecef117880a3bd3bfec0002470fe
MD5 1ec0ab66ba418798fe0fc8993188d726
BLAKE2b-256 cd927693887fda606a39e83f1aa191d0c9840e8c2ba580aa20a8ac9a6d7fa7ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 364409f715abac9c093bf7a3cf2f40236e912d085070ea2a698a287e6901fa68
MD5 2e3c8ec1cb4fea3cfc70d642d86f2abd
BLAKE2b-256 fa9fec516c455f8d16544ed29a3a18658d3eef156a4b7ed1ab42ce9ce04ae51c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f2bd726f94271c9b22eb6d6e16af8590a6117c820a45abe81e7329fcc4353d3d
MD5 6fbb13308cd3f03fb24b9c1cb24bff64
BLAKE2b-256 0cbfa1bd42360bd15ce2fc123069996265b2c8505a8ff38fe9100ffa20ec13b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36eb05874dd671a105cce8e7a8cc324924de98718509bb2ff80ac3a3fbdf93b1
MD5 e1ba15aaf85a933b64b11d970acb4b12
BLAKE2b-256 c5c6e80df2ee38168d627b1875cde6805f7aba9d1f7e2c00b6b78c0603a2f6db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be6c612c1734ead36777e1d0761c42e81e4ffbfa8308cd4dcf88646ba74d1c49
MD5 84a1e07a41f4bc25354958c364ebfde1
BLAKE2b-256 89366ad68e190a78b4ca08b277e82aa569d37c175e4eff95e30f786e9bd7c532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 863acacbf3bdc8933d166a1870a781e5d1178ca7849b701a9b941826efa9b8e7
MD5 13f35b56bc7eccab582843f155177a9d
BLAKE2b-256 1c18693b2f0d30479a6ce9feabd8e01b9906715976e62a330ffe4878add24e12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f449033e72440476c234ec52b175843baf7fd0ca5e37d622a8d04170a4136847
MD5 7281af2e061a50cb2649efc48b56003a
BLAKE2b-256 0b6af2b762499661d1fa3629fecfd8069d4eb89194017a32ede989bd6c4d964c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e9ca90311f90410e105649b76c7ab88e03caf192260e9748380ea1380fce669
MD5 8b78776291b4f99131e3e0db546615c0
BLAKE2b-256 f5ad572c64d9faf58836b4f4affef01e6a4988af8ef648e451cfc66d69051d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7d579a8a02bf1bf1da7678d6a1c2762b8b91794760e194afe3c5497b277d16b
MD5 68ee8901615f6aefbec55e128ea84bb1
BLAKE2b-256 4ffbc4e4e915a06825ebc4e83a463b48d77983b7e0b4422a14e762d05406c92b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62602ad3f90c3742b4bdc29cd32bb7866f46bd4ef64e8507b9754266125bd9bc
MD5 ddd208919bf92767a3f45aa381ae8530
BLAKE2b-256 0e89586dd4ac12de88f85a8d8590bb08cdebc31d27974a9d82e8e64514f13496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35a28caf0156e01dcfc06a15f8f4a0ea1c596eed861877862fbf5628723aa05e
MD5 90f9d95d9703d9910ad651c7d1d6ab15
BLAKE2b-256 fffda1120d92bcabe23af163f734de676da68a5f79c38911491a829f37ff606b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 845536bf5be46a326bd42913eb1285188fd982f5cd2e181f3740eae9ea94f351
MD5 68a29a16eee58ad976159d11d2b1cb71
BLAKE2b-256 73759dcbaa4f7cd0c6d33b2964c79c1c9838e2a6860b1814000ea6a484339d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3afcfee26fe354aa512c5c4ebe3b74a711c889f612557694b4844a6023621c8a
MD5 7df7a463ce5ec3a600c9b09091ac0e90
BLAKE2b-256 90aaf8c85b8b7ad2d2514c094f8a1d8a495c736f09877154b200c338cd0bbc86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 37a255f44ecd9abb3012b3e845869083771186d2a8d2cb1c2b0a1dad3a69484d
MD5 717b523b59ad3f315927ee9aea3a6166
BLAKE2b-256 de79bb451a76fa89d5277322a8064c6722d74ec50b1ac1de739c8d43a4582be9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: speedywalk-0.1.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 671.5 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6dd84f545899a92d5217d6f38f72f40de019f57ec95421d1d4e45d9198eaabaf
MD5 50ad0f30ff3465bd2c59732180b71ab9
BLAKE2b-256 3858a272ef2c738ec648da254dd9813c9957bc59630fad161fd2a369d09d8c41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e880dea19a9f88f993de02eaefe54f2982f45016f4e3afb3c6a8f7c09d6b88f
MD5 71010527160586ef6c93b4cca1cc2498
BLAKE2b-256 29e4269181c38eeb7cb95c4f12393201753836e80a42859e2de419bfe1f7b59e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 408c7d74fae4c51f117ed4c347f2f25c4e9cfdf48d5321261e18a440fd3607f4
MD5 2438174af8b7c7aac65eb8280157fe5c
BLAKE2b-256 4908c854a92c4cb0db90fa2da776d411cbfbb8acad578da87f9c3b904129ca42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d610180cd412b66080c547004b54d0993149d4b397678ae7b8d095d80e4eb083
MD5 dd8c66d316d211bbf0ef469c89797403
BLAKE2b-256 c6773db3edc7b45883af79baf4bbb67310b1a08c220391242ebc006fa3c86c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 040a018d6577b2d7b1eb88fcaf0aa63a865d9e1a6b9e59ff50d8b5d94c342a35
MD5 8268ca594a41e73c375f15183400415c
BLAKE2b-256 cdd3e1e054a18f1891f65d01d7265b534bcbebcf9729d24b976c23513975a81f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 abc9d7fb491b4cba9259c456eedf51da471bbc673eb5b5bc878d790ab93ab09c
MD5 4ebda3c81b6af60470198503194416a0
BLAKE2b-256 7ab9b11fc6cd659e66cd538797cd390f973cfe7af5848f560075be0bafae3fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d220710e8987bf3016767bda3e2942fea5e38808811800935cab22763977b6e0
MD5 f83900c0ec687fd7b48f646df41e25c2
BLAKE2b-256 281ef506eb6f779d14fba7739572de0908252e02397cb9a4c492ef256b17087f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6824e90a2dbbd578c8af75b02c64587950ea46fc35a0af2c7c51883ad9a0949
MD5 1931aed3f0d1e93b587e61241ba3421f
BLAKE2b-256 7437236325903d0806d48d6ca76b0bcae2daeef231418df13b2d93e1c4a7836b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0112a0f3e7c81a428a8815a75108ec0638bc5347884e521fbcbe434800aaab9b
MD5 16eb158addbf2d3d94ada1a164efdc6d
BLAKE2b-256 8dd00f41dba465faa2eb4187435f843c9299778681e8a6f40955a29828d3f363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8293a2b59ca7b393126020a9ccd14ce9f742599d8d55aac5fc6b3d4a7e056330
MD5 2a64aa0562f0ed5921bd929e501a6302
BLAKE2b-256 81a7209ff9f9a0e116892fc6417ba59926b057382e66882a080594dfbc06a60e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f34edf1af3c2473ebebd4cca6875796f0d64083ff3471bdde2dc08512ebc6e72
MD5 e7e70fb91ef9abd9c3744f8c3d8a0b38
BLAKE2b-256 af895ae5316a545f67452526a33e63ad6549d0eb4f81c5f3275fc84f1d8d415b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e54990650a94599f165c643a7f457e818a85bec3e0d6f0960803d076744352e7
MD5 433a73ad0aa9f2738915b9710b1be6dc
BLAKE2b-256 55b99430aba21b69ee0f38f0fb3ea4a02e3f1915afa28de39961e11549f7250d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 33b81da0d85019aa120da2132a90f794c244c2c51b75299ddc0fba1e38528a64
MD5 1d5c26a1f21b2fda6bcbfbb0db44d26c
BLAKE2b-256 b14e8012f0515b04117a4de04d4ad9352eba38b3d8f10f9ae6d0ce19672431d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 744fa5a49b982e6af7adc0d89ab3d35626cf8f496f578e8d3112dd6da47a68db
MD5 385872d222406e6091eb32182b8073ff
BLAKE2b-256 27155fc4179f3a5769974b1fefdf8c17f8a487719deaa008223e650b5cccb11c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05f709b1c13ba1434564d4949f58c9748fb5babab4184b74c27fca4a2c4f0bdf
MD5 f51240851bf843d244f94cb27fa3879f
BLAKE2b-256 a874819312dbd865150d201476c08f768e93d0ce04991b9713c2cc0b8995e7fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4530fe474e99955cd2b10de4bf2e3a0d5d9e7ca4706543e5fd533bd2a0277588
MD5 385c484589006170629cf187b944f6f0
BLAKE2b-256 949438da93221018c883397109ff8e448792a56be637f86e28c9cffcfc72c6af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae1ef3814fa7fc472ea54d781640111b01614ca317b30e462ba750e58f0f0f37
MD5 d1c83f78c9d22d22d5f92ebb1df40d15
BLAKE2b-256 014d65ab555a3b64539085c4a8e5787d533846953d82e276700013566808cb16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c042c48d1753ec73f392be831bbee8022209904acc9569a6c87e1f8ecf0e37ee
MD5 28d448acd347b468ecf0735d648409e9
BLAKE2b-256 2c67f7ba5d844917dbf88513d6ca368c5c62894bf2ac955e5f26951a1d4d26c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e18c6ac1cbfda1d11f65fe35de7c231b660b75e75a862f4bddcc84ef0c6bf618
MD5 8ac4578fe40dbc437bee05f919c48230
BLAKE2b-256 e66dc536f4421cf6f52a3298a63d883e4c7e8bcb183f61770bd42e944ed8d997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80c90309faa92c1bf6c30d1086706a2fe55d5b0bc2aaf3d87973e83093e6afa3
MD5 15cc7a5a13d5c036ff94fa16aad248cf
BLAKE2b-256 c861eb58f2f01a88af505d9d80ddb155e9eec12d7890f032a24c057e5a65064a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4fd2ab6924364938c7a2413ff92ed57a3ab596d58a924d9bf958885e6da4290d
MD5 ae560815cf3c8419ff8cd9b3ea5bc8b0
BLAKE2b-256 e6c4164cafb8ac21fe7b087ee3ef247c1b44691c16f3078ec00af9f2fd56f35e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d3cc38e5586a5cccecf4dc107a389fd5395c531ee97fca796b21caaee70743c8
MD5 4237bd9335d020c5d61762f2ab218a66
BLAKE2b-256 55390701e9be000e19f893abc32456f0c2e897d8a209d214c3c25a1a808bd828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26ec9022926aff61409c0b469bb74d82c41c9a97d54544e802ae262c3be567b0
MD5 e77ea85b591fe0abb88cbee70831ada0
BLAKE2b-256 bbc3ee710ac421c7f20b1fef98d86468c1dd44ec8d7499307f2a1352c5aecd4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e72bc20caa78399ac0a9ce48195330fe0db8dcfd3f0733284c7e16d607a47a2
MD5 6757d707a324dad89bec82f02311cb3a
BLAKE2b-256 f6c27d7410f1ed88de45beacc0707b15f67cd763737629be6559025c3a66373d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 87f34cea803e9f952393819c011e9a4aed8231de898b3893592c98f3759ca4e3
MD5 96ff5dc2684586773927866b08d92b9c
BLAKE2b-256 3ea2db84c2702ab2919e810919bdaab02e90f4de1ca19fb72f15f3f48e375ba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d85d2cf6b383eaa374842fd42e083b66e3c0d6f1de3f378039e0f4cb4e2339fb
MD5 ee76755344ee0fbde30c52ab0dd537a0
BLAKE2b-256 4db2ae2881d502e6d3ce8ddfc7a5aba0d014fe7c61472c7e6bcf6e0d8959fbc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0563bf0344bb4238f49fc7bab74910afff6cbcca45e2d5002afe1b459775883
MD5 5e1920a3dd7d69964006244b55a59407
BLAKE2b-256 9114f88c6e83c3b839fe217e4b6eef4f14205fce1a6c1b1d2928b8bd64cb3114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1eeaedab88224561d55c75c5ab554726b7a6b92eee84f731737660152ec64f99
MD5 bec10a38ed327c608e001a46ab16865a
BLAKE2b-256 ace45188677ffadad987d0652d83c998f101a8ea068c4bbedfe93efca08f7780

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 80c3ecb8bf2b3deac07fcc7e198b1569a5c5bfb4236d96a77d8c138366ca0701
MD5 de63c8e90510bb980a9aa8c023f25de2
BLAKE2b-256 63ec1539d0d82fbfa361afb31a2d5ab38a90da0d66c6e3031cae74edf39e6782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02c784764dc82517a2da4a3938a90bfe8375774921e54261af2750d99f9df685
MD5 85c87eecb0369efc52fd891b4d2227d7
BLAKE2b-256 a9d8d68c602c78defefb71a9a32cc940bc45f0702457e6d02113df888ed2cc39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9382738c0cc48ede04383e1fa54a687d649e74b901da450bd18677dd817ab2e6
MD5 aa3c9c8e73826822e71028a9271de79e
BLAKE2b-256 7e9393a82746ffb4591f0691d645f9d0ac19bfdee3c5e98420fafe31b3c9aa51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a88b648deb2c4d813d99f6f4fc848ada71feffce2ed18792fdcc5bf8ccf28212
MD5 34583da8fce0daa82755df4810e609a8
BLAKE2b-256 bc9e80280529f0c393854206a04f32e7f8402d85893bfaa01cf4893391f6257f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2646ea0b973d44d4045093b7dd692f1e5baf1cf15839f0558a16ff3ab490c893
MD5 86c1f42f8386837b0b1da88a2f44246d
BLAKE2b-256 6ad6ead4c7f507b06c3316fddc9401ca3015e49839d6a6d238608376514c3ebc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea1ad2eea203fca562d15c53a1e605d066fedd741a99c306d4c8214653dfb580
MD5 6a9a9a90cfa78b26756f03d187941abf
BLAKE2b-256 8f22a8adfe66be62cabe3c7d21466757d5ad7e7d812902cbf395471f5aaf25a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c151a50c90c200d05988dc1060701fd6d50e73388248e7a77e2026d6970ed347
MD5 133e862945b8a2927eef748c0f96575c
BLAKE2b-256 ff36ebc251db85ebe9a7c64408c1c6ee18127a2e2dba77935586d6b32d84f108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e13203afc432dc258831c25dd2ce7e6f23ba2c04d20fcca73ab15492ce04a1a
MD5 4e25a562cc3313f2e4de15a55cf95efc
BLAKE2b-256 c51c169e10b178379d458bc6d88e628edaf49110322627131bb6bfca75cc2790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a13914014016b8834d64cf5044479776e78390d4282807f2df34c3c41c7be56
MD5 fae3dd8c9b7f91087de2871a27467d38
BLAKE2b-256 1476327afcc8069ced67d0e1879fa55e9713b6476609480e78d6e439297ebd28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cededd9179b81a7687c54207df7a8858ca9586b02f9b53408ab54039ee1800b4
MD5 c250d7903c6a6adc842dcc9782d44de5
BLAKE2b-256 87a85c89e8992463da4cf26ff75743285d05d86a05ab3080e5744c419cd1d8e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1496f550bba8b13c7045bdaa5c8851d98407c61cfc641c9c5614acb42f799ab9
MD5 9a39192bcffb7a7cf01fb0024cff2ad0
BLAKE2b-256 82a8a99aa5c549805f7ff18ebee123a086d9be010b3154c9fc9199122044358f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d876270a713b3cc400123d9a320bf26c2dc679d33ac613d557d83ed08d7ccaed
MD5 6e7676d346353b6f1e57615e6f25d39a
BLAKE2b-256 f9064b068a3533a95ba132e91e50ad43ad48907598f381966b5668faf603fab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8bba464fdc535c254a3bd1e79b5dc9cf177e225a295bb745e547880462fc56c0
MD5 0f52c8d5594fb353ef46b5c58fed5bdd
BLAKE2b-256 bfdb5533c0db2dfde623e0948ea98ae4664edf58b3b1dfec2cd886ce85d435cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 655fc19f14090730ae9d3a57e4f74657df11cf6a25d7cf9595e3eae61449b849
MD5 835722051a226504cbcfdfda094b230a
BLAKE2b-256 c35b8a15cf46e2211df106b93e0c6c49118e1f44d82f3d9bf3bf1443acdae49d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4796cce9dff4fa497d2bcc5073e40008f6e5785e979e149370faa7c95c0f53fc
MD5 9366584358315b4ff414ff593f8082cd
BLAKE2b-256 9215767c5390893cc6a12041c7c04c6f2c68d2bca5f0a633b7a7715ae47b3cc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77860878f03f4201844b00442c1b324e4ad0467f75f34391e06550dbe369c766
MD5 18ca9a275250d43edde8726f0a5b577a
BLAKE2b-256 b0c971c1efafd79b0f0e3f4374714e4028febe0c92a6df0da066bdd7ccc948e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd8870f5f16a4f6304bbce801b4979b18da6fddde076ed9340370dd76b7aaa17
MD5 751643baf7797d792f681d91fb55d79d
BLAKE2b-256 e4f58c8b546e4fd72475ec2a54cb41a86c3f22b897beadbc52f223a346231ada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be28d88ad6d29861425515e65fca71df82f4fbe85ebdd13fc7560f5d16dae2ab
MD5 5cfa0d9fae6bfaf14de08907ed714db9
BLAKE2b-256 6187ebf97c3e78fb72a426ed0349b4818b9c72840cf1095bf4b8032a0d72b69c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e3d7e9d0ae498d3eaac5dad9b06ba7029053bc48ec9324494d2a5387d751870
MD5 661e7c33cd895a56f7bab1ef1af95bfb
BLAKE2b-256 f70e7bee1ffdc9d21542d44622f094e435cfcbee0ac8e36ab8d61cad54350486

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fab2b204d723ada102b7401246e291863f0fc6716f0255a90eec0646acab9bd1
MD5 448cd5d112a26c5d3ea51ccb73d30e88
BLAKE2b-256 96717bf8ea0145ef2d90ce4674bdce962c357f010295e5eb7fb8c1e41851f823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a529910b2c3eb39014103891ce1dc42ec80dc2a6b21c7a11e70ba8c543b89ca4
MD5 41add5e4dc2bb6541105af41c7c03278
BLAKE2b-256 ac54072a6b9044c79bd4a79604250fbe7314cbffda432214c9a9df835cfb990a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b01481059681501f258e72602712323c44ad096e19f54c883a2c19514b1bbd19
MD5 8f0afd7ded2d94cbea5341bf41f33f14
BLAKE2b-256 067c34b134d7be63594b0fd200769396ca4c3250836994221044d59419999cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5fe22697c3b97c9ab0675ef2a3c3f41631d5cacc4de1cd361903031e6ea3333a
MD5 205731f4defe869d2584f208f3144672
BLAKE2b-256 42f62f1ce3bcc724b7239b890029e486eee660b8e7fdeced58066788401e549b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e223371302578b14f9f25208d0bcf2b900d8e4bb0a7f0749d61b0ec324092c5f
MD5 11b151c59b6d1e3d743477bd971cca12
BLAKE2b-256 aa90b247052118999ccf2dd5b1cfceb2b83f0a499b52e24d5e37329f66e47023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4345b3492b31f4c3c61b420d0e0932cf6d9f64f0682e619340130a83caa7e59b
MD5 758a58af9a96315cb577540f74b601a4
BLAKE2b-256 2a5e166c1237959872a1daea0aa6882f19fc2e164fc36a99c80b9d6ff241e403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ffb4c504bc3b95825442aa8ed3bb18e450c5b30542c2cb904f1b85e6e00cbfc8
MD5 c0f1d6f9f160096d22f4f5607dfa31f0
BLAKE2b-256 b5c96c16ee79b9ece2f1e4115b2be57aaba7fa28717b21bd3b2a5fa952e44ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e1c5efe0011a7c5acbd13495efaff3fe6b4206684c0c070d9131809033ff75cd
MD5 3a5cfb04ad41333e4ca3935e8cbb1863
BLAKE2b-256 02fe1a5dea4d667efac179d5783ad42d20e4fdbcfa21f5298d344ee58a3b3f21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b34e1ab66b9597a80634582cddb3c89dd1ef83e75d6be61f123a1f294e14c9a1
MD5 0411c3ec7a1cc7be19441456601bae63
BLAKE2b-256 124f9b12c89cac885cc0406b16b18ea159eff64378de4567623e747a148038d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f983b0aceb303699c69aaba1d214626de8210052c313f7a20644c0d68a57259
MD5 db4b7de2c9308e79202dd37e1d3f219d
BLAKE2b-256 0222647218ffaba190a16865b85f6c39412e6d2a67d69f0355fe9b5d9c05e9fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a288b8eacadb056588a02f6f2f50434a7e235ac4e4387f24b86fd29a163cb49
MD5 5a2c87922ec5e30d24ef9b46676cc282
BLAKE2b-256 1f500d5d6bcfb3102f537f3e57e3a12a9f268c5fcb215e38fa53ce7e644acc54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2fb02dee04b6d20304d2999d00bb949dec21ccfcb758f2c527b126e3023baabd
MD5 49e18a54ef335f9cec49463af3991adf
BLAKE2b-256 775779e9eced03e77b203909ab67a161cb94c6249133039bc7c27cf4bbfcc90c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a06b5c7b8ef5a6c76c1c2e651d171b8c60c396fee0867dc0677f082d88e9f5c3
MD5 ed441f85f06f61f17da67ec17970d1f9
BLAKE2b-256 4c9b6164ae607bc72f98ccaad18400cf1bf15c46f8ffa0ad39266ffcb3452240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba78bc8d9daf82a86007e121062f756a8396e3277dedad5abfaabfc327e7156c
MD5 b3cec4357587de00e72c99d02930e6d4
BLAKE2b-256 d2190c2caf590db5bd81c6103e33802f35b0720842a3483c5f1e00914ca05e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5337722e398b7e3746b403066dab7a864bb3701a766b856c51cdd39feac85573
MD5 277907a0cc9aa6912c0fb8de75dd24a5
BLAKE2b-256 3c7ab831b5e4265aff9383aaec18754bbe51ac113465ffac09085f8be541807a

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