Skip to main content

Fast parallel directory walking for Python, powered by Rust

Project description

██████╗  ██████╗ ██╗    ██╗███████╗██████╗ ██╗    ██╗ █████╗ ██╗     ██╗  ██╗
██╔══██╗██╔═══██╗██║    ██║██╔════╝██╔══██╗██║    ██║██╔══██╗██║     ██║ ██╔╝
██████╔╝██║   ██║██║ █╗ ██║█████╗  ██████╔╝██║ █╗ ██║███████║██║     █████╔╝
██╔═══╝ ██║   ██║██║███╗██║██╔══╝  ██╔══██╗██║███╗██║██╔══██║██║     ██╔═██╗
██║     ╚██████╔╝╚███╔███╔╝███████╗██║  ██║╚███╔███╔╝██║  ██║███████╗██║  ██╗
╚═╝      ╚═════╝  ╚══╝╚══╝ ╚══════╝╚═╝  ╚═╝ ╚══╝╚══╝ ╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝

PyPI CI License: MIT Documentation

Fast parallel directory walking for Python, powered by Rust.

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

Features

  • 🚀 Fast: Uses the rust ignore crate for fast directory traversal.
  • Parallel: Multi-threaded directory traversal.
  • 🎯 Smart filtering: Built-in support for .gitignore, hidden files and glob patterns.
  • 🔒 Type-safe: Full type hints.
  • 🛡️ Error handling: Flexible error handling with ignore, raise and yield modes.

Installation

pip install powerwalk

Quick Start

import powerwalk

# Find all Python files (errors ignored by default)
for entry in powerwalk.walk(".", filter="**/*.py"):
    if entry.is_file:
        print(entry.path)

Feature Details

🚀 Fast

powerwalk leverages Rust's ignore crate, which is the same library used by ripgrep for blazing-fast file traversal. This means you get production-grade performance for scanning large directory trees.

⚡ Parallel

Directory traversal is performed in parallel across multiple threads, significantly speeding up operations on large codebases. The number of threads can be configured via the threads parameter, or set to 0 (default) to automatically use a number based on your CPU count.

# Use 8 threads for traversal
for entry in powerwalk.walk(".", threads=8):
    print(entry.path)

🎯 Smart Filtering

powerwalk respects common ignore patterns out of the box:

  • .gitignore files (via respect_git_ignore=True, default)
  • Global gitignore (via respect_global_git_ignore=True, default)
  • .git/info/exclude (via respect_git_exclude=True, default)
  • .ignore files (via respect_ignore=True, default)
  • Hidden files (via ignore_hidden=True, default)

You can also use glob patterns to filter or exclude specific files:

# Find all Python and JavaScript files, excluding tests
for entry in powerwalk.walk(
    ".",
    filter=["**/*.py", "**/*.js"],
    exclude=["**/test_*", "**/*_test.py"],
):
    print(entry.path)

# Control ignore behavior
for entry in powerwalk.walk(
    ".",
    ignore_hidden=False,  # Include hidden files
    respect_git_ignore=False,  # Don't respect .gitignore
):
    print(entry.path)

🔒 Type-Safe

powerwalk provides full type hints and uses typing.overload to ensure precise type inference based on the on_error parameter:

# Type checkers know this yields only DirEntry
for entry in powerwalk.walk(".", on_error="ignore"):
    reveal_type(entry)  # DirEntry

# Type checkers know this yields DirEntry | Error
for result in powerwalk.walk(".", on_error="yield"):
    reveal_type(result)  # DirEntry | Error

🛡️ Error Handling

powerwalk offers three modes for handling errors during traversal:

on_error="ignore" (default) - Silently skip errors and only yield successful entries:

for entry in powerwalk.walk(".", on_error="ignore"):
    print(entry.path)  # Only successful entries

on_error="raise" - Raise an exception on the first error:

try:
    for entry in powerwalk.walk(".", on_error="raise"):
        print(entry.path)
except (FileNotFoundError, PermissionError, OSError) as e:
    print(f"Traversal failed: {e}")

on_error="yield" - Yield both successful entries and errors:

for result in powerwalk.walk(".", on_error="yield"):
    match result:
        case powerwalk.DirEntry():
            print(f"File: {result.path}")
        case powerwalk.Error():
            match result.kind:
                case powerwalk.ErrorKind.PermissionDenied:
                    print(f"Permission denied: {result.message}")
                case powerwalk.ErrorKind.NotFound:
                    print(f"Not found: {result.message}")
                case powerwalk.ErrorKind.FilesystemLoop:
                    print(f"Filesystem loop: {result.message}")
                case _:
                    print(f"Error: {result.message}")

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

powerwalk-0.7.0.tar.gz (39.9 kB view details)

Uploaded Source

Built Distributions

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

powerwalk-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

powerwalk-0.7.0-cp314-cp314t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

powerwalk-0.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

powerwalk-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

powerwalk-0.7.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

powerwalk-0.7.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

powerwalk-0.7.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

powerwalk-0.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (962.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

powerwalk-0.7.0-cp314-cp314-win_amd64.whl (769.2 kB view details)

Uploaded CPython 3.14Windows x86-64

powerwalk-0.7.0-cp314-cp314-win32.whl (673.9 kB view details)

Uploaded CPython 3.14Windows x86

powerwalk-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

powerwalk-0.7.0-cp314-cp314-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

powerwalk-0.7.0-cp314-cp314-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

powerwalk-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

powerwalk-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

powerwalk-0.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

powerwalk-0.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

powerwalk-0.7.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

powerwalk-0.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

powerwalk-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (962.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

powerwalk-0.7.0-cp314-cp314-macosx_11_0_arm64.whl (867.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

powerwalk-0.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

powerwalk-0.7.0-cp313-cp313t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

powerwalk-0.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

powerwalk-0.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

powerwalk-0.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

powerwalk-0.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

powerwalk-0.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (925.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

powerwalk-0.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (962.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

powerwalk-0.7.0-cp313-cp313-win_amd64.whl (768.7 kB view details)

Uploaded CPython 3.13Windows x86-64

powerwalk-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

powerwalk-0.7.0-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

powerwalk-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

powerwalk-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

powerwalk-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

powerwalk-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

powerwalk-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

powerwalk-0.7.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

powerwalk-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

powerwalk-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (963.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

powerwalk-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (867.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

powerwalk-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl (922.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

powerwalk-0.7.0-cp312-cp312-win_amd64.whl (769.2 kB view details)

Uploaded CPython 3.12Windows x86-64

powerwalk-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

powerwalk-0.7.0-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

powerwalk-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

powerwalk-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

powerwalk-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

powerwalk-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (990.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

powerwalk-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

powerwalk-0.7.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

powerwalk-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

powerwalk-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (963.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

powerwalk-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (868.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

powerwalk-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl (923.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

Details for the file powerwalk-0.7.0.tar.gz.

File metadata

  • Download URL: powerwalk-0.7.0.tar.gz
  • Upload date:
  • Size: 39.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for powerwalk-0.7.0.tar.gz
Algorithm Hash digest
SHA256 1b30113cf61fcc462bfa43532de5f85de3ce083cade7aedb6e0723a50395e63a
MD5 dd65f4fb66b96a5a9ab66b350048cd40
BLAKE2b-256 656cc5fbcd06f348c1d5581f32d13423916fad342ff116fa8ad276dae2bea082

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6060991e0b643c568c32986e42117e23255fce370cf9440c827eaea9b2d624b1
MD5 553b47fa80f8b8c18bebd3a215a5d913
BLAKE2b-256 3c828c03a63e915316270155fb6b6aab941d460e06ff3b23e25b0115980aa978

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 adb552481ad2af09e4d193ed0dab2004e4cc815e2f9d976ca62d2b0d7c750f03
MD5 4b96562bf1984a7e335b405991c9134c
BLAKE2b-256 95cacd37effb8d4d60c069166928f3a5a178454838cf39d77eddfe4cad520630

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6bb16baf284c7175b51f5262762600d1dd194e1f3ae2775f76f21adb7d4fbe1c
MD5 2d89239bf10f2dd90839deefa412ac0e
BLAKE2b-256 91ed8190e2999799f9f7ab73d1c9bf516d7b2b0d81cb28a0633627d1cd6c0b91

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbed3a891282f089e3fdeec853b243ab7a5a57f46185ca3289daac6f627f3ba1
MD5 a010327ccc672a2611828c3cb7912355
BLAKE2b-256 f13e523205663c5011d0b20eba1baa1017c2f22dff88a338f8b26cfb5b42c0df

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32e2a2cb00ba3d357af47ef919226bf521fd7ffda9cf70ca9c2acbd64fd2c2a3
MD5 dae95a545d8f3ff9842aef9027a28793
BLAKE2b-256 524b8cb46338b7aeda8fa69558d71ec184d3ac068a84b7dd7176fb06b95c7bb3

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dcd989807727b92528a182b9fa599284f1a24dede2a183e6901c9642436fd50b
MD5 80ad2da38b6cd43c38444fa8779b1711
BLAKE2b-256 7caa3d1cc8d48d0e7393643c32766ccc9d878b0f3cf06616a520c06522c83ef6

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20976839474fd7991479f99a8f4c55f2c53d5da7f3162b7d3e2891133e68b6ae
MD5 6d4d6b7a12d96c590bb4f1ecf6a62471
BLAKE2b-256 ca4c622e290afd86c44df3ab4c8deece271b0f5fcc8c30df639e0bba4ac01c19

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19d5c7212fe7d1394f906cb43c9836db40a77aa231d83dfa9b07202e96dd6768
MD5 da873db6871105bbfaab53233594ccc2
BLAKE2b-256 1ccb87a8dddf358b0d6ae8d993aa533468f9715ffe6bba64df4e7afdf72d6185

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dc693ab0e97ea807c7278edc5cf0cc6bcbd0711b287f240081a8aa9a07966036
MD5 8d4362815845cb04068df4641a4bc0c5
BLAKE2b-256 029131ed1715a6267b54b480c0e045af0170d09c430669b8a5f36ad280b655a2

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: powerwalk-0.7.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 673.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fab5df32dc5ae1dae6790a5eb42cc5226d243058f2764fed481050d377c16ac5
MD5 d31f1f957ab900f2512f19f5a5169c18
BLAKE2b-256 14ae7d48d685ef9f30be669331da3223ac8263e15f0e3a9630688c96a4fc67b0

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b865546505690943eea630f0c59427b814a515cd8e3e537a19f7d7ac468df7b
MD5 74a07c5fb57953af3a13e63b73e4f401
BLAKE2b-256 04b66221e91faa4c232455c07525d4b955009920b808eb439c8cc62cc8f87a4c

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d81c47a1b963d5065b9dc9bc75764364c603b38977857bf448e024d8a360ba8
MD5 baa4ef68155cd4833d4c1742d2bae46b
BLAKE2b-256 1b8011ae49544d375375added449c3bfd22b83037de0a0915673f4b028f904fb

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f74bdff1744311a840aff4faeff5e1ad12e7a80d54be7d93ee6f55f2354317c5
MD5 36cddd483a11859f3fa3a97fc689175a
BLAKE2b-256 8b0b64452d4b0dbedd0b75364383e94906137e39a880a2b09c8e59eb997b5aff

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84d6920a49d6363482169e5f3d5a42cfa51065c3eca906e1eac33dc589a321ed
MD5 ed3fa556746bb2256b9a310743580ac1
BLAKE2b-256 6f911bb19f59c1e3fe5448aec15cb29c78202b19dcca70aa53a19f0c5c4242f3

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c7e0734d480f172f058c5f9e2c8c141e0e062e529e6bd5806ceda1918d67208
MD5 a93a8d6eafb8f84d20fd1854bf8de11c
BLAKE2b-256 38ac1dbb5432c8569e161eeeff27a76db0cdd19de170dc2f88ee71cb3a19c57b

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f8075f8069c10e5a6844fd2ab2a9bd0f11df0730bedd2711a3d4f98912af44fc
MD5 e75d409173af9ef4dfb50f0dc9ddb44c
BLAKE2b-256 d36550c6bfad57b01194e3ade2a06633d12363f80c7cfa45b044cbac24812fdb

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fdafec97862e055f91375c78d8db027edec51cabcf4a0204c49e258eaa7c758e
MD5 0ae83ff8903160db33040b028f0a53be
BLAKE2b-256 8a822234024f27d87806250d9935c80c48356e6ef7bd9904734e907c821ea83d

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f195b22dc82826ab9feff82966401332d3164dadd325797c685d78d06dc3703d
MD5 9a0c667271536be730f4c858d36ebbbc
BLAKE2b-256 3e01355581fd0a97766d8f3109cc5a92b7f912684a29cfd30cee8f8e84f8b483

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa8f2194156555fcb9eb08234fea43628d53ef38d255cccd2943fddb150eedcc
MD5 092b82285f966d3398588206bacce232
BLAKE2b-256 952d4d0648c17dc5db31ad5ad75c86adb6780e56825e9eeafbe91ccf76b45ef3

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87ba217203d7ce0805d02b40f462e3c7266c1dc5c7abe17d98d5c1330810144d
MD5 d17f3e5cf105e7c755cde07e33919c56
BLAKE2b-256 9df5a4c5e7b4551349b0429b9a264b0b8075acb267c8f2e42aa4d87dbd12d3de

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70a3b3b5af3d318ef2a7bbf1e24fcca71d5d3e53780e6b79c863cd6a3b454b22
MD5 c45d4e962fea1005766970cbc5a147ae
BLAKE2b-256 d2b2adc524f234b324738f2cf959e75ce7478d828018d626da5070440ed3ef98

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20a81343902ccf55e7ebf94756b238448922d399a1ca5c4bb778a7f3d41bb70c
MD5 38bf73d1423fccfd1e64aab87d8c6836
BLAKE2b-256 f80e03d9d48998f2246bea2e46aa97840aa2772eb562bc87bacb01cc392b888f

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4aeadf27b88392b1b83ed785c85deb15ba09c861e8b4b60ae8b428d373b0bbab
MD5 3944b956fb4352f424fe6f3f1c2dc25a
BLAKE2b-256 f165ec08400882414ebd0976e8a3af9322b01a15dd6a090d79982a4f352ea5a6

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d2739f1cf60fc6527cc0d9f91494e2511cd99b29be575c2e0381b5d1ba3eb72d
MD5 1d58878a5c3dab21d2ecda63495712c9
BLAKE2b-256 79629acbb41b2376784e26d78f56d77cf6b9bc642705829cd13d6563dcc28a9c

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7dd0eac71608ca70e361c7a5b1fc6e587a4f0213c983e6ace0d35a2e7c6c675d
MD5 c21182e3615bbceb75f4cc20903af8ef
BLAKE2b-256 eb40d1e3d5f3bb6be460b4c6508e506e1b40e007be272673c55e8028fabec99b

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1270c47d5e68058dbf7d9f51be1d9ed076836542119eb93b392635d31761e73e
MD5 a4097aef99aa54cf45d3d03df34d931d
BLAKE2b-256 0ecd75adc3944d5a895cae97e8925202ac8d46b5738b7147e6257215331ca5ad

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5fde4ae27c6747afdb35a987de20e797f6f0575af6ae830b588ddd3e67c93e16
MD5 d93796c62ed5077054fd0ac082f550b2
BLAKE2b-256 7615e7ceb0268c385add66f3a0e0572b7755c52f89f9017318098a55633d0e7b

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8e7a1175d6470c6702f7d6fe1013cc5283f0117c52bc53e8ed8411b36cd3a5a
MD5 e8ad9685a1fbf8da3a87df68e347c6b1
BLAKE2b-256 fdf7300ce4f6aea8212ab22f33f1bfaddb2c1e0e40eb00b41e5adc5a5a0d58f3

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45c3dd65430a9e5f1a4cf1b8b211b302116083743f2af2143e14f104132a5636
MD5 769d8193a22ad3900a761f6d447a20c8
BLAKE2b-256 d581fedd017b64e8267d11065d93c6e03fe7a99ea2172693efcfd83463d0c1e3

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b5c05672e2c33b5da43e641ec59cae0dd0c5886719dc9e221907952127f4c718
MD5 36075513d99dcfd73f7bb728fb81ce76
BLAKE2b-256 842d3580765d805c67afebdbf95986d4299c4a571020a8462c11402daebe30e2

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7417651ae7ec44aa9a64befd15a52b465f4f6a46ce8c495b831f0b0f058d4166
MD5 d59283b79018053b8a9d3493ce6ed1f3
BLAKE2b-256 0872c18eb1449ec3a80ff26eed178890c11e5121c8d5145baeb2785435349558

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7dfd1cf5e384f5f0a42663b09e0827582ce3acf81f97287220cba9c107db3125
MD5 9d5eb1d8f9e261338b800c35173519fa
BLAKE2b-256 2a166934e72fc74d74ad6421b22292247f2de4b405c8e9f9bad67aff357422af

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 370d342426428e3f6b91ea7db8632f9964d57829f3c7ea97786e19efffe889ca
MD5 57a05c919f9ffc38681c6e75054bc65b
BLAKE2b-256 5d097bcfbeae1970598b46a0977411ff7522d582fd13b2f6da3cb3b5eb34ac60

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f66333b206f3830d667e7b00aa832b1f347be414275055adfab4e8b85ff2ae49
MD5 9e83f826f99a2c8a7d38c7d594f747b1
BLAKE2b-256 a6089183dbb44aa2020c4f60fd9376517ce4b31e01f78af6c0b78e456608596a

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d896621c76720a24e8a276c6eefdc504aff024edf2c70b5d46d2a8cd6f3885e
MD5 a1cfb7fc06e5fa8a5e9c7fec0a3bf061
BLAKE2b-256 98a0a3bf235b0e882dcfda3bc9abd68bdfdea4d63c72875c3cd1c942381a7dec

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eb2c1953d92cc966e1b9b3451b1ee216167659a2d9d658d5d647a52b6e0357e3
MD5 7d38f0791744dacd6a4b81246ecc6272
BLAKE2b-256 55acc0bf8913ca77c48643f1b1886dffd1392108ca7380667d3d9af8d3412118

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b6ebacd4c6c08e77a8c29e35a9269bff43c515d06de3776486555debf7ab11ee
MD5 33423740b363eb605902cfd350a6ddaf
BLAKE2b-256 9e63132a9279b637a23da47cc1e25d825662f87906a34bbb1d6fb7ff01bbee4c

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e6612cbea203452c2ba4eb8780581370150fe873fc3c01f46925acf1cc70473b
MD5 9d83d86c05cb20ae5a9453a09064de42
BLAKE2b-256 ea401073ff33a995d6270c43eeaf2f9ee1e4d6b3611ab62ff2feb5f7f5079807

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f6051c27b8ed6d9736c520b31cc9a7ee126400729c174efa20321d0a316873d
MD5 c77205559be1244e2f9d1d0f5ba00f65
BLAKE2b-256 f327c94de91f086ba69aa6cd248ed94c15d8888b17899a414d5dd1474264cf14

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0750bf6a09deaed7f44b8c991fe1338744eccf37392e333dd6e54680c10bb2f
MD5 e5e9396f2a71f74797445d3d23a8f8d4
BLAKE2b-256 3409d0bebe323dba44004832507f417486ef560847b12c56dc3d5c6534e0fdca

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b0f77c0d46fd6e0f605da2ce48cebf0cc66c4d45e45f56865fda829a893e846
MD5 a34f8ed156d77ab3a11de2d4c9a38dfd
BLAKE2b-256 3f79c8482f8f4e5bd4b5b88bcd9df2758a45e787e17c655bbcc593a94592b42d

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a001b5cb2745413fd22dda7803dafb17c2a3e92f1c11896889631ec68c9bcef4
MD5 c38de0dfca64f12a76473c38c54a74cd
BLAKE2b-256 029f3178b4e6f823d13140e67512ef3a2eea86911ee407377708693df62c3384

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ac53d842998f1909762b8e7cb085c3c9eba15aa2254cb2d41dd52b57d004feb2
MD5 6e56cb03029a9d6adb0b3089a4c221f7
BLAKE2b-256 405c26a4db99a4e5fcc284a1387f8a40f0a9fdd1454208b095645555709c1e90

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 747f8aaf69d6dc7a7a91ea602996915ae5f5cf6a1cb5b2e19cc081c190c79c1d
MD5 395d41e6d11740459356847402c777a6
BLAKE2b-256 930c500a87febb8b65bad536edcc61a05f19fdd12c040f2a81c658fc115460fd

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1f50a7479e9d93fa011fffedc3847d26da439484bc0808c79ee68c53dbefba2
MD5 10379810ce0718a49daa2a49f4205501
BLAKE2b-256 1a951a59b6242e1613f0a6bc1d4ca27e885b22a0971a7168863c51b77f929215

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a0ec762df58057704aac62afa6cc28c86ee26da85ecfa99d29bc05ce7a286391
MD5 684bda3f40a325708fdea42e8d180167
BLAKE2b-256 763682e80a34d843f0f6cffe8c05786d295fe7405620b44309736bc231a07f49

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eecef37b964af8ce4ccd7f10596a4c5aae62b6d05b86d9838a898e457f320ee7
MD5 d6927c207b5383862ee243be7c3075c7
BLAKE2b-256 d6dfa32f7b9e1a791e462f5e8bd24442771aec278f66e2a89e524d0b94961969

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 647ca99a478ccfee1c1781e6861831112c8e07afd018576081743372fc9ef984
MD5 cfb0a193e25285cfea2e2d8a02ec364c
BLAKE2b-256 a47c5595b3787ba9fbcac19bc7f398da585e33828d9bb15d9efcadd1a119c9cc

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a662ad16410efea760ee9e956465d4732264f48705f59b6e5f48e7ed3b17a49
MD5 33a7622749d5f9e0996fa466da0c9c45
BLAKE2b-256 52faac5cfcd9350ccef967ca080710407b05e624f972f572166bbf71793079e2

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b7de2381ee666127a74e016dcec85b4ba2d0a8e1e606855cc52f37e08dfd4e8
MD5 25426fa0efbe4b4c0e68c6edd8da73f6
BLAKE2b-256 215f63a59115522b106dad2768599d3cc276f474c40a1f793321c8e0e6bb15f2

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a415f0697c85e459c8d80e00acf2ec18f0f2492785d8fddb9ff0029bb292577
MD5 85ee59a18e78742a65a15d7bfc124f6b
BLAKE2b-256 bf0d8ea307744ed0f94a973f388280664905c0a0372e152ac7c22be1b4e0c55b

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25b3ccbc8d4ff462afd3509b034ff98fad730fe9d9ce603b82ed84dfaa43f186
MD5 2c70cd28e024ce032144f8b6b9af6379
BLAKE2b-256 108668f10ea89f3c3e54c19e6141daf4995364e8c229b05abee8a219c7bff8d4

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a25695eddf9845f45dcfbe453f4e00845121017fcc5ca1bcc55d2212c01a48ab
MD5 ea2fd8bd6e02718d2c7ed0f7c1fc33c9
BLAKE2b-256 84517d904db9e27cd98c3d88df73f559895f534d4355cfcdeac76abee71a38e1

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3c6fcf24c8fc3b7169dcdd669185798cd3b1dc99b4d0976fea7ee8164e77fc9
MD5 df2f74ab9271a3928be3d4e4a69cb534
BLAKE2b-256 29a6d9f9a0fb71102e02e15fd6502fe1a5a5ca4036bd7b78c947483a33961479

See more details on using hashes here.

File details

Details for the file powerwalk-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for powerwalk-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c02a9485f3a6a844aa01dac47993868d47dd902011af446700d2882e8be554e8
MD5 429066e554ed37607ed9cc2089486d13
BLAKE2b-256 4902d829173c3a60dca0bd74fcf70022f90620138a48ed3c5cd14272506009d4

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