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.
  • 🛡️ Error handling: Flexible error handling with ignore, raise and yield modes.
  • Robust: Built on the battle-tested ignore crate (used by ripgrep) and includes a comprehensive test suite covering multiple platforms.
  • 🔒 Type-safe: Full type hints.

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)

🛡️ 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-1.0.0.tar.gz (11.1 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

powerwalk-1.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

powerwalk-1.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

powerwalk-1.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (961.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

powerwalk-1.0.0-cp314-cp314-win_amd64.whl (769.1 kB view details)

Uploaded CPython 3.14Windows x86-64

powerwalk-1.0.0-cp314-cp314-win32.whl (675.8 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

powerwalk-1.0.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-1.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

powerwalk-1.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

powerwalk-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (961.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

powerwalk-1.0.0-cp314-cp314-macosx_10_12_x86_64.whl (919.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

powerwalk-1.0.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

powerwalk-1.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

powerwalk-1.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (961.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

powerwalk-1.0.0-cp313-cp313-win_amd64.whl (768.6 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

powerwalk-1.0.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-1.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

powerwalk-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

powerwalk-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (961.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

powerwalk-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (868.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

powerwalk-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl (919.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

powerwalk-1.0.0-cp312-cp312-win_amd64.whl (769.1 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

powerwalk-1.0.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-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (990.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

powerwalk-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

powerwalk-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (962.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

powerwalk-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (868.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

powerwalk-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl (920.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for powerwalk-1.0.0.tar.gz
Algorithm Hash digest
SHA256 17ed8c4c6b42934ce8b223d82a9d8a3e39d1df04ef897fada03d0846030188d3
MD5 4678fdea94cb01cd1ef924cbd07b2ecc
BLAKE2b-256 883fe78d6e9ca26474c1ff677dea60475560a29a0fbce398e2ed08e92da86a1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe4b8009f4b36f41d155e5560528777b545a43bd4096e0305ada6921ef11f567
MD5 18b4d32e9d0c9fbb2e81409b8de42886
BLAKE2b-256 a91b7a36d2398b6d8e6cfdd8ad8d7059158edbc714bb15ce2c8e7339f4a960c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c288503f74c1aa21e8dcfaa0cfdeaa4bb7c16155115dfa03e4a68a96b9003826
MD5 fd5cd2e98daee25816dbc48c2623d27c
BLAKE2b-256 c3b6b9840a972f491a8a832493d60d0894f9179526dc517597e593755501b1d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5385ccc56f20ea3929d0c947bd660880ff8f75247f96caa551e50260a661730
MD5 c32e2d98aa5a9f05e19c2c3f79dcdb08
BLAKE2b-256 10c061a9fef7447e8391199790f14cacb1ab811423003c19350e8428395c3a2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ac5c4e6a94931da666106f2365f7c5e5488e34db9f7cda2991c1d393e10f0d7
MD5 23df1087ad950c13bff9e85b71922002
BLAKE2b-256 6528f186d23a80d02347ee164304b901d6efd668dc9d15675be2010a151a6001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c47a8948ce687f5252f5ad06425b7633373470b2a64a70bd50dd4039d6a64007
MD5 1c83110c3931cd58472142c0832288cc
BLAKE2b-256 ee454ee509a6e58d56ca90c56985e5c847114b2e6a647fb76db4047f8e886f69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07453a6f2d89b08f0b45de287080af3d9c6691e61884d637a9001230d25067eb
MD5 fcedbf14ddeb4827b3d75a99402874ea
BLAKE2b-256 be4218a604278cf87aa0d6af4e6c5da343908bd7f6bf45c837ffb235009dd5fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb86951e0018708bd20dcbf97f2c4461fdb33bd95c543bfd3083cff50fe26a4e
MD5 676a410e8fa20f51562046717dcdbdc1
BLAKE2b-256 deb29a5b537ff0425cc1dbc6480386c92d2d809ab9e339fb66dedb8bc9fd6cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b9eac03e5206a369f3b29c4ec1894187dc233d7419448894c4b0845f0e2df26
MD5 5463f3d843f7fc8f1fa554689c14db63
BLAKE2b-256 7e405e28ee0781803d8e92bf187a7889ce2edda861620505a981c072eac6048c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2a027dc469b833d252b6bdb93f4bf5e4f91af25db62e8d048935bca1e1ef3c8a
MD5 bb0ba6aef3bcd6b6c38da7bb79d89f73
BLAKE2b-256 3c3fec5225d9b0aa96a8d8ce5aa02a83ad9d30b51573c059e38cf944faf8c2d0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 74bed10976d5237591ed28e45c25b01e5482f111e9baadaa0a02db9986f4e721
MD5 392f86ab0bec2879c70b87587a51c397
BLAKE2b-256 cb57caf90c9192a5217a9ec4c8e1a019ce9a5d14e7bd0157dedffff3ee9aa5ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8b8ee429f8cb02940d295cee16c74e92367c2011ba12cd25c23b381aa5f069c
MD5 2f1b1905f283a872efdbd74247ecf4b2
BLAKE2b-256 6cf72411e91fc2c4bd8949e71fcd3aec9a9edc0531745c706fba6bbcf4ea1a63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b100a1dde5580dfcd8f825bb7fd2518af7a87d1ad2e22cc633ccc26611000478
MD5 a5e5077a152a773936b09ab15656e2c3
BLAKE2b-256 36978b11ad4a3d426b51b9bdd5e2a98ac2b5af078898ccd828bc74d5b233b058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c29314806c7c8e3ce5c1a023ea46b2917da4a289c6e1e3462da7aa27234752a3
MD5 ddb5fbca35a461af7ba8d4b11890e728
BLAKE2b-256 e250fa9ab3a1f9330b5b78686f96b7c84ec3def1904c72d7796308aa012d6d1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a61cf7d9883229e7e9976f5a9ffb2d02250bf6508d0204e18c1d01f5d52e614
MD5 2d27bfdfa1f3eedc6311a576594e206e
BLAKE2b-256 2ac8fa08cb2a76119bf7026de9c2f35e5d8652b0f2c8a3ee92f34c71a899ddb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df21af808ef00ba5368423512f862b475f837fce771ee023bec8eacf13215c4b
MD5 ec4fa79412c26d49a53bd8735f3fe683
BLAKE2b-256 c7b8a0a299e88ca7591f576eb050ee4c46abf83a9cde23a6441171ba449b7f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 634b96ce29d5384ac1ca421781820e659a9a69e46bbfff40b34954829ad68a80
MD5 a9d06db86c630f9332d2c6ee64abd47d
BLAKE2b-256 152c7e7cb9ac730e915a05a69e12638fab305a3ebf3086696d3f923cc82eece0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e147790419060417551b0b87453e9d5258fb54cead978ddcf089c796540ac18d
MD5 b7713f76b97c829d8766798f2e0214d9
BLAKE2b-256 79baa512d9eed38a00d93008a65ef4e03aaba46af98229b942a341e4d2981b48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5553ae55e76f6f08e21b9971792b0d0cbcdb7c750848a35f5c7c1ab2ab58fc95
MD5 f204e60149ff3405ca485c2d908c8a5d
BLAKE2b-256 f6391eda155ab433b5edf1f044cec3ea12c4bb4eb54a5c1933cb819fee3e4e9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71a8c5a28f5ab587a0cdfcffe30ff18d22da0ed9fb593e2cc56df1095915c979
MD5 9f374c01eb6891f2b2eb82fed7a19de5
BLAKE2b-256 57407ca2b23c1d768663090d5b43f32f09a1d0fc50970f858c4b8d9a939e1042

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cc4461f647a6fb3c37d8a0892b69393876d362b0d15d20c9a956333443e6961
MD5 957f1284a45d3ca77b165d82057062e3
BLAKE2b-256 18b84cae253a66f85033cc4cca2d50bdf7c547e3772c74c6f2e5fbee46918b6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba2c9e1cd69da02a798de1076ac8130b9f6d4eaed1aea23fe206f9e5b856347a
MD5 30ae0337c91d19a5c57ea4191a7d5308
BLAKE2b-256 1b314b9dfb1160c8a818ba84aa415b441a651c9203f4831945c71f144f0c1c97

See more details on using hashes here.

File details

Details for the file powerwalk-1.0.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0724a579626fb48247deac0097dce970242b5e62ac3d139945bedf5bdf922130
MD5 f0a39226ad5b0f60e22cb5d48500a1da
BLAKE2b-256 d5b9286fab651d1deebdc4a86129dd5d885ef93223d2cc97f96874f00a9e190d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d20b4d20f88ae6c33606824646451e9b6c2254702c6262a69656763905ef129
MD5 3e042543e886b6b9ee52c62f62524f34
BLAKE2b-256 8ebe5fce20451975998af39a63a89d18ffed19f5268dd39b7cdd9730ebae7e24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b4e6e9bd9a136a08f8de4de0cdc0ec3cc05feaf2a2f9a0ae05c70840aea8e85
MD5 082511a94adc78c36609929b70f91072
BLAKE2b-256 4b3dc9224841a91f343294cc230e597b0e518728ff2a6f43d43da0caf97a6478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85a7b86bd909b19ec246647cb9db5b6c54f30eec1ef32649fc06f40fd1656f97
MD5 76f528a3e630a3c486964f2ef09fa3f8
BLAKE2b-256 3543c3bebe939368bf5c9d035a94fa2764973b226b3a7bbe871a3c5d5e15204b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65c31e6ed7a28ceab266b6aebdd6290d0b0dbc2287efee3863cfb5fa4f7ead61
MD5 8c566a39394a2d46c4dbe7bacf6e1d81
BLAKE2b-256 69314e5ceab0522eb63923aa56564072b190b09d081f93be8f15dfac19ff5c97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a1db59a3c7d261abb461532dbd79d4b6386dc5717715e94799bb44956da1286
MD5 8490b0cb9de4418656a3044f2d82c74b
BLAKE2b-256 1fab4afd613ae8e57649e6ac926d06c696fe42bf590d35cfc619ab7590dff0e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b08fe83b12aec8dbbf112275c566a928a821262987d5ea9c5a4cbc8021869fd4
MD5 a2ebbf82d14328ce57af1e3b7d9b007a
BLAKE2b-256 c9cc8606f8eef87c33a0dad7bfdb40ee236052345d0722d11a0a181d52abcc91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3087a6af8fd8e104af9598edbc5e5929d9e864896b73e0cdc257940fbd3ceefa
MD5 3bbe762a6e085252d54b7cd2284d4653
BLAKE2b-256 07755e33930f8575255d97f044782fcd1c8ade4f623e7888965698f46dc8251b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3bf809c4f6f358b339bf8c3e55471ef5b21e06a208d63ce0e334ac6b7d9cd1c
MD5 63827b8acfbc071ccbfb76175f7c5eb5
BLAKE2b-256 c1a2eb04142603c0e13f71099b31c18eceed777a9d1129bde0098783d4532030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 174de9b98ddd4ee302aedb512802652878cffcba8e4ff8c2af932285b6e89b19
MD5 f538b6083c3cb9e917b73a77789fb4ce
BLAKE2b-256 7ea38394331d861e2d600729bebfd8e4bd966dacbb8fbd4743404565f7390568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a88a7aa1950edd2a8a113da589760a10d80db6604c90cad477372be7c1a60138
MD5 f4cc9ed0192d7fb9ee20b03083f86562
BLAKE2b-256 c4a167820bd381c5b565702bd8fbee52962f552d4df78f530dae3d2f0aeb8ad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a9405aa60fa7740549e775a07471a20e4ef34c3cf9d835b4b313cef0704ed0b
MD5 70652f9f363bc8be4eafac12a1c8cda9
BLAKE2b-256 93406279d7b36a3fb8b0315d1607221b17b73487e7edb4b50e0597eea4909b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a5b65b1b33550c2e1d42e97a7e4bd37a0b0cfed39b4255441184774cce87943
MD5 43a9c676d49ea2f6653ef6ad4cecde4c
BLAKE2b-256 5700f1ee086b51598fde9c8edfa9d46b482e26d84e43e6e03173b3dcc2dc5313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51d8bf71706d05d87a809c762d8225cfba64a6122be686e325efdea94c09da5b
MD5 60a61a7c5df646e6d0f20d5d87658884
BLAKE2b-256 ec1ad9957559a1a422af63f8aad907fb86aafa544b45d87a3bf6b72517cd9dd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59613fcd01b7de5c2a2d8aeda09ff4a252f9d69c4f20f54d8f72468495560431
MD5 b1da66306e2ccecefb079f4ea52c9967
BLAKE2b-256 68f8b673d154366e4d6376476f88df54e013a2a1974189d8202d4b24a021f025

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c7cdc5e929ba5d87ccfe5fca9726b5a3a22bf2ea98ee4fb5c5ecc6e01f44f74
MD5 b83149b975d5d6b4d1281695e4805a56
BLAKE2b-256 0449dd1346aae655d561d24c9b8956a7a37c8381f472522064760887dcfa7aea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f44a5cc7fcdd0a2c82d8e06c1881bfa77d8ae7974abaa9ca23fb6f6e4cd02a2
MD5 12fafa2595c99ef1950a0a7a7e39bb77
BLAKE2b-256 c7011557c69c1b0e8a7e82732d41f88aa66b8adc9aba75bf7b406bdb7df484b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f216cdaa1ec4c8507bc343d36f2886606bc36aad19d756236231ca5c1d8f94a8
MD5 137d030166cac64310c1c040861eb775
BLAKE2b-256 16d84a0e9fd6ca20142a3132cb09693f5462764a09348eccb7f4992997096ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f4748d9bdb910d1b8ec5235394ffb72940ece337b5840b8b0a84c74a65f56dd1
MD5 6cfb952cab2c8702b6b5964e4efe436f
BLAKE2b-256 da7341369417ad83f57abdc5281a44a94f68468c2d7be71c12ec0bc7e60729ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dac23968b71a33563968bfc7dfdca4018feaff01652ffb68dd6f012bffdaa35
MD5 b7cf97f9a6ad4a0e62fdfb014ea4a089
BLAKE2b-256 257b2dc7137eda88de6452bf8d9d9699f63677b55f7607c61ea792cb40864c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b94a3c823e2114f9fb704473568a1cf0bf03df03df656d0274ac710bb866c46
MD5 4a81d7fb5ef6a023cd5d7473bca3f54f
BLAKE2b-256 41ca4145aad2dfeaed3b0f5deed365d309b024449a1cb0fef703f860d8e4bcab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02367b329751f6dd3572d91282b980a5f2016e6e8b6bc32abad184e984dd4443
MD5 f00ee64f4b8f47ec999275e16bbcdefd
BLAKE2b-256 b2d12f574ecf1725b3be78e6fbd40e63f79b0e7a94bcf546d7a11167dd9c3f88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d58fd2dc913ad080c21c76f00031e9d32001a49b50f75914f74d575c740808d4
MD5 654448ac66f3fd4dc6bcc962a1fdbe64
BLAKE2b-256 bd0f3ccb74cf66e39b550cf0247c8e4e2c40c024de61df8f537c8d27c70cbbea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 425b142cc07e64695aa59fee1c819373571684ef4fa8b8f8416993f880b099df
MD5 216ae55c584896df8460650d9b510c6e
BLAKE2b-256 5b83e343158bbdad6e24605070589418f8e79fac96157d84f1507186f0a44ba2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03527b98b6bd1e53492a9f094f9b3e9b0290e49750dbf2a079682283313ea3c0
MD5 25fe81ec7350546261b8d2a88f099434
BLAKE2b-256 ddd0b62eb08559b96dc14ad7777cbbc2b37f012ae3741ccb98ccd136dc9abdb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b5b079c94ec0d3ff4fcdd253fbfc15c4f86cb80698c09102f8fa12b58df3649
MD5 e63c9b3a8fa7446c74d1cadc16dbd6c5
BLAKE2b-256 d65406309fee24f5a1d5dc81b1cc087a20d743543719d9460985907b884bbcb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c599f30962bf02cbd2a6b5f9a8ff0c8600dc1a37d18fb0bfc75903ea4bd06e32
MD5 981f7cdce03c1b719adc811171e7b44a
BLAKE2b-256 bfb5b14855b7551dab987aec49e09a88506227cc45fc5751c3fd3076bd2d64a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 320e4f3b78225b303a9eecc008c6d26296abccfbe4efab1f207bf54942574fcc
MD5 75e7321f1bb77f32d1a0a1fd93f0e369
BLAKE2b-256 e8638dad125ccb1204319eda96593e578b1a843801dd8ae2d844dd1528f24cb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3a17b2ab382976cad0b991e299f327842ae0a9406d07a1f160ee4c9db2c62b0
MD5 cce7d8bc196458f066b13710d6cc645b
BLAKE2b-256 5898634982c1433fc3ed3ef0f8c0b79caff594fa2d5e7186b766f42eeb3198ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a2a3b4271998f3914e573b075d599b122bafb5013c245ea678216c6c69c6494
MD5 d699a25a813b342d265ead46d8a9c0c8
BLAKE2b-256 df56fe4dd1b2fa93194048c0194c3470ed5ab486931142759284d14b7bd9bcdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c541cf3fe1f2f3b4a2c8afd071e55637cffce17e6d90bbb96bd3e2ee613f9c68
MD5 cdeb5a38ca9ed59f66a9ec6b552e5550
BLAKE2b-256 6f49c92c7bdf0b34dc70df9af3d7a1566ae2c1768cab027b3f4d41f1175029ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c680cbb3341e2c91b36fe2efcf167d5491dda83552935c886f8123a1298abb0
MD5 89e738b664bb4d3603098bbb0aeb0f98
BLAKE2b-256 e8147fd259942725fffd73a0f77cdce5449151f7528ca4558016972be5d6cb17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d5821b717639eff1e07c43dc196e3d361a0467934f6aea7d6f658dd15d003ae
MD5 5dc6d6eaa6bdb1274356ab106dfbbf52
BLAKE2b-256 de59c26bd88bdc99ddf93b6375725233f75406f2ec5c35a04ebd4cb50a1fd41f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7a64022ccd9118c33f4e69bcb910a034de1dbc4ff06878cb25b8ad1982d82a8
MD5 87fddac544d54381d5c5f955d5c2f3fc
BLAKE2b-256 19174c5f6711c7aa6affb0ca48df552899042966a0a91584e06020e0b86477c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for powerwalk-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f9ab89c51c5133b9d1dbaa99549eeacd95d08af0bd4cb52a80dc76f32b0cdd9f
MD5 6c2bb308de0f32f7d33f090d6bffef3d
BLAKE2b-256 7fbf9d65fe5db99e75c37fbd3ce724ec1fe02d99da15f20516750ab8b795c410

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