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.8.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.8-pp311-pypy311_pp73-win_amd64.whl (442.5 kB view details)

Uploaded PyPyWindows x86-64

scandir_rs-2.9.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (720.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

scandir_rs-2.9.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl (755.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

scandir_rs-2.9.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (776.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (663.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

scandir_rs-2.9.8-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl (505.7 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ x86-64

scandir_rs-2.9.8-pp311-pypy311_pp73-manylinux_2_34_s390x.whl (544.4 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ s390x

scandir_rs-2.9.8-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl (553.2 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.8-pp311-pypy311_pp73-manylinux_2_34_i686.whl (546.1 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ i686

scandir_rs-2.9.8-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl (500.5 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.8-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl (498.3 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ARM64

scandir_rs-2.9.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl (459.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

scandir_rs-2.9.8-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (481.6 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

scandir_rs-2.9.8-cp314-cp314-win_amd64.whl (440.6 kB view details)

Uploaded CPython 3.14Windows x86-64

scandir_rs-2.9.8-cp314-cp314-win32.whl (409.3 kB view details)

Uploaded CPython 3.14Windows x86

scandir_rs-2.9.8-cp314-cp314-musllinux_1_2_x86_64.whl (718.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

scandir_rs-2.9.8-cp314-cp314-musllinux_1_2_i686.whl (753.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

scandir_rs-2.9.8-cp314-cp314-musllinux_1_2_armv7l.whl (775.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.8-cp314-cp314-musllinux_1_2_aarch64.whl (662.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

scandir_rs-2.9.8-cp314-cp314-manylinux_2_34_x86_64.whl (504.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.8-cp314-cp314-manylinux_2_34_s390x.whl (545.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ s390x

scandir_rs-2.9.8-cp314-cp314-manylinux_2_34_ppc64le.whl (551.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.8-cp314-cp314-manylinux_2_34_i686.whl (544.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ i686

scandir_rs-2.9.8-cp314-cp314-manylinux_2_34_armv7l.whl (499.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.8-cp314-cp314-manylinux_2_34_aarch64.whl (497.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.8-cp314-cp314-macosx_11_0_arm64.whl (458.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

scandir_rs-2.9.8-cp314-cp314-macosx_10_12_x86_64.whl (479.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

scandir_rs-2.9.8-cp313-cp313-win_amd64.whl (441.1 kB view details)

Uploaded CPython 3.13Windows x86-64

scandir_rs-2.9.8-cp313-cp313-win32.whl (409.5 kB view details)

Uploaded CPython 3.13Windows x86

scandir_rs-2.9.8-cp313-cp313-musllinux_1_2_x86_64.whl (719.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

scandir_rs-2.9.8-cp313-cp313-musllinux_1_2_i686.whl (754.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

scandir_rs-2.9.8-cp313-cp313-musllinux_1_2_armv7l.whl (775.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.8-cp313-cp313-musllinux_1_2_aarch64.whl (662.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

scandir_rs-2.9.8-cp313-cp313-manylinux_2_34_x86_64.whl (505.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.8-cp313-cp313-manylinux_2_34_s390x.whl (546.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ s390x

scandir_rs-2.9.8-cp313-cp313-manylinux_2_34_ppc64le.whl (551.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.8-cp313-cp313-manylinux_2_34_i686.whl (544.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ i686

scandir_rs-2.9.8-cp313-cp313-manylinux_2_34_armv7l.whl (500.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.8-cp313-cp313-manylinux_2_34_aarch64.whl (497.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.8-cp313-cp313-macosx_11_0_arm64.whl (458.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

scandir_rs-2.9.8-cp313-cp313-macosx_10_12_x86_64.whl (479.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

scandir_rs-2.9.8-cp312-cp312-win_amd64.whl (440.7 kB view details)

Uploaded CPython 3.12Windows x86-64

scandir_rs-2.9.8-cp312-cp312-win32.whl (409.6 kB view details)

Uploaded CPython 3.12Windows x86

scandir_rs-2.9.8-cp312-cp312-musllinux_1_2_x86_64.whl (719.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scandir_rs-2.9.8-cp312-cp312-musllinux_1_2_i686.whl (754.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

scandir_rs-2.9.8-cp312-cp312-musllinux_1_2_armv7l.whl (776.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.8-cp312-cp312-musllinux_1_2_aarch64.whl (662.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

scandir_rs-2.9.8-cp312-cp312-manylinux_2_34_x86_64.whl (505.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.8-cp312-cp312-manylinux_2_34_s390x.whl (546.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ s390x

scandir_rs-2.9.8-cp312-cp312-manylinux_2_34_ppc64le.whl (551.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.8-cp312-cp312-manylinux_2_34_i686.whl (545.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ i686

scandir_rs-2.9.8-cp312-cp312-manylinux_2_34_armv7l.whl (500.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.8-cp312-cp312-manylinux_2_34_aarch64.whl (497.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.8-cp312-cp312-macosx_11_0_arm64.whl (458.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scandir_rs-2.9.8-cp312-cp312-macosx_10_12_x86_64.whl (479.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

scandir_rs-2.9.8-cp311-cp311-win_amd64.whl (442.0 kB view details)

Uploaded CPython 3.11Windows x86-64

scandir_rs-2.9.8-cp311-cp311-win32.whl (411.5 kB view details)

Uploaded CPython 3.11Windows x86

scandir_rs-2.9.8-cp311-cp311-musllinux_1_2_x86_64.whl (719.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scandir_rs-2.9.8-cp311-cp311-musllinux_1_2_i686.whl (754.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

scandir_rs-2.9.8-cp311-cp311-musllinux_1_2_armv7l.whl (775.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.8-cp311-cp311-musllinux_1_2_aarch64.whl (663.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

scandir_rs-2.9.8-cp311-cp311-manylinux_2_34_x86_64.whl (505.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.8-cp311-cp311-manylinux_2_34_s390x.whl (544.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ s390x

scandir_rs-2.9.8-cp311-cp311-manylinux_2_34_ppc64le.whl (552.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.8-cp311-cp311-manylinux_2_34_i686.whl (545.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ i686

scandir_rs-2.9.8-cp311-cp311-manylinux_2_34_armv7l.whl (500.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.8-cp311-cp311-manylinux_2_34_aarch64.whl (498.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.8-cp311-cp311-macosx_11_0_arm64.whl (459.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

scandir_rs-2.9.8-cp311-cp311-macosx_10_12_x86_64.whl (480.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

scandir_rs-2.9.8-cp310-cp310-win_amd64.whl (442.1 kB view details)

Uploaded CPython 3.10Windows x86-64

scandir_rs-2.9.8-cp310-cp310-win32.whl (411.7 kB view details)

Uploaded CPython 3.10Windows x86

scandir_rs-2.9.8-cp310-cp310-musllinux_1_2_x86_64.whl (719.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

scandir_rs-2.9.8-cp310-cp310-musllinux_1_2_i686.whl (754.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

scandir_rs-2.9.8-cp310-cp310-musllinux_1_2_armv7l.whl (776.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.8-cp310-cp310-musllinux_1_2_aarch64.whl (663.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

scandir_rs-2.9.8-cp310-cp310-manylinux_2_34_x86_64.whl (505.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.8-cp310-cp310-manylinux_2_34_s390x.whl (544.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ s390x

scandir_rs-2.9.8-cp310-cp310-manylinux_2_34_ppc64le.whl (553.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.8-cp310-cp310-manylinux_2_34_i686.whl (545.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ i686

scandir_rs-2.9.8-cp310-cp310-manylinux_2_34_armv7l.whl (500.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.8-cp310-cp310-manylinux_2_34_aarch64.whl (498.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.8-cp310-cp310-macosx_11_0_arm64.whl (459.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

scandir_rs-2.9.8-cp310-cp310-macosx_10_12_x86_64.whl (481.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: scandir_rs-2.9.8.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.8.tar.gz
Algorithm Hash digest
SHA256 5858d740acec7a8c2943a410ebf3e65814bbb238050b797c3bbafa4bf2a2345b
MD5 e88d1e28e4d57dc05f560d580933543e
BLAKE2b-256 9e4feac4b04e0a8d796f50ccb11d9852d9f1a1d9b91baef9d1e7615193cf2ba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8.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.8-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 40917486e54ac7b7b0d8958269114cf510cebf894b8a2feba239cfee27fed4d9
MD5 a2fb8de0567560c02079969139b346f1
BLAKE2b-256 0ebbe30bd3c6981feebf07679b1d857883ca518cbbf74b2340a8458dd979aabb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c7fa93e7269407a3bf22dadb3e46f5e70d3bbe545f8ae90f3bf4c7e789f145b
MD5 b3b3be6f2b5b837bab6a08295794cc14
BLAKE2b-256 80043955fb66a4ae281adecd22bc722d236a2ddc1a5254506599bc98a098cbad

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff2b0b68d09ddd0edf5faea030060697f461a84c490002e24e2ae9de5d713da6
MD5 95199e13955c2d1fd627557e690f6afd
BLAKE2b-256 dfc9356ebe044a9c22c2757b8324142f6fc892d286d6369075eb335338fcac6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b6017487e461b6eaa4179bf873b2fd66e445463fdd138d61c6c98e90fe32f1c6
MD5 4dff337adb8756dad75ce69ef5c87535
BLAKE2b-256 fc8742d6a92c50e8e9a926990a3a9052c176bf1899716ad1bef780a9afeecbd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 938d1812e0d0ed18609ea8765d7a2f82d0b714be0a3166d869cd57138cfc64ca
MD5 cd654c2c606b40aeb2c44169e9870152
BLAKE2b-256 49627f044137e36da3fe7bbf803d43b572e27aebf39a6d57933bd3a5abfc545c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 e363b53824b0c2ab6bfe707a1a39aeb6571908b02af8cccdc8ff6bd7c90abcc0
MD5 f7a2e3d7cd9b7c5c8c1ad006286448cb
BLAKE2b-256 049899b994679b4fd9a5c5e9eedcf05185470365644d7f907526c47a085ba8ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-pp311-pypy311_pp73-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-pp311-pypy311_pp73-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 69b3c3eae87075fcdaa09ce0563b4c3f23655016ee9ce11f0e852d1272330765
MD5 0e3379be02051f034f8e3197c08bf2ef
BLAKE2b-256 a608607d6ec7bcbbd778bfd87f7a36071786a2d0b377cc5eb510696a6faa87f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 a0ed228f927e1179c0c6188b1e28b57a9a945ce1234f9fc51285359aac563b9d
MD5 914975400e72b07d39fbe7fbc22ae23d
BLAKE2b-256 4c4741d4eea7841e21830ec89f1702165a25fccee8616f1d71c2600fc11ddc9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-pp311-pypy311_pp73-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-pp311-pypy311_pp73-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 cf194f7d76a68afd6e7f77d84d35cf18e0afe733f06f746a18209a476877241b
MD5 9eec86cc6bedf959ab73b7527dcb7dc6
BLAKE2b-256 1c24bd9a0fdf16e506b8f4b04a7614324ebab1030e03df8a51edc22b90e10fe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 1853d7ff10d1c41067e305ab4263a2af8d4a3ba7a1de118a41562979da5a7d33
MD5 0b0b0e203116e4714914a0b235abb7bb
BLAKE2b-256 31e0461d608499fd2a6614049d1393a783a1222d87ba81c9da566b39001d5495

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9d85923c44a8bd79b062d776431833376f244b06e3bd177bfe91e8fcc4308437
MD5 d7ab3b084ae7540b0c210dd022b97de2
BLAKE2b-256 bd9f6e08e246de09351f0039c0ebdf09585c3be8954923fc1c9507744f28bd9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a549a09eb18b405bf865fa8b99a8476986e24a377d4815a48a5896d2e0a2ba5
MD5 43b1b49cdb35885edb9804870efac084
BLAKE2b-256 706d113a5491183ebcb1a2835e03945047fa86f665cc35684727b879ee79515d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52679a30162bf6c8d6d8b1eeeaed6d23dc4ecb76f865ff65b4052ff622af2eb0
MD5 78c79b30d087f04c24b636ec9eee1d11
BLAKE2b-256 480569d148eade1b7f4b3091be0ba40432b8419b12b188aaf94c8e9ca962dc1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: scandir_rs-2.9.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 440.6 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.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4811e29f47c48c7180b69387f3cd03aafd2564f666d43f521858104894957115
MD5 f2f868e48a54945a9a0e5f7970483528
BLAKE2b-256 2c7fba39507ca368dc91e84bdb8effa33be550781c500d0752f31872c29013f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-win32.whl.

File metadata

  • Download URL: scandir_rs-2.9.8-cp314-cp314-win32.whl
  • Upload date:
  • Size: 409.3 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.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6fd63e62bc5aa73408442883177e64ed8dc4e0ebe1ed36b3cfdde8fb8f165512
MD5 644678ad95d3235cba297463fbbccb25
BLAKE2b-256 fe83afc75b9cd790c5c159a07e5ac5d881a8d251fef33d7df2337a6e8efd36e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24c843ddacc887e21bc4710427d1fa57b67659a4cbf083d7f326458e9c81e3f8
MD5 853eb0da8d8bad083d6afc2153164f77
BLAKE2b-256 414ffdf7cfaf8e04b58d0872e59da100ef628d7bd68bdd0fcf999f38504019b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b427a1f51247a61d045c78b695c2bcba930c7f440e97fff4300d8fab9478969b
MD5 51bc554c71e5ac1aa71b3b1283df4be2
BLAKE2b-256 f2f031a914909d80a623981a76d7a58fea4001c4498e896183eafa2cc3dba429

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 174262ccf6425def863e6a9cfb0c6030f168f349eb3c1e3d32ebfc6d7738093e
MD5 a4d2432b8303ca6a79b34ad1aebd5daf
BLAKE2b-256 dd4bf86fa203a624aee81f91c32e3e8b128fc0d865e3c22aa775f57b7665ce96

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 baefc91e40cbb6544ef56710802b0ec374a7cf6dbe434e94eb603efec0d1f2c7
MD5 ddbc808c53a524c6c50a33164b33c6a7
BLAKE2b-256 c36a8e9eb82262f1b2af68edadf4663c6b7b1a23c40e03eb1cd5110cf4ce2db7

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 b21848e6c40fe3021a02b7fbe4d16aeb0fdd564f8e7e5c9506495b4baf821bac
MD5 3d932f6654e2ec0d1f19aaa2c5985896
BLAKE2b-256 a419a48c3369ace82b0b2cc4fdc059a203e6e031cd49725059a6424fe85c8df7

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp314-cp314-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 2a4dc36d9b165e524334ead76612697425bf683a1ab9f2da83d504e6c2f850f5
MD5 d14d01d2341879958a1eeb6ba55d74be
BLAKE2b-256 ba7740de1da087767662e381d8226801fa753cf15aca48e7e6cc5c8a12bd02a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp314-cp314-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 1c7c5d96c3a27c2d39de7658d251b07138fcbedfca5606c7e9bf06e59ede91dd
MD5 733a5936987a686cec8f84b8418c7862
BLAKE2b-256 4769254bd7f97125989b156c13db9374e9b4d061fac0747ad2a019e691e19a7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp314-cp314-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 6d2a1b8d33a89a88246e79995ab2daab6bb1ae6c1fd77f0c4eeff1caaf845fec
MD5 51dda1627e58d6965021d02026708cdb
BLAKE2b-256 1ac46df1beab7d80a2ea56ec0e815248a4c8f8ac3dcbf3491fcea54d7a08303c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp314-cp314-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 66c881b0943af07d93dd865e34d7fcdbb5b0edd402c74f23d5879d656c21eebe
MD5 58037a1e0729aca13600fbf98e3c2391
BLAKE2b-256 e6da8b85b3c0e99b553dc06da54a61d7c60f4e8b4dd247a78a0f87283ad7ee51

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c228ef4b526dbb8ee732977755da45882f08bc6bd39cd6b1afd6368ae1093ee7
MD5 5d7a5b6c5e498694067105098d9ae887
BLAKE2b-256 86b49131f7c524f9944b000ff9f452d7c053f5b38ee71539b35800e7cdf46cba

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f13597047046842ce27f740ef109e4bbcfe5c9edfd581f873f1d90a3cf6dc130
MD5 137041f37da68063ffb89c4f8ebc6c3a
BLAKE2b-256 05404c8cee18f33e8f653c6ccb31ac2388e687842fffc659c5ea78bca9ae762d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f6f843dfc40d24cbfcb3f6de3cec14ba90f0f7c79157bda1889e0ccaf51252e
MD5 458b78b2e187adcb7fd226cd5e39a4d2
BLAKE2b-256 03b9f26f4bd64c90fd4428ff6bdc719bb21da4906897f49abf5bab611c445758

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: scandir_rs-2.9.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 441.1 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.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 45f921a5b30a338781cf196bfa850e9c0e122fe3e077935899a91f43e5c82321
MD5 c59ec5108df6151eb760ea869f09f30b
BLAKE2b-256 36c74323feb51696a2b93defd60ee4c8252d8ac65601b2d927a16ee3795ae348

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-win32.whl.

File metadata

  • Download URL: scandir_rs-2.9.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 409.5 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.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1865d56f023e28df8a9f1538215c0fd3e5ffe1adbfc9bfc7c68815690a8f3da6
MD5 16ac1c12a22ba738e08d3b5d73dce10b
BLAKE2b-256 856e9988e33ccf7140b7fb4950d9b9519e135920b74083dd0d0e6c6f029e8ce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4da281ccfd4e936c01ed02608ade34c7aa3e0992365bba360a377b6b0f60095d
MD5 f043acda7ffa2a0d8e226e117de8c437
BLAKE2b-256 7976ecd5e184687e387d217147ac34b4ed69052ad6e070bb2d6c82e12e666f1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5affd82cce7445cf92b60734dd56378a4a04037a8a621a649fc4e44c0d3fe7da
MD5 89a7beb3fa388e0acf37bde214965f5d
BLAKE2b-256 b557405a08fb3497946d75c899bfc81a0b121fa397ab1e093e9ed2c2231fabd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a32d203b5d57d72a3d0b5e6212d0e4d2fcd815af8783f57610fdbd459515da1f
MD5 e5dbc8731daf8199ea9ed680936eea18
BLAKE2b-256 a2138508936b4183033fbaa524a5ddb35eb25453525062ce7d9a9d4162c1a4e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48db7923026d332ef32b43918ae56926871386d5a16079f2c1e5005ef7d8b0b4
MD5 d47c45543982fa73da4c1e9b30175c00
BLAKE2b-256 e6882c8b8fffe98cbce66058a4996d4602c3c5c0cebdd899d8bb3917b5e2d2e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d36de54b671faf319880625d8a4fd0bcf74fd1a3cf13dfa9c5bb4972780f6dea
MD5 8a7052bad306ef30635224f38fa158e1
BLAKE2b-256 0315058a690589d188d1fe05fa6615c6f43086235259f7af7fa9aa4cca004e07

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp313-cp313-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 c64b4f02d42228f8eee5e8d77dd9f7980716412662366574186cffc7d058f413
MD5 a0b35a7bd7660e7f3edcc2175f04bf3c
BLAKE2b-256 5fca225552aa90a5d00d1639fb86c0080df8d9b6cc96ece22b6cdfe9f979f3c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp313-cp313-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 264aa64ea64392dbd7d94f159e099e42f2584fbe93bd8797ddab9691984fabdb
MD5 b5bf30075fe7359564d0b635db0bc8d3
BLAKE2b-256 850f9e8d439b990cfc14cfaf80b9bfd093191340f8cb92e8e942f22e5c69a829

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp313-cp313-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 522abd0e29c1a766bd98e42719cfd79b12241c363a93be2fd32416c31e902a29
MD5 02760a4344fc2c1a19d50b56e612b49b
BLAKE2b-256 10f3155a92185cccfd5e642f31617e0bc9cbec3f71f3d2ddf6f8a3e05e22189e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp313-cp313-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 49c04d3682f8b36009cc04ba4c10add024eeba0fff8368ee689d7684becbf542
MD5 fc35e1e2e16999f4a183d3e6ef15ec75
BLAKE2b-256 de7f833daf2178744f4dc49a169174a0c8420fbe52ae884128cc158eb4a19137

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 63505490811f154f764f88ae426f789ccadbca69cf02f5600cdf016d93b43d4a
MD5 afa77e628547e8d1ca1d1c563e3837a3
BLAKE2b-256 5fdaab0e1133e572d785294efa09837262380dff1d108e9b778e5aa2580f707f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80febc818884964b28034d698714a18b319df666d1c8c0ee859c36231dcaefbf
MD5 9516e0ca828f2e758e112a76c24227cb
BLAKE2b-256 fe1522531e79ef55cabd221a2b3c18eb6e1e28d4f5f464f0156b128401b3770e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a6bd44d0dfd1ffb845e55d7765408d01b1c81c46cc9cfe7b35d8dc707586227b
MD5 6a1d4612fdccf522f3c75bbc74da538b
BLAKE2b-256 b881a5cb4e0304bddecd093a4997cf9eaa0bf42d05576c9848adfbac99b55aeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: scandir_rs-2.9.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 440.7 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.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b3a457f93e9b85db79ff8b2227c9a8d735192da603a51c3b322e95df9c361d95
MD5 b6114fe5b23cdd97b1c67e2622077d14
BLAKE2b-256 f3b6a7829fd0cb759a315d4461b818a38a4c29b9390163d37200d08214c37e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-win32.whl.

File metadata

  • Download URL: scandir_rs-2.9.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 409.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.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5f8115d43a68cc9cd8a66c69076be92aa2543f6ee23a4a11cbb3931389ec2707
MD5 cc5b21f3947de77edbc9cc1ce52614b6
BLAKE2b-256 8321424d4d0ec641aa3cc759d0f4695dd49c4bdb552c19e7a9d885a13baadc3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e70d5f167bd4f02b101df2083571a597d98fc4d73171f7c8b3bb8b62d11625c
MD5 1b6b5bde4880057b2118fa6680229646
BLAKE2b-256 7f99d56c974830ee8c13cb358ccd7310d0f8347847faf965a0eff64fc9271e83

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 120064be87049860569bcc73bd7e4671c794769300e3b03c5e9e6ad10916e23c
MD5 b5a44d1a65481583293f6852566bb888
BLAKE2b-256 bfaa047d3f2b977772af20248eef873a784c254d44cceee2681042175cb17877

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2f328ce46401dd549a18af28c4714a1d5a5f0036237284faa8e6b83c4d4cd59
MD5 a5912ed788e4df7331c08d2f560e1438
BLAKE2b-256 eae857a143d6f594204cf292fc9db778739da59b6527aebea040f373bebaae0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47d101cb0631f8695e3f11624a0e73b2a7785017414e69c937c63a8c60537bfd
MD5 1708173605c087dca87c055836b4bfee
BLAKE2b-256 309826f617339cfb31495d82d64fa4dc432b49ab1064483a375a85cc7df1b0e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 2443b59ed3e739fef7dd4689e5f5c58bd52b1fda204b40f79ba45e47c60e619a
MD5 ec4f5e1dd4512b1cbae764ce73aa73b0
BLAKE2b-256 de3e3461a4cfa79495356998d540c6a614d00d813d37a35802d7337cd960c281

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp312-cp312-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 0483b1d5c0eafa3fbc967af855d5f56cc73b90daef342fff6408ddb6b76ab76b
MD5 0702b5451780234cb9dc69aca01e4299
BLAKE2b-256 eec33f14fd51dd0f5b87d5f0b1163067f78e5848dc612f98fe6c91d08b242128

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp312-cp312-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 46a6c51ed377192f044543df3f2902f520b6746d80d7c3623d74473c0900d6a9
MD5 0aaf4e115f4fa9fc7d1c1e2768b1c2ee
BLAKE2b-256 4b8eb37252416587df36b41148a256d4ec27140e41e4472e1cd8cbb58606551a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp312-cp312-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 dcb25208b415c4765af2af06568b9361d9342620f4c197fa55bcea67752606e9
MD5 7713b66aad1f6f211fc2a13d24f72f4d
BLAKE2b-256 1362945d64671fee898fee25cb6b3168b722ff009861bd7c3154eb6502449fa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp312-cp312-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 1dc6478f1eca2fd48d7000ef5bf457bc084b0078661148f21fcc80704b3d92d4
MD5 de866be5d9724f745a630de1405cb813
BLAKE2b-256 fe7cdefa81095cfd8a9d53c08c8f939530a6a79332d07ebd155528cc8a18aa37

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 5b3ed688155e7d85c387e16e56e2c1a115049ebafbceaba0d0dcc31acb0310f3
MD5 f6003ca7251c4a0f4b55572531b5abe2
BLAKE2b-256 1f9066a92cec54d3c2f19a8c9a1504c5fbd1d85b798c1803bbdada1de090633f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 947d775dc92dc34e8adbac6bd4aa698aa8f07713cef49af365a5402609cc3365
MD5 76abc11b01a7274a3905361eeb7e181d
BLAKE2b-256 e9af653e7a2e7dafac496d205074b7107e5d3eba45a01cdee81ebe6569992a9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 88e7db8533a14e0717603efd5660705cc0b632923c9dd22d077b064a526f264d
MD5 f52c3d718be036be0af8abc42db2ffd2
BLAKE2b-256 8810622c3fd8b8a334a03ad12cd99552822a5189657f5bee0e0820448979c945

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: scandir_rs-2.9.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 442.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.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fcfca198a227636d00ed009f8f4c62b1820c9e89e75eea347507bd317716d11c
MD5 c7371dcd2aa9c9606e6c12674ce381fb
BLAKE2b-256 98b6740f14290c15fcf480506ae971dfa4481a5f5f86f41d779c57a536fc1088

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-win32.whl.

File metadata

  • Download URL: scandir_rs-2.9.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 411.5 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.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9f744ebc5091309dca68fc7184d46bcda353f9992afd1b10cff968a28a215f7a
MD5 afdc4ca9c1934df809a6c3b86c21d12f
BLAKE2b-256 7320cf116a003d8ad2ceb1a84896779ce400c3b14be7916e4ece293382bb3136

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dcb9d17d2d3ce4603dfc4b28a191e3a647a1cb71e6feb64f1d3d37f13181bdc5
MD5 43ac01acb940616b546d2b2f5e2ae659
BLAKE2b-256 96256850b2474dfabd2f6f6d6e1166748ea0499bd7228f49381681a0a046f678

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66b5c4de3ba02505194a711d11a98193978e5ae8fe49c55f439900df7c7e6a9e
MD5 43cbbd43444195c01eb50588d3c0dc37
BLAKE2b-256 21d23070452734ff7863ce1793e60786b056b4e07565ec0f3b4f3c9a0f428d37

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 587d8057fcec1a0d185335f0b393127ca80bb94e1cc2b4c6117b9f3af72bcf4c
MD5 5fab695a3db96292b3a7f6377253f459
BLAKE2b-256 d20ee4ae60b2b6e378d8082d749bff23126d8af667a04d11894512df169ebf1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 245af937090438111a1c1c69a30a68b085ce7cc7559cd198f6de9f7a348a425f
MD5 a7acb5a059aaddeb3d31e1bab3326cd7
BLAKE2b-256 f0d3f27de7c91ea002093c550e6b79322ec08a9839d71f8bb4b1eabe395180e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 e8fd72f1e625f7b11765fed21d8d1a4ec50fdb90b8e0f0ea922d17c3ff73613e
MD5 3d2fe975712c4783de8e063b137af48c
BLAKE2b-256 4b53715dbeb24e563e466e2b8a5cf82493b253939cabb96cbc09e7e9d5885fdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp311-cp311-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 c70f8544e4b862355066d1abdb787ad84c567631f286f115ee043def1a3140cd
MD5 708eb46d2d295d0ecea6403022129342
BLAKE2b-256 6869bd547715c2460d8942c1638cd0365e460d1b599646c7f5e9394719c92090

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp311-cp311-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 5bd69c95507026e2f75c130607b6fcdfa8c7f9e9851a86c891560b27dd1a1784
MD5 3e832c5bf8aeac409a704b164a680ffa
BLAKE2b-256 b9ae75928098a19e38d7b3b085ba720f5a571016544f26ab82443f37145724bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp311-cp311-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 84aa99ed60dcdcc19db0d11a2f187ded851e5dca37cbcc0fd52e696a7bbd4041
MD5 0c216c349acdbbca9f94b423494a5b79
BLAKE2b-256 9f2b86b0b8c7638c038ea1b11b4c4849cf423ddb984b659cc7c1f1fad164ca16

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp311-cp311-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 51ad9afaebdf8abe32eb9f23d747c5a94ff8ebb986863afffda0690b3b70aca2
MD5 c78c2b900032b46605a7dc3079dcd8f8
BLAKE2b-256 2b21d47629445bc2d406b2bcde34a9fd63fee410468eb230957e987f1390caba

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 e525f42f79d26747c68e41acfb4616782876cb5a92820a97cfa2ddbd46650992
MD5 8abf2e43216ea754db25329081d2acae
BLAKE2b-256 34352f1136a69d30b986d8e03b0ccab42f049a148b762aeaa27086e6b5197fd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f56beb489c70e43c80b53810836a718fa9e9bf089cef68a70b4d6ca59bf0a28
MD5 87d9cf313245e2343e555b4c55a6e418
BLAKE2b-256 178880ef6bf27a3d14fbf7ba9afead87965a9bd11bbb9be887caede86302d3fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e81a877761b21742f65ace1683513625fecb19f1788d52114451cd4dcebc8cf9
MD5 86368c11343ed16ae8d89a318f76cb24
BLAKE2b-256 04e42d0c9aecd3b60d23457e9b9f1c73c0de4256601a0c4ace8871cf865a7604

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: scandir_rs-2.9.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 442.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.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 88b38311f71ffa6006061fc494486d91ed9c58803e1c6202b080000224083f11
MD5 c6690eab66d070f677876498684e78a2
BLAKE2b-256 bd4a59a7fe2fe85e22c4e0235cb02eef884bf537227dea6a14a03498730b0fbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-win32.whl.

File metadata

  • Download URL: scandir_rs-2.9.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 411.7 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.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 73a9d59dfbf788fafb67a921c7f8096c245f4612466f1d66d0124a386a281f89
MD5 976bffa7ea4e0405c5bf63eee6f24766
BLAKE2b-256 e045c8442ec4f2bc57a99c639b9d92d2cdecc40a6a66e5b69bf89f757c4989be

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e32b3a6be08473c886bd16d895af4bb9f44170b78cfa3b7451d6398d49ccac0
MD5 83fb30097bc093ae127012a73204d5cf
BLAKE2b-256 199a12093307180e294d411d8a0514bf4c1f2dad3104912b41d26578d749f493

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 925e01f3f3bbccd828909925fc0f32c9adc432dc174be42e6687ca5fba6717a5
MD5 4ea2a7f393748b5e8dec0707259a286d
BLAKE2b-256 eaeff8bdb3d76bcae22bf3b1ef9b7a673e8fcd8429268efa07917e815a2d0358

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78cf0d9a1a2f148ca4c30c24c37eb008d1e4d41fb85128cce097130e1a21e530
MD5 6b563b216f7d888d0e747428157ee3e6
BLAKE2b-256 4be61b24d9f46ff837d01b7e3ed50ba577134dba8c9895c9518f4961bb1fe702

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1fecf35d1cd293a3e07d26835032716cb64f518b1e4bfc73c5b00a53b82bc94
MD5 7eeffd09fdd8d0de6f8c3ded7283b912
BLAKE2b-256 fc42d9452a1ecf9477978b3d05efdc57b32dbb1ca9bb8b4f07d3b64c1f72dc1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 c3ca83846e4d6a295bfcf2830af77197606c13fd1339c7782411caec2f428d2a
MD5 4b6cfa32938074255dec7a7a1b9b4020
BLAKE2b-256 835517035922c2db6405a9bd90cb0928e6004f8ea8c05365b198f2a12d294f77

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp310-cp310-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 2d739ddf8b7a4ae9e2477b424f8e5d3ddc448da958481cc595105eff24b52c13
MD5 77bb44a714d3e95ea7339ba99d2f4c22
BLAKE2b-256 dc2a3518ed1067a6ad358bc700bc91d6d9ec67991bf8fff201868d9f93e5c2eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp310-cp310-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 d0040c5cc809bf79281ff4c531c19d5da8a3bb4f508d40019e76f4b5e4f7bc5a
MD5 b11d51be8182c7093f6104eb346e8b79
BLAKE2b-256 531390f4ce48d08835e7981d578bc9a533d27a28414bfd10cd576ba667cee762

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp310-cp310-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 9198bb971cfb03db9bee01ec530b69715e047bab4eee56375f32e64b06b4bf3f
MD5 27363863f7ed4b06e7b29b3f8e9dc6b0
BLAKE2b-256 6a436c53576756945c27a30c81b7b4d483f865a6bfd49afcb2e285326395e727

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp310-cp310-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 18c7ddd0fef8a12e58482d961495425d206a3ba58c8e1a6ab744663ff25912cd
MD5 ff8ddfc13f0e615238826c8cc90898a4
BLAKE2b-256 ec33495b0eb328705e36df9992f731fdfe6da2b5b6e03149eb285a02a3503ece

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 e4bdce7695f4e874283f85b4ddbd7358def5afaf0e3292ae5958d9eb14d22291
MD5 5559496ff9a4865ea4e8692e2eed205e
BLAKE2b-256 9989b9fd66c5120785d85b17bb0335134ffc57af2998415205ada3549599a216

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79b333556695c54609e0cebe5a5f6317802a27ea85ce9322f9080b7b477dd74d
MD5 31ac14bd415eb7df2e59af84f4530c9b
BLAKE2b-256 603ed46728893df82bdc173464cafe08ae8790a0de4e3e644363987f854de379

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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.8-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scandir_rs-2.9.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1fdc557a2f22cded66b55b9fdb182c9dabc3d1c0560a646213946ea082d18cf3
MD5 620730d74bc825867815c51cf9b48e3c
BLAKE2b-256 9f7194d1aa4d48a005a8f03e0d7399035b23167428f0cfc40b5cb980f8764b7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scandir_rs-2.9.8-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