Skip to main content

A fast file tree scanner written in Rust

Project description

scandir-rs

The Python module is called scandir_rs and installable via pip. It is an alternative to os.walk() and os.scandir() with more features and higher speed. On Linux it is 3 - 11 times faster and on Windows 6 - 70 time faster (see benchmarks).
It releases the GIL and the scanning is done in a background thread. With different methods intermediate results can be read.

If you are just interested in directory statistics you can use the Count.

scandir_rs contains following classes:

  • Count for determining statistics of a directory.
  • Walk for getting names of directory entries.
  • Scandir for getting detailed stats of directory entries.

For the API see:

Installation

Either you use a prebuilt version or you build it from source on your own.

Note: There are prebuilt wheels available on github which are built for older CPUs which don't have AVX. Just choose the wheels with the suffix "-sse". Due to attestation restrictions it is not possible to upload these wheels on pypi.

For building this wheel from source you need the tool maturin.

Install maturin:

cargo install maturin

IMPORTANT: In order to build this project at least Rust version 1.61 is needed!

Build wheel:

Change to directory pyscandir.

Build wheel (on Linux):

maturin build --release --strip

Build wheel on Windows:

maturin build --release --strip --no-sdist

maturin will build the wheels for all Python versions installed on your system.

Alternatively you can use the build script build_wheels.py. The precondition to run this script is to have pyenv installed. The script can build the wheel for specific Python versions or for all Python versions installed by pyenv. In addition it runs pytest after successfull creation of each wheel.

python build_wheels.py

By default the script will build the wheel for the current Python interpreter. If you want to build the wheel for specific Python version(s) by providing the argument --versions.

python build_wheels.py --versions 3.11.8,3.12.2

To build the wheel for all installed Python versions:

python build_wheels.py --versions *

Instruction how to install pyenv can be found on github.

Examples

Get statistics of a directory:

from scandir_rs import Count, ReturnType

print(Count("/usr", return_type=ReturnType.Ext).collect())

The collect method releases the GIL. So other Python threads can run in parallel.

The same, but asynchronously in background using a class instance:

from scandir_rs import Count, ReturnType

instance = Count("/usr", return_type=ReturnType.Ext)
instance.start()  # Start scanning the directory in background
...
values = instance.results()  # Returns the current statistics. Can be read at any time
...
if instance.busy():  # Check if the task is still running.
...
instance.stop()  # If you want to cancel the task
...
instance.join()  # Wait for the instance to finish.

and with a context manager:

import time

from scandir_rs import Count, ReturnType

with Count("/usr", return_type=ReturnType.Ext) as instance:
    while instance.busy():
        statistics = instance.results()
        # Do something
        time.sleep(0.01)
    print(instance.results())

os.walk() example:

from scandir_rs import Walk

for root, dirs, files in Walk("/usr"):
    # Do something

with extended data:

from scandir_rs import Walk, ReturnType

for root, dirs, files, symlinks, other, errors in Walk("/usr", return_type=ReturnType.Ext):
    # Do something

os.scandir() example:

from scandir_rs import Scandir, ReturnType

for path, entry in Scandir("~/workspace", return_type=ReturnType.Ext):
    # entry is a custom DirEntry object

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scandir_rs-2.9.9.tar.gz (93.7 kB view details)

Uploaded Source

Built Distributions

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

scandir_rs-2.9.9-pp311-pypy311_pp73-win_amd64.whl (447.4 kB view details)

Uploaded PyPyWindows x86-64

scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (723.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl (760.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (780.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (668.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl (509.9 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ x86-64

scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_s390x.whl (549.5 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ s390x

scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl (558.1 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_i686.whl (551.2 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ i686

scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl (504.7 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl (502.3 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ARM64

scandir_rs-2.9.9-pp311-pypy311_pp73-macosx_11_0_arm64.whl (464.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

scandir_rs-2.9.9-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (486.1 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

scandir_rs-2.9.9-cp314-cp314-win_amd64.whl (446.0 kB view details)

Uploaded CPython 3.14Windows x86-64

scandir_rs-2.9.9-cp314-cp314-win32.whl (413.4 kB view details)

Uploaded CPython 3.14Windows x86

scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_x86_64.whl (722.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_i686.whl (758.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_armv7l.whl (779.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_aarch64.whl (666.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_x86_64.whl (509.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_s390x.whl (550.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ s390x

scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_ppc64le.whl (556.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_i686.whl (549.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ i686

scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_armv7l.whl (504.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_aarch64.whl (500.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.9-cp314-cp314-macosx_11_0_arm64.whl (461.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

scandir_rs-2.9.9-cp314-cp314-macosx_10_12_x86_64.whl (484.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

scandir_rs-2.9.9-cp313-cp313-win_amd64.whl (446.3 kB view details)

Uploaded CPython 3.13Windows x86-64

scandir_rs-2.9.9-cp313-cp313-win32.whl (413.4 kB view details)

Uploaded CPython 3.13Windows x86

scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_x86_64.whl (722.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_i686.whl (758.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_armv7l.whl (779.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_aarch64.whl (667.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_x86_64.whl (509.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_s390x.whl (550.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ s390x

scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_ppc64le.whl (557.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_i686.whl (550.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ i686

scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_armv7l.whl (504.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_aarch64.whl (501.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.9-cp313-cp313-macosx_11_0_arm64.whl (462.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

scandir_rs-2.9.9-cp313-cp313-macosx_10_12_x86_64.whl (484.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

scandir_rs-2.9.9-cp312-cp312-win_amd64.whl (446.0 kB view details)

Uploaded CPython 3.12Windows x86-64

scandir_rs-2.9.9-cp312-cp312-win32.whl (413.6 kB view details)

Uploaded CPython 3.12Windows x86

scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_x86_64.whl (722.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_i686.whl (759.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_armv7l.whl (780.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_aarch64.whl (667.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_x86_64.whl (509.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_s390x.whl (551.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ s390x

scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_ppc64le.whl (557.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_i686.whl (550.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ i686

scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_armv7l.whl (504.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_aarch64.whl (501.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.9-cp312-cp312-macosx_11_0_arm64.whl (462.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scandir_rs-2.9.9-cp312-cp312-macosx_10_12_x86_64.whl (484.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

scandir_rs-2.9.9-cp311-cp311-win_amd64.whl (447.0 kB view details)

Uploaded CPython 3.11Windows x86-64

scandir_rs-2.9.9-cp311-cp311-win32.whl (415.1 kB view details)

Uploaded CPython 3.11Windows x86

scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_x86_64.whl (723.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_i686.whl (759.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_armv7l.whl (779.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_aarch64.whl (667.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_x86_64.whl (509.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_s390x.whl (549.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ s390x

scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_ppc64le.whl (557.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_i686.whl (550.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ i686

scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_armv7l.whl (504.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_aarch64.whl (501.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.9-cp311-cp311-macosx_11_0_arm64.whl (463.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

scandir_rs-2.9.9-cp311-cp311-macosx_10_12_x86_64.whl (485.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

scandir_rs-2.9.9-cp310-cp310-win_amd64.whl (447.1 kB view details)

Uploaded CPython 3.10Windows x86-64

scandir_rs-2.9.9-cp310-cp310-win32.whl (415.3 kB view details)

Uploaded CPython 3.10Windows x86

scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_x86_64.whl (723.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_i686.whl (759.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_armv7l.whl (780.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_aarch64.whl (668.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_x86_64.whl (509.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_s390x.whl (549.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ s390x

scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_ppc64le.whl (558.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_i686.whl (550.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ i686

scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_armv7l.whl (504.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_aarch64.whl (502.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.9-cp310-cp310-macosx_11_0_arm64.whl (463.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

scandir_rs-2.9.9-cp310-cp310-macosx_10_12_x86_64.whl (485.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file scandir_rs-2.9.9.tar.gz.

File metadata

  • Download URL: scandir_rs-2.9.9.tar.gz
  • Upload date:
  • Size: 93.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for scandir_rs-2.9.9.tar.gz
Algorithm Hash digest
SHA256 6300240b7e2435a6828d3d6d8fed852b447136304d8249ff7a4130542edb99bb
MD5 9d17f0e33dcb6be9a848dd0006bf8054
BLAKE2b-256 eea7760172fde04124cb03e61166dd575cda3927d97ea5a8df6f7042c71b8237

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9.tar.gz:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 37064d6816a90c65afd968e1734275475acc5e62ff0aee0e2fbdb8911f0564de
MD5 d5c8d4e484c1aa856879bc5c2d2a5f4e
BLAKE2b-256 89a2f686c98c55afb586c485994379685ae798bf7eeef0413b478d562d49b06a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-pp311-pypy311_pp73-win_amd64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c54217a4747ae27a7f96accae3bcc37488de55c3256a4f7a91acea728bf81e85
MD5 6465ca0aa0693054852c1ce4d3c6e116
BLAKE2b-256 225441fd1bec74762f8ae11805b7be01f0fb4fea077c6b3a4b01bab73e03b262

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d807b60671ae18a331e0ffedc90b1d8d5b5dc88643046c8b6617ec01f6824cd5
MD5 d88a9b196de489f66bcb67cca428ef06
BLAKE2b-256 75f267f2e66e48221d88d00d66cc36ba9d3c1cfeaf648ad15c63ebd468c59a4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b950028ab09fb5e1062217c488f9cd1ba36c4e55a9d121fb4ab45548009f28f9
MD5 3b676255de5719b2ce44d3b1f53f8552
BLAKE2b-256 39312332ed34076d077dcba6da240c180023a1c5c9c51edae355958087f968fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e753750ee77a4baa23004fffb2ccc680ce339c840b7ba13306875f6667756c7a
MD5 ca7f1e771cbb92ed4ec3530f0b678d7f
BLAKE2b-256 faf3009a835114fc63760e0fc36004bff6f660be0f01b4eb09b8376e50a6f706

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 bf410f699817c6cdceeb968647b0eae30326ef4d0dfab76e85f59b46695dbfbb
MD5 39cc93506e0d081f21d2a670792b8e54
BLAKE2b-256 d0307c2c5dbee5b8208e10f4e7b53878a2b907b991a260a44133ac94fc38947e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 96cedc6cb0cc3439cd9050b73fef393744da27b984d33dfffc228021eb705a23
MD5 c7190c1e789fa96d05ce88313aa26bd7
BLAKE2b-256 19129dcdd0edf0e73d733215997c9bd857c425824e60f399397cc93c86bcfbc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_s390x.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 9dbed523c5540148f41977979246680425a3690a33351926ded03a2cf26a21e0
MD5 005bbbb3ce6ac97cc622564876bab3da
BLAKE2b-256 f183e4b748675058af3a910ca9f5a6949bccb776a2eb74d4ffb7a5be368918ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 b86582f2f19188e47f0a52cd27dba0d5ad4cb8022b6bbe63a7ca77902de122c3
MD5 70c2bad0aeebc0a5fdecb29a3192c9ce
BLAKE2b-256 fc6a27a5e812871f70d37a3c342382da4f5fabddad6bf6090c05501437f21742

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_i686.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 a4d8bc29d70162366da51a6e5d1caae2e69ce2216722512ad25525cece8a69f8
MD5 94f0934a72afc3068f12c4e392f1d586
BLAKE2b-256 2b63a4cc2ef6a2940f9214935ade7dedfa3ed608e189e4a2215214f76651e36a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 7f9be0b04f2e9fc43fee727f8c8cf59d4cf1852bbaac71a7225a1505560d28a3
MD5 f8a97b6263537a38498d4aa0481b0da3
BLAKE2b-256 3c8a30de776b0ae6ce0562b0d06851b63035423255c3fa9de74253b5087e9b21

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bf7ef9264ffea9b1721c26ef46f21644bdc612b1247e6232dc8b83618ed0c09
MD5 78dd431fc92541d0c7d8174a5114d8d4
BLAKE2b-256 5ba90decd17c2e052f1efda1d7b822f95ce337df40f4fbc283c51a344eeb19bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cc77dbc964ca2ddf80eb359349e03708c09a42af6ffeb7aa27d429534c9e4137
MD5 df1750705d69ffe2c19a77191b7d153b
BLAKE2b-256 178555365a34d40d7e8708bbb890e92590a7033fb76238613caf0224257846fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: scandir_rs-2.9.9-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 446.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5e3a08fe1103204e673845a78bf321a77da108b3228169d90433d4b9993529a3
MD5 651731ceb7609f9f1c0e1679cd4ca1f5
BLAKE2b-256 e7897fca62adf87f2c4799cd09c3edab92f979cce2d2a7f91bd154f38509231f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-win_amd64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-win32.whl.

File metadata

  • Download URL: scandir_rs-2.9.9-cp314-cp314-win32.whl
  • Upload date:
  • Size: 413.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0a312dafbc2abbd5e776fcc935e72a77b859d50447620c13fc991b24759c2dc7
MD5 886c8934de7e443e1e2f5807c1d49fd9
BLAKE2b-256 2a14abe16eee88966156199968bd8c6f840aea355b160efea63f97e6d5b88ccb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-win32.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f772ba082e7e7a0a893d998ef9acabd33bf8076a8968f165f15df3cc6ebfa61a
MD5 4566518bb25a3850f8b8c070f66ccfe5
BLAKE2b-256 310b6871b6c3a7f7dcb1945ae97481dec5477a40991f85f78c318b2a1e322974

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f75682b210b9d5e3fb7bd3aa07a58173db855184615e33bd97fcd42018231ea2
MD5 3c5c0a44ac3b685c7e36f5781cb5bf4a
BLAKE2b-256 392fcf719fb21bed2f5c977c46e0003c5814de3785fa3ed98538eb33e7305ecd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef3254beddb140f67b16312248dbdac4419dfe4a9c5e061e2762037eefe31b0d
MD5 18d9de1c796791a063d5bd026e48b68a
BLAKE2b-256 a343710ccd41099b06f629a903f487282a2fcd5678ac0881ae805500d4260a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 978822cd0f0a557743081f807a8b8b6a8d799e3f0b0eed7b3341998f8d86ef30
MD5 197f93f1adb93147ce86b805e7506e03
BLAKE2b-256 f401d33d16353ac8078e4f6ba1c573827c4fd36a25af66c1cb16b4b3f6822dcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 dd260fde61d64f27f4180abfef9fa74f5ae71dcee8e9d665b1593b13cdcb8716
MD5 11122c3ddb3034d734491b8b92912356
BLAKE2b-256 a3f25a6b78f715f84255fa39dc45a83a558b24da22975375a5ccfbad7eb0fcb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 38b2b5e1441126ce6258053d2f692145d67c9f8f12f32b267a788fd5f27f75da
MD5 5800f4f72b2b81c1fe9e6da7ba0f8fe7
BLAKE2b-256 505085dcc8fccb8cef564259410806a52fc99d05b82353729d56a84af0300db5

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_s390x.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 18654ccbffaa97cc1159d2fcc8dadc1c42625dc203a525fc1c3811bd53d1fda1
MD5 35d23d8cba63040ff548fdadc1390a60
BLAKE2b-256 dc6518b339458e36413ae6be7fac2e61949296ff085973e0f2964a31b744fdba

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_ppc64le.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 c975f676aeeef8ff3abc20e1e315abf758c5fb31e943717781e1a0fcc04ac2cc
MD5 df5bbd38601ca0dd836f169195d57fa0
BLAKE2b-256 f644dd92e70fb937a9600bf1f1d18de7f2cf09b29bff5356c8c2b51cdac0f4d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_i686.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 0e6a1b9572598f1cba840be8e38376b569e3f732cf893eb00bb7771e53afc672
MD5 2ecf5c040aa4e25e92f59f7dc327c68d
BLAKE2b-256 809df0ee5b35bbbc765b958208f363bb55268d756cf1aad47d4aab935d638f9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_armv7l.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 e5a794b987723214484eacfd68be747ded9de20d7d6fe7f1caaf45219fcd8e7d
MD5 c69ff25fcbc00343f45d55b90d4c89da
BLAKE2b-256 f23edbfee56c398a5cba16188e377f7ddaa5cd99f5174723f472df78f14a7195

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-manylinux_2_34_aarch64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ece44545949d20fa8ffe3b12e016be1bcd8a40972916a154763034e663083d8c
MD5 3405f0935c0b810b036dad357ff98bda
BLAKE2b-256 a1bd6bd3e6598104f9775d35cdebe4d7a3e2c644dce44c6c11ffd6156e03b5f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 795de186859e971c68da164eab8931f1d17fa3eba2a5652126b1887268946068
MD5 71e64cbb300c1512be8c2b7ab0ec81fa
BLAKE2b-256 07183e034de64e85102e6f282e5f8bc1d0f89174aae6a8125ed449fc52a18080

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: scandir_rs-2.9.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 446.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 459b331d020231e17a52efe4668a6b433c830b1f9734554df0ad541d0f4c192b
MD5 4efeace725d4d30aa03d72c3f74ab82a
BLAKE2b-256 65b63bd0164d005a9417d9a941398b6bdf3763cb6f40bfdd291f3258420703ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-win32.whl.

File metadata

  • Download URL: scandir_rs-2.9.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 413.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e56dd6eccc1701f09361fa3c87886ccc52a1a9bfa5b6af680a5235f47a0d25df
MD5 19f3c51b6c67e7870a444bfb4adb059c
BLAKE2b-256 e07b896c85affabe2a248865adb58f5537dd9a6fa5f9a1d23117319c5aae2893

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-win32.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e7af95aecc542d85e7fd7476448110117a4169912d858aa0cefd7515862b397
MD5 cd9acefeccf249ff329bb545f991e5e5
BLAKE2b-256 2143b4a479bbc37e7c59b339b69308b26e906e50aae68e32ddf7c452d2778f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a95f3637ae6cc4602220ba6532b162d3d26bfbd3d4b02550dc6c5a8b27b77140
MD5 b868ed10e8b2734d2d52d8be0b549472
BLAKE2b-256 3c71f8a6cd0b7e167c284866c2518718a76a2c4b3438ffadf3c9891862c37305

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 457ddb3e829f259103e6f5207e3949a8ab3a7818cf37a1e485490f5be9d607dd
MD5 c84f9278a134eb11bf47e81ec0f3b122
BLAKE2b-256 7be18c651b76213b55b9f17c98b4e26cbc16032b0c26e3b64f3a91827bd83bb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4cbe874b0049e3c7e541532fb10c22fff44c7696bec450cd30528b3b0d9516ab
MD5 023b011b6ac5d9d2d94c62540a27a86b
BLAKE2b-256 0a418f68831c36320756dbe148234c4a820d12c7b6b86984071b4c20d8e2a894

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d0491fb638e3eccf8fb69ac39fa9128fa66bc036b425383a4c4e41fb51fe5f3a
MD5 80fd4bc5aa952dca6faf5034f542f99a
BLAKE2b-256 973e66d0e49f3a81ac99f8640e5133aa039e9853011aacccf7f1ddc125995cad

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 baaa92a57fb76794949ec50138d78bd68ac59f4a7887a46287d54850e52279a1
MD5 e27d6703c9248ce2e249da15c52edf37
BLAKE2b-256 9012dfb87604db001d64f07690f66f76cee17b44639bbc35b0a2051a15ef37a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_s390x.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 18fb0de55c94973ad08414db1403bbc01bd098d534f3b6623115346220396131
MD5 bc10c294d9003e615feda0ec1a134f0c
BLAKE2b-256 766c4996bf7607d83e26bf2a5052f949156a604d9035024e5cfc0b4ae8a3b811

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_ppc64le.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 6b0283037f126cb8baf219f88a7b300c5c7cbe263fd49fa0c0aae3af1cfaf343
MD5 cb1d6f2a00ddefcc9eb96a06a9146ae9
BLAKE2b-256 0b9e1495bd4b3480715e1888e348c48f4da74e8a8848c4859aa1c2e552e5c1a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_i686.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 a99c2338e02968e3a9db456f61c4717ecd86722861ef932ee9dc4fe2b156e81f
MD5 a480bdde9d94a919b51800762a2bbfd1
BLAKE2b-256 0868e5044b00647b893b0785721f4be695713fa10807c8889939287aa121cb1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_armv7l.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 ca71b1559bf94a8c84811c98cd3b262a85966475129d0be2a541e133b987120b
MD5 675cf153195ae68010040f975639942e
BLAKE2b-256 c1d7bfe58597adcd64c9b4ec2691457bc80eaa02e9a2b1eb84d844e52bf6e3ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-manylinux_2_34_aarch64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84de3d5170a80836a24d8737313846620d79aa6a12268a684ade56633088da4e
MD5 69e4913b3f6034c0a2d7f87077ad6f31
BLAKE2b-256 18594a5f783056e8f769a17b5996f4363f8414c7754d669e177519ba42299ea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3760dd9184ed40c6c7bc7ddd26d036f6e2eb606eba90386bcdee0c7ca7296f90
MD5 915e6411b7487712ce158393a0f57e66
BLAKE2b-256 bc8d4afad972389f61fa526fb447cb900c2ec855b9f62f52c00e79e64d9f5728

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: scandir_rs-2.9.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 446.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9944ccd6b7dcd6b2bdaf2069735706145c79cfbbda445d4b20f625abc2664643
MD5 63d438fae1ad85ecaed4bbdc15a06d0d
BLAKE2b-256 927e0e19cd010ba5dabc9b258062d1b5c43856785270f7cb230c5fdefced80a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-win32.whl.

File metadata

  • Download URL: scandir_rs-2.9.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 413.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0a3277e40dfbaf02edfaa293548eb91f71a35827d7f8d3ee7d23143c00b29d39
MD5 532183d937a9142200c3933a85f2483f
BLAKE2b-256 ef30d65853073d3f367129df9b6b3a0022d0c76f65d3a4dad5e4da7eecb4a8fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-win32.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 947914952bb22af738d20dbe1a5a5da4fa23020328f1895242ecb448f5da44ab
MD5 04995381d55cdf383ec885eb8b3fcc9f
BLAKE2b-256 c50e65fa9035dda5f5b98de9ab89d34cfa4747254fe28fb6e8978dd46816b9a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05a9ec96f8cc852170a17150928c709d1c8569a56902d7af313c67abc14c92fe
MD5 878f93eda51eb02821f321550e4c972b
BLAKE2b-256 4a9772ce7dcdfb6019faebd5983e68ddd1c70ff93f97034cb0a302b1e3c104ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05f9d8fa5bcc656b9843aa3db1269cc0f9bbc2f8b17abc77704db7e6020c57a6
MD5 c5f38711b2899acf21c5bf707674ec77
BLAKE2b-256 868322d698dd14d9484a44340597b6570e9005f6d778cfc053ed4272e50ac674

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f40aa97355e3a6359c39240fae39c90fe52d9b898fbb7acdee6dbf891e7618e3
MD5 8bc52d68a9607b6e790bb3404f9de46a
BLAKE2b-256 0770fcd209a06921379de19b919c12d23ec79b9e5c65cbaef5d7b91737d03bc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 7b6b81161a52166f8503a087bfe5c6dbffc9eedf617a886ba2f596d6bb21efd5
MD5 0110b88bca820a7055297a4926a1dd92
BLAKE2b-256 18774cc7ddb42162bb51b208d0ba3ddec3e821c1c624729892324fc035560406

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 00312be2e87515e217c93f898ef3201f4526653e8a2f337e8ac9a56d30f169a7
MD5 68e7c60372646731ce171825610e5fa0
BLAKE2b-256 553fbde82f03b1129d9476b92ece36b5e365298f54aaac8ea95996084194684b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_s390x.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 f11c1327142ce75b21d02b8f7e06257c1a59fc929fb4dfb3849203efef9c0506
MD5 8b2bfab16b4d4a3c43b4fdc22921ddd1
BLAKE2b-256 54c6f483dc0ae99561083b8cfb55349068d75c061970322104acc19378b08192

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_ppc64le.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 5dfe9a3eb93095e1d2f2bf2ad470b7644218921b5dbc15cfb4366b7e23061239
MD5 30bf0366c43079b0097f895cb4e929f9
BLAKE2b-256 321fc0d4748fc73468adbd3f57048c1b6b70ecbb9c00c14b2166cf8d3b005b3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_i686.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 f32c17d5679ad11415c4c3d51fdbcc5a146e8b420c21ecaf3caaee6f5d74194e
MD5 ca9e56065b956ed140fd2c48577988ea
BLAKE2b-256 406061408686efc33abebc756650a676f3dd4c22885a9f65da9824bd43d32d85

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_armv7l.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 01eb9107e52f277b0fc0bca97c0d1d434d0ebe2eb3840c671014dfb77274d9b6
MD5 38831509e5ac581227192f1a304e164a
BLAKE2b-256 5b7b5b23f87ffa2d5d4cc304928d5d35697f47ad1ae4ca7f748957c1a4a85b42

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-manylinux_2_34_aarch64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa5dbb9912a52bf239d34d0b4ad0eb7e128379cecb6a5f2f4c7089d6d61f8c54
MD5 dd8970a8b70fb08ad0f8265135e0309b
BLAKE2b-256 0efc170ca8c891e269a4c293757f17cacba7a689962fdb8edee7335976355563

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be77be5951095aca2be02b9c680b871f90b7bee5025c791cdbeb6db12b18b1fa
MD5 32f8a7d038eb748f11c5c094d0b42433
BLAKE2b-256 f2746c88d632e6e0ce8c9cccdd50a004c794abc866a89a022674ed7d0b4f13d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: scandir_rs-2.9.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 447.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 995db206c65d612bbeec44e841346baca2c741b2e0e7262f6775f801b3d69663
MD5 14367ba04b3e200b6ea3683dd313d746
BLAKE2b-256 c6f2e17d6268b0d2d54dfec07baf1165f823a1737301175de7c61f7b9912858c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-win32.whl.

File metadata

  • Download URL: scandir_rs-2.9.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 415.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cb05f12653fd82fd6e82f6768e7df28e7e7621408f1e533dca72093fb2dc6973
MD5 a800cdc2cb0377527b1ed9c7c91cb4c3
BLAKE2b-256 bd773b1f4f31a1913d488b657745f0da8a9cf0c6625e73d7a51df771c2c0f35f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-win32.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d9b6881fc3cb0bce1996945c8914e252d321a45ea9175b83df09460b94f285f
MD5 5b175aa46cfc907d67e99bc000617a89
BLAKE2b-256 d00b4a261a34483f9830248f7c68d1eda2882305fc2bcc22839664c3dcdf55d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a6f8e9a08dcb0d7d7e27df57b532759c40c2db6e48cb7914b1ce816abfe3a3d
MD5 e704deff50ecadf8a74f4af601157096
BLAKE2b-256 4bbefae9bdf0e1e1e9339910660bdc8b26d97db91ed74873786b0d4f9d62b482

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 af4d37de381473f912404cdb77647e22c061d1838804e3f27efeb68f717613ea
MD5 3307182309bf908c80bf991b6d08cd8a
BLAKE2b-256 54342733be53002a29ec58e975bc7f167b911a39e160c6d8ef2e7df0b6c0533c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f75946c693d72b6665d67f0728cd0af1212952a99e5a775fce11ea81950ce98
MD5 7fbf1dfc41ba316647f6805d91f372c4
BLAKE2b-256 4a57163cd41aa8fe6239826dbceb584e96387fa74b39bf592c06b1c27b48d688

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 0b63343fbfac3cd28b643eb42ab7e6e859c980071ad53e06bc383fadcc533c32
MD5 17dcfeac2d7ad737d64e491a6bd47de4
BLAKE2b-256 35f90462239ae69f07611bb11d40911b5291be744809df398dbed3ab5572dbbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 46d16dc90243ac92fc1e5adb656e40d53f2bd3355bd7383d1e3ed745ec86091c
MD5 dc4b9df06a5655ef7b3de3a36ecaa534
BLAKE2b-256 361ecb79697f5180ab7bffc5bfbe63323f8a4c6dd6e41d318c5be5e62f36096e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_s390x.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 ff7ef8aba0bdc01df1541a06ed9242a2467373e24db2573c35fd45ec94e86c43
MD5 b2a5e43d3c5dcb7e3c9d9ff2c0c99ae8
BLAKE2b-256 02dde56bf08937249a51c02f6682e617f1bf50f8b18afb0034a07f2461895de1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_ppc64le.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 16fd528c0bf2cac00abd17fac975258af7497e0497469a0e6dcbe4fe0e80da50
MD5 99ddcf367aa2fcf0c8f6b7f094ecaf36
BLAKE2b-256 6768969009c9af276572041f1897b6f6c479b904fe76f6a3fd9cb001d00403c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_i686.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 ec4bef619b58e7b3483bf10361201a991f92e0ec691e2ec6c685bb4c9f5bf308
MD5 e121161848e7b06a37dec2f153b54cab
BLAKE2b-256 9f55d4d22b5779a8c72f325337216077501d37004e495b9478d772077baf431a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_armv7l.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 e502cffb41ea8a64d56cf308b8967b8e416710f235dd596007cf816052eaa624
MD5 38b413d301e795835f007ac3d4e30514
BLAKE2b-256 98b0ae8e1f89a943a06f942d1bb18f764f60184699fe50e92daf2b5ada461f45

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-manylinux_2_34_aarch64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b97894222ad0f085d6a8d88fd083f73b8df7041ac7806d5f0ad08f0be9c435d8
MD5 231f6b8953fbb45ac224db133d7758e4
BLAKE2b-256 59f020550da7604837eefc25e3c6c4be3632e8d1e8e5a4ab8d07abd994bd6ac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d26361cc910ba4272e3f1e9d41db89e5bed9bc868135ba59804cd776c5d755a
MD5 670ed462aaa5f83ae0b3623d2c1d1eba
BLAKE2b-256 04db73d7e9e107637b465f921a381dab86493cef87dfa3d307c578d000978836

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: scandir_rs-2.9.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 447.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d9bf11ebf4ae4b9ea6b4de87e65bf5bfe2c1e71ad236a771aae2c2ba5803edfb
MD5 df4b874778ecadc0091b06532d4d2c04
BLAKE2b-256 5f257c904df46b14e0d255abddfa9acddefb58ce17bc1343bdb4ef93c573783b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-win32.whl.

File metadata

  • Download URL: scandir_rs-2.9.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 415.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f97e745e7070a43d90a715ddf84981f6d23ef30f01cca29e2aaf77ad663113c5
MD5 3beb162cf045c21fc5643129a98c9537
BLAKE2b-256 bc5a2bb0a8726a39e8a368424123f7803d359ec2673e518b7a5e4d95caa8b7af

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-win32.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0fbd13f71067c76a0dbe83d6704b096fe91d30b881a3a99c726f9d2d3af4800
MD5 d52b695e4b5d7ad1e634188c73920e76
BLAKE2b-256 c5435f7b7f5ef9412e7f7a94996b69d76c584f4940000c74d67215639a642d5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5ab73171df212b08d4260a96a93d6525cb11e6710c4d672d7dcbbfa07b1ba0b
MD5 45facce3a05d2c995a17e3983f094744
BLAKE2b-256 d8649240a18064f8468f9c184319a429129725518b5c3c307e417c12355129ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ec2d9a242b2872032d77ab0e65b32420caf202ca047d1f98e2c1eee3362a713
MD5 9a76b11f72e6d13a4e3a9aa24501a574
BLAKE2b-256 2a6fa0c6fe475e8bb67465f3c2a02db168bcd77a6f4f360c05309b85d4204c63

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77bce0fb8cf7e61b30de246cd3e70c7aa78e01cee6fbd022a8395a1f5847e901
MD5 231dcb4b93b5331877307d0be6eb6b5d
BLAKE2b-256 9bd142bd8244ea502bb7ed2a1c0ff0705e9125d1da1c65c0c54218fb593241e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 b2c5106c3b9a72b3a6f6eaba2699d2eacfdf117dbd8187918c20d64fb097bd5a
MD5 332f67119bcdb0bfca445dd6237cfd2a
BLAKE2b-256 9534c994f61812275845c923b66d649ac74ca45fd467e8174d57c21c3277dd91

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 3d838a853803385b7ea797dd60e21dfa2906644fb915c80233939ceaad287786
MD5 51cb1f6fbbd4abe59c129f3a41f62ce0
BLAKE2b-256 d06998ed9bb4ecd05e7c797f75bffa67513ec346f9c1c30c56e1821d985aaf3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_s390x.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 45e4053883035243eee4ec36a1a419b30789e15a3c354363b106dc5055cd3255
MD5 1c2603dd6a7d2815c3444d48345d897c
BLAKE2b-256 6fbb8005a9c6497d4c01465f5d98715a3fd33a43d940e15a79f1f11925dd0a00

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_ppc64le.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 67617ebdf122ba6534fcb8fa4aa90923699b30b4991788da222e87ecad8e5eb6
MD5 6497a5aefb28ba7cc7198ee83f65a1f9
BLAKE2b-256 145eb5a6066f68b0fdb83f1dabe6075ba52362d6b84eaca2ae2a14c3758d72d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_i686.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 b01c0ad16fd27be7936be327b25eca4e36d5a06a3bff86c51c8725ee65887135
MD5 8b7f0d83e45f20d1ce78991a52dfb071
BLAKE2b-256 b9c47a7d7ee9e9d3f4c48a46719ff4f23172605d98e77989746d389e56aa43a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_armv7l.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 e70cea4d0c992eb0fe3fae4b2f55ba4263a8d004315bc63e09f59a9997c811bc
MD5 36b679eeef8a7236778da5c5f9fd59b2
BLAKE2b-256 901bdface752009101c4e02e900151ca9a7680a852503647a7992f25a5c54501

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-manylinux_2_34_aarch64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de45b52d91997153b90014f41461790e43bf801f91886299e50f81a04591f960
MD5 5278773147bfaddc88772832cecac5cb
BLAKE2b-256 011c8369b982fe1a19c2e6bb0baba5f62dbe8a3b7099d7fb368c5af2d6f46c26

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scandir_rs-2.9.9-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.9-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 edbef707405234fa8f83140859e33c67c34c530362ecb436ce9a853a1e51385d
MD5 01d5cf89dab4c6afdc9324c9e7d65a06
BLAKE2b-256 8aed0be30c1cc3ce9f5e190025dc998fc14e57395282a135a02f80cc1c92252a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.9-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on brmmm3/scandir-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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