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.3.tar.gz (36.6 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

speedywalk-0.1.3-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.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (999.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

speedywalk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

speedywalk-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (999.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

speedywalk-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

speedywalk-0.1.3-cp314-cp314-win_amd64.whl (754.3 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

speedywalk-0.1.3-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.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (857.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

speedywalk-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

speedywalk-0.1.3-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.3-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.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (950.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

speedywalk-0.1.3-cp313-cp313-win_amd64.whl (754.2 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

speedywalk-0.1.3-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.3-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.3-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.3-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.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (857.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

speedywalk-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (930.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

speedywalk-0.1.3-cp312-cp312-win_amd64.whl (754.5 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

speedywalk-0.1.3-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.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (998.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

speedywalk-0.1.3-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.3-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.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (857.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

speedywalk-0.1.3-cp311-cp311-win_amd64.whl (754.6 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

speedywalk-0.1.3-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.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

speedywalk-0.1.3-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.3-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.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

speedywalk-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (859.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

speedywalk-0.1.3-cp310-cp310-win_amd64.whl (754.4 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

speedywalk-0.1.3-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.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

speedywalk-0.1.3-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.3-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.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

speedywalk-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (950.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for speedywalk-0.1.3.tar.gz
Algorithm Hash digest
SHA256 2300170de1de734d7e37fc756c22f199f9a918425fc1439a473878490631d2a5
MD5 5aa2c0d67f6f90d789cc6b2a880b4b1d
BLAKE2b-256 ac37f54ccd478bae74492ee1c86ef7df9131619916449f7fbc2e7f4ecf5a5ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98e4dae05e7d346903990ede1cc57a28140d64e18729161bc2da02ef757a1a4c
MD5 29ddb83d4320601f6d8f1f690df25e23
BLAKE2b-256 6489cc3209a98a911ffdf38fb0dbc598f12ad420eb14d57575781bac014a1c6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4833e50861b669fee88f7ba7bf08c8d49e2340ef8f23580d87a73c49a71bd7c2
MD5 48a4990c28734d6deecb01f17499867a
BLAKE2b-256 cb5b639c5616cbe13098e65277bd4af8e688502da9bd8b4ddc14545aad06c8d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae87581b28f92879e3a01e1ac8cda035b135e33e3245c62b7ab168e8e37bfc65
MD5 f90637124457107f1863830fddc5672d
BLAKE2b-256 1ba01d2d6397fe7dcc2dc656755243cb442e0469816c98ce66290a82641602a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c95984d68157afe2445926735ad483728ab9e711a003ad040aa190a08d60a44
MD5 fcc9f9fc580344eda2547b35f8433fec
BLAKE2b-256 00b3231e2962885eea9088ab1a69e23625b0850853706967bff29de691b260ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd93a6d0a4d5706fe26c638ff8871617a36963fba8ab7c9983f57116793ca486
MD5 4d20131bb353acbfcbb9a8504b9bf2cc
BLAKE2b-256 1a2a60e4e05ed21fb1dca7cf78e8f86bcd0bbff9fd6ea000073b744fb2bb534f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe594b951076a22569d390cafa13156d96f9988929632d76aad33ef6e7823469
MD5 1f1ec8c06a37d4903eddabe6046064c2
BLAKE2b-256 a1d2d79736b511fcda3609fc4b787fb36961f5dd48fdd4a83bf23783a9304443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db08ca14bfeeaf02bbad5a577c20d824fd2223317a8866032bfce2329a894d8e
MD5 d3e04a7feb8e77dd82da33e9c8da9dd5
BLAKE2b-256 0f1a72fbe93d628f0cfca7954d0382bc344acd62212345616f1298388d609348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8be4ea4eb7f486f3dcddf60f3839befcb354de69bf360de149efb92288bd03d2
MD5 970678b090f6c2a68cd244c0aaa02e5a
BLAKE2b-256 a43abc13f19f883e39618fe6db76e371cea8af4f0b7dc4b65f35a0c9035f8aaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18841905181dfc0c7b056a8a1903aa506992e4f78889491ec22f4b2e0a952ee9
MD5 eae60401adfb499b1639bc807f324aac
BLAKE2b-256 8b3dced9eb5e5a59c4416822edff435abc6f4af86ed6d79fe0076cc82cff4da8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69eeaa64b7be8a1027a3d6921fbd4bf3df3f5a239c96dee3fa01ec6075bb1f7a
MD5 a1de8da55cf93bd8657ac5423bb5773e
BLAKE2b-256 604df264f11c802aa6bc37fa0682ba7241e0bdc21a1ce5b94d796d1933e13119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8baa7539bd911714045c027c08d5ab002e29a997ec9e98c1355176af931a1c30
MD5 deccd60d9817f04333f0b66f99ad31ed
BLAKE2b-256 556584397a914a282760f83c88c52df5a0b9e441dd005f8b19d79ec020185af5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 467be78501e85054d22125082a244fdc7a305e7f2a18d74e08fe9494fe9cb645
MD5 333c0d73272897038aee04b16cee049d
BLAKE2b-256 c4ddd31f50bb7389a2cc63ae3e53b3cb92ebd23f0461c47ebfb03262303ebfb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d26e69fe94ad5738b5b4652fedc864d37ff7518a907f152854393e19f0a990ab
MD5 c1125f6da658be8ceae8abd1e9f30f43
BLAKE2b-256 1ac15bc8268604fe744e99e519f81103c051a82ecae114c6acde93982f692ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73bbbbc5cd4f9dafa0e816f51c1f4ba113f05d72a1517f34734b27f0edd65206
MD5 395b649a152969a9b4f0683d8ebc1a73
BLAKE2b-256 c51730e82df039322766ba2354d896cf3ad6772b5605e52c0c33c892dafc41eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9cb407d3d5338800163651ad68b4f8fd4f2b069ea2af58e77b0c4bbe9fc84be
MD5 d8169f526a9a8ea3d44efdc5bc083b6e
BLAKE2b-256 a38d93822395da3fc258fee948f5d7c7f22da00764a4a81158e3ac3a1e204d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fba3c8ad855a0a019d6b3c1400269cfdbd19d88c53de1fc27e71f0e3ee332d72
MD5 374861a4a9536f83ea0fadb89b098e45
BLAKE2b-256 e1ec3b4a4b3819dcc0b881beeacb57c903069811e8043a94f1136c5ed0dc3eda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4dbb9e8ca5df0e1ef01c65c7d4f787957089f3612d15297a057b062dcba0a7b
MD5 8d574327b7496d88366310ce0a526920
BLAKE2b-256 79b23ad75aaa0d664c20310aac535615dedc337d8dced1d954c8cde5a0c107e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb9b3444d532cff3613451def6ba6870fd6ec8eacb3819181fb2ab11b3ca9d3a
MD5 05b63bc0e930e83387e557b15e0da06e
BLAKE2b-256 3e12b9f55b1ce5b100e847d0daf6518135faace0b68c6646b62da7ed4901d891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c4f689977ff86854eb6cad1011f3a2b862b1b26cc1c9e38bb68f4aaaf0151fa4
MD5 c125d45c750d90197533f7148f796936
BLAKE2b-256 ff323e2f432fbccfc3345f8c5b0d606f2cf65c7ba3659d819f06243002f5e14f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: speedywalk-0.1.3-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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 efa24e01af933b8dc40766c428b876353f8b7a5a3f36023c711519ebdfc6bd28
MD5 e96571abeb5dff724f80eb7488f4c5bb
BLAKE2b-256 8c8e3c6280ece385ff7e15aa8a9f88b0dffa3870a514e1121a4efd9c0e62aa60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 747769b237099374bad899dc8c629f53300b1b7af5cd9dad4e80f6b4e47b7d6e
MD5 a722398842cb1398611cd47974004527
BLAKE2b-256 ce5546c94007045cee5bf7cbd506d43be9cde27c02511119bdf89b7364468c1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 677148784ac902b2bc3ca8310d567649fd58f5efebe09d737304dbd6c7a6149f
MD5 c84fabfcdd96380d69b7b02dcefe015c
BLAKE2b-256 f9e90ef43ec9b4a85665be145e294ea3833bcb0c3420a5536400b8826203bdc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 513e557b3cb5e7b50e22a8547efa888ebba5bc133572d5c383d451791c8f66bb
MD5 5d1de3ee98dab292f3e3f11d9d824f48
BLAKE2b-256 de5e4375ccbc1cc838f5ba6492bbbe4413b3ac9201e4ccab0053c9d97b68323d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38d5fed37164514175b43d395679e562caed0457b935f2bb329363a88c1744a9
MD5 ba513ae6505d3d291bd996bd3da25d36
BLAKE2b-256 abd873cfec44626fe50c0c8317fb21a01ef39ff1fbf50bf1e4cfd426fff51f41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6ffd127e5e72d798420d36e697669fe453fcb0df10f256a47a0db345ad0ba263
MD5 604d437b2fdcd40a26d9911f14e39f94
BLAKE2b-256 df18ad8df66cdd049e3b8593f385fb46347028f8ead616d786c0902d040e8a99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e262848709ed5237ec9a5415d36c58d672e694cc8df5575d3f08aa56fead1bd5
MD5 ce941d98bfe36e447214cb4d9d208463
BLAKE2b-256 7a94fbb9682ecbf199fc80bcb39abd4b53490a7069da901e8588e49284581f89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acafc67afefc5e15790b3bc442d7171257264b064038e4329ef32bc26ff5c3e5
MD5 00463df057eca27efad0d63d5eae40b8
BLAKE2b-256 92d6e998ade6615510042f12f5c6c0ce683732a9004eba2a7c79f2c5fc18919b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ece530abe4878da6b92b8b3fd605f62cdccb533b16a63f3c087236b42a650a3
MD5 560d3d29c31e96b2389cfe8c586acdbb
BLAKE2b-256 ec8dab23d07f24919930579dcac479d6948f9bd302497e9f15e7065c5ae949a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42ed8d4bd9c29268d9b00dd430c52a644cde1c918c188bd7859b44c0cbab3ad4
MD5 138f8081123e42be57a450d9bc9ebd5a
BLAKE2b-256 4483dc4e4c0a773d10f67b46206c7600b969d47aad8f08e02001b810008141fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 88f447f6c78ba4871594d121e26a0d8dee125ae501e80e77964586a258577613
MD5 ba9baca298d7bbbcac9df451c8eb3182
BLAKE2b-256 ae57eeccf258ddb4279bd966df1146ac61a0f414ffc24fefa6a16d23f19d356e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 299f1170f48f66b155f2c012a97907b7d2e4c416e9cbff787020fca4190ff251
MD5 1633b156c6988b837ad2d0f50a4dd27e
BLAKE2b-256 cb66d8eee716645ef3981f8dccc6afd7f4dd5e0480c06bd53b09125084d59400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ef6fa7f69ee8cbba9419e650583a87b89b7533144dbb1ca54fdde730fdf7e741
MD5 8f1090cb9a0e099c39b0c0389914e2d3
BLAKE2b-256 0d8188865d6083fb1127156b7ee3e4dd94f2d5a6250508b1de42358442986f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41fbeda75e91b1c3c40eb5c49450ff82f943a7676f44ee2b2f138be2f47ed688
MD5 a147449872145ad53671441fb1f54ed8
BLAKE2b-256 69ba1cfcc82f689e2d0c0bbf169dbd45760c437dcd1e47236579204f93ed120e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0abf0e17cfa838c60685c8a8edc4e710d0247fc515d7f18549184ae23d66e0a0
MD5 25c31af9d06b947389ab000de7f07659
BLAKE2b-256 a7e85b6fb0c3c6727c7b2e2a1543e0fcf3af93dec6a2728f2cc1275b59a84cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d1a3471f9a70672d76d5fced97c1d0f6dc526077a51b7fd09d3a5156d03fe9ca
MD5 429efb31d6c3cb1949eb1acadce63f5e
BLAKE2b-256 0d45f8dddd888b14770b53f8768b126a834c8bb95b766e469ca9f844d431ac91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f0f8aafc1b18369715947e023de88354a246869ca510eac67c8a199bc0ac7a1
MD5 516cee1102c64d10c029cd8b69948f30
BLAKE2b-256 7aee4516e164c23d22505c075def34dc37c72abd7fc0b5a1687e9b20bd17b23e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2956e29952d62e15c06139ad66a2ee9562ba40c21e7e44a5020f34d1d1d65c48
MD5 1e4b3917db7513c68f63f53e8de288a5
BLAKE2b-256 4e0fd24348f2b55a50f63a8870e99e30d7c94802306cb83695107a5c92d65d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fb235175c9305eb02a751f3dde520c31202e6cad4774c0d7ca7f6f13b685987b
MD5 38dce686733f612bacb32e0a361f1998
BLAKE2b-256 aa9d67f088d3ad88e6b619fafceb2970aea4fea8bd134da7f5e840d8eb8116fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 afca6ff68b0d81d3312867e9e48354b62811ee5ec2dedc69ad6898607693551e
MD5 81eb68921dcdf0ef6b25d2fc81b8eb59
BLAKE2b-256 779dc3299404662e07fff5ff79c9472f16dff6a2ac9c791d24e75733f34b1c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13d1fa7cc2456598b7c1cfe41e4a6ea1d1334a5bbc037cd5743c4ebdb725da58
MD5 413a7ea4d4c4b4e652eddf0542365340
BLAKE2b-256 59f3cc198954831cbfda7831ea4e3405e18b0c6f289f253f4dfbc6c1d0b082c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f39229c3cf476a9b35993fb42c1bb84f6f1bf09a9a38320657db373e045f7ab1
MD5 7b422fb20ec422369f7853864ee93bab
BLAKE2b-256 a4b76083ee5ffdb549e15f9b506b409f240e8370600c127d2f2c3eb02385de5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd6f3c3caa0ab02543a6cbbf74d01af38cfceed5b6798d0216bf1b39321dca86
MD5 528ec5607c1fb0f00ce2a3c1c58dfa6b
BLAKE2b-256 4392b28cd02840a2b38ce2dc537b351fa6c6d35a1d68cc1da38e2a4339d11421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 865317919ca9ab62b9017508448b341c83aa5db3a0b3677b45920a5fadec8113
MD5 d94a16cb96f195ad69461ab4511d6e67
BLAKE2b-256 7df1c68b9d5ee971ca7183dcd703f12e6f79be95af484808f82e8dd00c599b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a923625ed6b6629a7f0286406e6c4ae3944256e4d737e8d6686d5b9605ea2497
MD5 9d2af8936c9a6e85139654dc8fb8d0a3
BLAKE2b-256 f07bc4fee753de593327239052ef820c3bb62529936bb97831ebbd7c8ff2ebaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 25067f02bd375a60c41a8c70c3d29825882105a82d7e046af6fa03c11e6d5047
MD5 0e0128bef01678991594de5fd02b2df6
BLAKE2b-256 ce37845b057e98f7d0a13b4269a56a470ec750835e1006a827529289ad143cc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b8cf01d1e878a8624318479a1fb93692208910d2771c444cbb57a99853c48dc
MD5 d721c7321af0bd9415032dc3fcf76f33
BLAKE2b-256 e0673d52e0ad7f3997479828baa7647f9bc83af6c2b58ca359384592cbf765d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2253178860ee59a6a74e3f07f71f7938dbb85c459d3d56f055534d27a69d61cb
MD5 0a2a30c510c9aa3881c60fc03cf5e87c
BLAKE2b-256 cdc36a590dcdc443fb5a9058025e6ff1e8475be5e8d9a56c6e8e48e284c97791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 089a4aa8522fc7f38f0e213578fc6f6e8430738543b47bf3ddc1279bcf3ad18a
MD5 6abeddbec0e1ad9ba789d81810fee10f
BLAKE2b-256 909ea4f26beca363c3d417ca743e377c905616f5c085dfd68dd4f79f84f1946a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce65d4bdc16fbf492537853db8fb47b268ff7953805ccba3d8b08b1a2cfd9c7b
MD5 53f7569474d823b71a48274acb3b240d
BLAKE2b-256 3f3f73a189abbc727e244e36149464b59785ce919ff9b7ef5633da3d60645571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b901328916b5071576c2f8f63ef1862338c92991e97076ef2c44b5dae4780a82
MD5 382b6188d2738a0a33068785143d95be
BLAKE2b-256 71610f32713ea6aa86ff28535478bdd5776badcc169a9227e338d6f8032c5a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2cd51575254a6511869e59be454ff4b5185c87690bbc4f1c426b37e76879ff01
MD5 8bb5c873fd81571f462613b9c966340b
BLAKE2b-256 b3e7b478392b09cd7990ef0cd9be831fff51bf84c18318681c4d9e0a17142694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a839d3d41834ba2b3075fbcfe7a7d92a84451008cd9c2f1cfffdd8b7fd35b423
MD5 535f98819ea9539743f0c81b3de80caf
BLAKE2b-256 97b5f2240cf88751d28058610eca691dd0bd6908bb86d3899cb6283291e0098b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be30fe66414c8668e4838f82e889d1fafb72e9edd5b2c48ad3d2f03c17d0f001
MD5 fb1151050e4e6d1fcb5377a8d32415cc
BLAKE2b-256 6f4da6413aba9b15f2b0534d3987cb102b00261cdfad264f4420f92ef1859945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d384508b6b1e72f0650cccded894f7fe1ddeeaaf0c0944867b42de562c42b3b5
MD5 a995a2c3543945b8d19310c542c9a598
BLAKE2b-256 4cd516362f760a7de842ac6c44323a47357dd53db221a8ff700b28128cb48597

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 360728f8836b9883b3304fd5b865ff5e5267e0611eb602c76ec1b51b7a64975b
MD5 972430977e6824846ff4f8d034ea7136
BLAKE2b-256 1a0b85548e64c2996b139dc729d4aaa2fd63dc318226184cc47268be0cc845f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e3853bf5bdc2889a3ce7fa62abf9648ab11b41117ca65448df2eb0701084fdd
MD5 0b04ee4e48fb82cf57425b575ef12a2f
BLAKE2b-256 901caa57715ba58c39341c616c97e6c112d8390cce9b78bd3eb82c3c4ff36777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 edb8dc496ad68ecf59cb2854dfb88150627be9ad8074debfddc794a71fadcbb3
MD5 8cb2e9224c26159b03818eeca6081627
BLAKE2b-256 bd7b7fb80cf1a99e55cb167e9211bdb63368b0b61a6488f0c127a759290b4057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 566b481b2fa682bcf5c0e4b527d0a0e8bb204e84ef34d63ab3f6d0beb83eb7f4
MD5 95bfaf107434ad570074155353ca9def
BLAKE2b-256 c0ee846cb43234dda42f4d65356c0989175bcc779d4eb4246b4b00ba836fb72b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48dfed173bc5cfa87aa681d88dc2af34c7234a6c87d5b35b5f4db0b2a380d605
MD5 d1a256d26b3ac137dee628c10be94637
BLAKE2b-256 6550c885d7837d2c7bc824727ab00d7532d7534e39f281324a66c097da845fd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f1cecbf7faa46aea4e6edfffe1aa1cbf90d1aaf0c0939e03404ec6081faa184
MD5 cebb3318a7b59772f4634549f2e5453a
BLAKE2b-256 23d7512da850421d97bd2b37cabdc4ba55ec286daa6d2e046d7bc41cff3eeba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf2151ffdc49049c277958d68f6456e14a09de3fac9a8efa58773bd94090d273
MD5 8846926e0e6be0a2cde54ad72bc598f8
BLAKE2b-256 b37431aac3d770b654f9ac4917457755abad36d552a13b95cf6d1af5b7b294ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39c3f5512a53e50fa6af6f0d9d7783c37f418938a936f33c43a2830d0d788f91
MD5 34e3f5323f5d91b029fd9688a5daa5b1
BLAKE2b-256 149ceee85e3c41b39d35065a3db26c6622c6067fb9a3ed5a24645ad8f9f1d687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a772c65351d68128cc2496d6167b7d88044d8f17fb3c6c95e1872070c3527b8
MD5 a79cbb22b671d6d2db5e2d9e15a9d4c5
BLAKE2b-256 00ed8f615663cfa8be18543d21b8d4d423d25b9496ac39930235a7db4d31b294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1dd29a0df68fcb0c63371179783a988909b386daf93f8ad94178e1473d0967a
MD5 1e7e19a285b48ab892f228a6e1ff312a
BLAKE2b-256 dcfaf69fa410b79d16824aca7b7a4bafac9210631db8eb598aa68b802c9e34cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3008987a89e2bbf55d05820c56cf4b7118078c0bcafbf54ebc94d902daea55bd
MD5 1bb9a855a5943dfd06088e2a3610ed63
BLAKE2b-256 42c7bf081dd0a6330612b9f03cd11650701bc21227216c08cbc13147ef296f93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5f634da8ed7b02b59a74e1d42407b5179b2f83b76254cc27a6bc09d839f88dd
MD5 b3c35acf18d2cf01d5100d4b2d24ebc8
BLAKE2b-256 aa73a3b5bacd2cbf28800922e40719510aad58396e2b32dead091d106ca1b6a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03ed25662fffcfc69a134289c87bb51fca896d893527291de355e5f2a2fd64be
MD5 e3a8963a479076d7e8fc66588d7547a3
BLAKE2b-256 a5cbd1f99b4dbf7d0297d2a0169c43e273d8cafbb1d613148e79f6523582e5dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a7df07292bd1c90acd594baba81b0bfe48e41e0a3e7356ecec53b16d2011861
MD5 542da8d19e4bf502d3e607e1a06aaedf
BLAKE2b-256 cabc030f4dc66f7a9c3e9e933429b821fa215449b6f6461b1767598dde485085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b2b7a35a9243e62edced5153c931288667b848d397de36bd29af3f1ac7ea784
MD5 9bd8cb850b057ff225381f53127dbf2f
BLAKE2b-256 419f24739fb652081be802170299365af99d8c769081256a625cca97a98d56be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24376aa5c08fddb93715d064188d70dc6a47d91cca673c658b621b1f0b562e41
MD5 51e09b1bbb9a6470a9332eea890f3039
BLAKE2b-256 a536e6b7911eff233ae29e8fd144426bc8e8a74f05618361b89c8f485673f77c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7ccd093c5d32aed367f30e1b9b6d725a44f6b3549943ac8821db999b9d876991
MD5 322550755d5453cf57ef6c72376339d1
BLAKE2b-256 9d19198663fd3e27a9df746b7d61a994988fab76e1e41df27d66ae06439592ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31577e8990c36d567da33a1e8edd0e5bc5fa9099bf907ddc28f2e54832a1bf48
MD5 4ee36ee6cdf28e6e03bfe01007f27bff
BLAKE2b-256 074ad99b6ef21cdb4d455c36fdbb65d606e0da89cd06b72321317753fce2b0ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3c9d5b57a4f65c8010f22c9cf36c7507481d2edd8269aef19c1d1136a7a21e1
MD5 a2fa616285204f3fb2b29b68131a0484
BLAKE2b-256 1018ef666bbe1d55466256fbcf5e8a04a8cbadc56c544b9678151339cd9946c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6972192a982afbbb72fd8372a7f88b6c8b9bd41e473d43a2f91acccc96a0cf00
MD5 7c145b29db5d225992fed7d1f8ea4c13
BLAKE2b-256 e08cf2dc2412d825e641496521f63d708aad0979aad61765f987fd5413fa1a0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12be436c9558dcd350a0a1ec705c3e0fe064913f7f3eb3a4b325291757dded57
MD5 51273a07be716f4382e9ed34988d0c4d
BLAKE2b-256 24e0879655a55b1c59b3afc2f400036cbdfedef641d3683e0f99513576e1fbc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 884d8e7b79056868f8fa683913409737c2558a01ee0d0b0561aca1a159efeb1b
MD5 e143777e1ac35056804a5d592f225f6b
BLAKE2b-256 4b89624b2521daba10062ece1cb3b93efc679baf70a665089282b99823d45c60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e73d7ed35620067f477e33c9c36a5683ce2a44fb07c458658013c70c8bd2ffb8
MD5 5ef51fea5ea3c8880282e9c942a2401a
BLAKE2b-256 71dd4809521ffe5cb6bb0737f160745356d9104a42727ad957fd7737ddc92041

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d5954da6d103e0035d7551984c942cfbca119e6dfaef96ad2dc3a736e724a8d
MD5 524d97aa6d3c3c653fd12ce2b1bbee0e
BLAKE2b-256 3def537164edd4c5f69f89d75f484ab469607c453d145f511c29ddc2bc40e772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 22289a217e83fb9742b81547f060e0acfa2fc7038d2976e2fd812e17ad1c674f
MD5 ce909f921b232906a096965bea1beb05
BLAKE2b-256 7d7b52a1765a7cda544beb6cdfe3dff9b09e0672e685048e9b08be34f12aa8d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 136e78e5b53024ad691372d8f8b2e84ca96ba72637bfe365ac58adbe9ab5d7a0
MD5 7da8319bfa03b60e8f9af97b36c532b3
BLAKE2b-256 9239f4469869d4ddf5f8c7ede0fb2ac584df5122380b1103edd2a01b6eb1a0f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for speedywalk-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9663bf99a78b5f756e3c299d86cb777a056727176c7118c0f18b0a615d325ab
MD5 92d649487b5e685c0f68b17c35ca3478
BLAKE2b-256 758358af9d2fce4522a2b99acf1417aa8c0761ac2381e6680f7e9605d5955373

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