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

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 here.

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

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

scandir_rs-2.9.5-pp311-pypy311_pp73-win_amd64.whl (428.4 kB view details)

Uploaded PyPyWindows x86-64

scandir_rs-2.9.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (676.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

scandir_rs-2.9.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (712.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

scandir_rs-2.9.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (765.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (664.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

scandir_rs-2.9.5-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl (498.8 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ x86-64

scandir_rs-2.9.5-pp311-pypy311_pp73-manylinux_2_34_s390x.whl (543.8 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ s390x

scandir_rs-2.9.5-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl (546.9 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.5-pp311-pypy311_pp73-manylinux_2_34_i686.whl (540.4 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ i686

scandir_rs-2.9.5-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl (497.0 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.5-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl (493.3 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ARM64

scandir_rs-2.9.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl (453.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

scandir_rs-2.9.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (474.6 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

scandir_rs-2.9.5-cp314-cp314-win_amd64.whl (434.6 kB view details)

Uploaded CPython 3.14Windows x86-64

scandir_rs-2.9.5-cp314-cp314-win32.whl (405.6 kB view details)

Uploaded CPython 3.14Windows x86

scandir_rs-2.9.5-cp314-cp314-musllinux_1_2_x86_64.whl (681.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

scandir_rs-2.9.5-cp314-cp314-musllinux_1_2_i686.whl (717.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

scandir_rs-2.9.5-cp314-cp314-musllinux_1_2_armv7l.whl (770.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.5-cp314-cp314-musllinux_1_2_aarch64.whl (667.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

scandir_rs-2.9.5-cp314-cp314-manylinux_2_34_x86_64.whl (504.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.5-cp314-cp314-manylinux_2_34_s390x.whl (549.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ s390x

scandir_rs-2.9.5-cp314-cp314-manylinux_2_34_ppc64le.whl (552.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.5-cp314-cp314-manylinux_2_34_i686.whl (544.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ i686

scandir_rs-2.9.5-cp314-cp314-manylinux_2_34_armv7l.whl (501.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.5-cp314-cp314-manylinux_2_34_aarch64.whl (496.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.5-cp314-cp314-macosx_11_0_arm64.whl (456.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

scandir_rs-2.9.5-cp314-cp314-macosx_10_12_x86_64.whl (479.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

scandir_rs-2.9.5-cp313-cp313-win_amd64.whl (427.6 kB view details)

Uploaded CPython 3.13Windows x86-64

scandir_rs-2.9.5-cp313-cp313-win32.whl (400.7 kB view details)

Uploaded CPython 3.13Windows x86

scandir_rs-2.9.5-cp313-cp313-musllinux_1_2_x86_64.whl (676.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

scandir_rs-2.9.5-cp313-cp313-musllinux_1_2_i686.whl (712.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

scandir_rs-2.9.5-cp313-cp313-musllinux_1_2_armv7l.whl (765.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.5-cp313-cp313-musllinux_1_2_aarch64.whl (662.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

scandir_rs-2.9.5-cp313-cp313-manylinux_2_34_x86_64.whl (494.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.5-cp313-cp313-manylinux_2_34_s390x.whl (545.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ s390x

scandir_rs-2.9.5-cp313-cp313-manylinux_2_34_ppc64le.whl (545.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.5-cp313-cp313-manylinux_2_34_i686.whl (540.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ i686

scandir_rs-2.9.5-cp313-cp313-manylinux_2_34_armv7l.whl (497.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.5-cp313-cp313-manylinux_2_34_aarch64.whl (492.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.5-cp313-cp313-macosx_11_0_arm64.whl (452.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

scandir_rs-2.9.5-cp313-cp313-macosx_10_12_x86_64.whl (474.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

scandir_rs-2.9.5-cp312-cp312-win_amd64.whl (428.1 kB view details)

Uploaded CPython 3.12Windows x86-64

scandir_rs-2.9.5-cp312-cp312-win32.whl (401.1 kB view details)

Uploaded CPython 3.12Windows x86

scandir_rs-2.9.5-cp312-cp312-musllinux_1_2_x86_64.whl (676.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scandir_rs-2.9.5-cp312-cp312-musllinux_1_2_i686.whl (713.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

scandir_rs-2.9.5-cp312-cp312-musllinux_1_2_armv7l.whl (766.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.5-cp312-cp312-musllinux_1_2_aarch64.whl (663.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

scandir_rs-2.9.5-cp312-cp312-manylinux_2_34_x86_64.whl (500.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.5-cp312-cp312-manylinux_2_34_s390x.whl (546.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ s390x

scandir_rs-2.9.5-cp312-cp312-manylinux_2_34_ppc64le.whl (546.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.5-cp312-cp312-manylinux_2_34_i686.whl (540.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ i686

scandir_rs-2.9.5-cp312-cp312-manylinux_2_34_armv7l.whl (497.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.5-cp312-cp312-manylinux_2_34_aarch64.whl (493.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.5-cp312-cp312-macosx_11_0_arm64.whl (453.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scandir_rs-2.9.5-cp312-cp312-macosx_10_12_x86_64.whl (474.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

scandir_rs-2.9.5-cp311-cp311-win_amd64.whl (429.0 kB view details)

Uploaded CPython 3.11Windows x86-64

scandir_rs-2.9.5-cp311-cp311-win32.whl (403.2 kB view details)

Uploaded CPython 3.11Windows x86

scandir_rs-2.9.5-cp311-cp311-musllinux_1_2_x86_64.whl (676.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scandir_rs-2.9.5-cp311-cp311-musllinux_1_2_i686.whl (712.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

scandir_rs-2.9.5-cp311-cp311-musllinux_1_2_armv7l.whl (765.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.5-cp311-cp311-musllinux_1_2_aarch64.whl (664.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

scandir_rs-2.9.5-cp311-cp311-manylinux_2_34_x86_64.whl (498.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

scandir_rs-2.9.5-cp311-cp311-manylinux_2_34_s390x.whl (544.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ s390x

scandir_rs-2.9.5-cp311-cp311-manylinux_2_34_ppc64le.whl (547.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.5-cp311-cp311-manylinux_2_34_i686.whl (540.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ i686

scandir_rs-2.9.5-cp311-cp311-manylinux_2_34_armv7l.whl (496.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.5-cp311-cp311-manylinux_2_34_aarch64.whl (493.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.5-cp311-cp311-macosx_11_0_arm64.whl (453.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

scandir_rs-2.9.5-cp311-cp311-macosx_10_12_x86_64.whl (474.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

scandir_rs-2.9.5-cp310-cp310-win_amd64.whl (428.9 kB view details)

Uploaded CPython 3.10Windows x86-64

scandir_rs-2.9.5-cp310-cp310-win32.whl (403.4 kB view details)

Uploaded CPython 3.10Windows x86

scandir_rs-2.9.5-cp310-cp310-musllinux_1_2_x86_64.whl (676.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

scandir_rs-2.9.5-cp310-cp310-musllinux_1_2_i686.whl (712.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

scandir_rs-2.9.5-cp310-cp310-musllinux_1_2_armv7l.whl (765.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

scandir_rs-2.9.5-cp310-cp310-musllinux_1_2_aarch64.whl (664.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

scandir_rs-2.9.5-cp310-cp310-manylinux_2_34_x86_64.whl (498.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.34+ s390x

scandir_rs-2.9.5-cp310-cp310-manylinux_2_34_ppc64le.whl (547.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ppc64le

scandir_rs-2.9.5-cp310-cp310-manylinux_2_34_i686.whl (540.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ i686

scandir_rs-2.9.5-cp310-cp310-manylinux_2_34_armv7l.whl (496.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARMv7l

scandir_rs-2.9.5-cp310-cp310-manylinux_2_34_aarch64.whl (493.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

scandir_rs-2.9.5-cp310-cp310-macosx_11_0_arm64.whl (453.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

scandir_rs-2.9.5-cp310-cp310-macosx_10_12_x86_64.whl (474.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cd0fca7b0966f8da0d69edc385b8ea1fe5784242092515efda403fe5a902626a
MD5 178bcd30bb5265dcd6e2c664da8c4346
BLAKE2b-256 89fa688aec724b1526e8c4a5bcea9ebc3194737047382a3f901f15f50746adc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9cee94c77fd5e3ba3c460c8e4221de8f8c92dcac59c6b97eace41b5888df622f
MD5 e872b8426f89aa425e45146b180eb102
BLAKE2b-256 758341993d13e19a9c6a7a500578de9fbb26135ff29290424e60c8fc9ea3454c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10d634bfc9968955174f46e813afaa42a10a3dfbbd1381b8f1131d719062aa88
MD5 b2df8e31a124d7c3d6e4ee69e4ae29af
BLAKE2b-256 26163db40b1c402aa25e0e2c5d5bf97f12657d29d07e42e213e1206906fbd394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5c82963b807fbb4e5e32acb0ab401fcda6417b7cd4afaf2a1a27ca26719bf3ae
MD5 38508635ded20180b72551807b6e0d5a
BLAKE2b-256 588f83bf6cbcf019adff1b3ebb1c1459af366ae22d674fe53696d466f5f9612e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a278ce4ca7e37a0b5354fad2837cf8007718c013b749452761c1314799e3c5ae
MD5 3c2aa0e7cf08d627b439c20a3bd07b17
BLAKE2b-256 ecf63a8022e76a262a8abc350ef09289ef87a7d0827ef34cd7f140ff88da3cd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 e2981ad75426cc82882a8236b5222187bb791a55968b7cdbf27ef8bd966fe2c1
MD5 7ba2f854901c5fbb130311fdd531f71a
BLAKE2b-256 b22abcd499df9a3d8eb73c1296663991eaacab783e58d8cf20238fa7d456168d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-pp311-pypy311_pp73-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 502183c994b415322525c709b693c110f383b74ff9734fea9d120bd037eb169c
MD5 9acfa5d5020543c0d0149cbfd39c28e2
BLAKE2b-256 8bef84af7211c7a3ea81dad194667b873d04befd7c5277000992d3e44293a091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 499147f1b900dde21248e3ee706d1a6569f0c2ad248e1abaf26d00397a866e5b
MD5 2c436726415df17acedafe39f081960d
BLAKE2b-256 c47e123178d19b8731463eb7f8a7795b312f222b767256b00603d92324825048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-pp311-pypy311_pp73-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 51bdd887776858042032b48e10b9cf2584c5e299d0db27dfd6e640823550ca85
MD5 ebd03fbb22274c5035adedfe1259beb7
BLAKE2b-256 c891fc27e91b053f198b1a2211a39e97254b2003fecd475f0b7f72de54b0ad64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 1b7cb9a6c6b4be5020047d377a6ff754ef12f57bb48610ffda6eb0ef160af818
MD5 3b3758294919a0ab7658f3a3e5b567e9
BLAKE2b-256 882120194ced877ca450875c52f371582b2f04ee4c6d62b10f735028780cb8af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 dbc65e47c4419ea9cda003c670bbf018cc267dc3044ff351bec62f627b9415b3
MD5 611bb2f8fe39158e1d11550d8d8d708d
BLAKE2b-256 6bd1d57229812e082e7d2b6e4dfa5db12f82ce831a87bfddd9eb176d5ec3f43a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10d62fd25f15154f6026f50cdbedc3e9174850a6078d28ed3a2d0605068adcfe
MD5 341952af0131302c5da043c99f58a577
BLAKE2b-256 d4435c1350e3157fa08ca65cad4c353621a7f2ede2dbf11bd6fb653ea83cb801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f95d2c041255f2802565f6733a762ba2f98c9309cc065fc47368416af928d7b
MD5 a097c52d5e09a7a0428f7cfb095b3e0a
BLAKE2b-256 80c9d2c47d44656e955f932e0bc0ee36b80cfe259ae4a02d954bd9abfc95949e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scandir_rs-2.9.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 434.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 618b28f018bb327c3f34d0ad8cf7a070b24771440540e2dae2c28a1e3f663f62
MD5 e047c7c9e2325c092d329eb8f967c1df
BLAKE2b-256 e88b4b6ba07e63e84e57bdbaf83e7b07ebf24c5f236745daea9f4a8221b505d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scandir_rs-2.9.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 405.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e2f6f723da61edd4d1e469f889861e8b32baa26b95eaacef23b2115a3ba5d193
MD5 41dbc4dc2cafbd588f36cc7b6b26c45d
BLAKE2b-256 be26fe1e7d66f9ec12f5d8380eafc28590b6ea0d707ee191601e3234d809e727

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14329b02174f572a05b1db992250a29bbe7935e9b26f98ea390b615136edd094
MD5 b73fee1d8ec5969da9022eec130b6e72
BLAKE2b-256 fa861d575143f99940207b64510a44f033f9aa94b342c73d8d030c61650d4f0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2be0537b6a3fd0f7c45f8b9da8e8a30ccad9cd6df3fa03728458f6c308cf83be
MD5 ebc7465514bbb5c22880ff3e3f00a3bb
BLAKE2b-256 525fc6ed193c2664b75c4a9c4bce20293302430ec45c16ce71011f59f9930e05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96809c0a4e61ec97eec62d2f47164adb8accbae450e986f57cd788644b600b35
MD5 de82f1762f58c4dd50142a0991940f0b
BLAKE2b-256 51205d43d417a36b9ba494b96cedcb36bf41ae1569bf6b8bc47f5507f9c6ecb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d29d809399ba776e3b9e6d326f7f89331f9f1383a6c496242270a95baf39618b
MD5 792ea62754d6caa5d59ffd04b61fad77
BLAKE2b-256 2418e10714376f858085e6eb034d7fdd01d4519335e025c3ce9107a687d57557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f76391156ce2a354df92dc70278672fdff863b9966d28621a77437c1c38fe2fb
MD5 33f37a6d417340cba7f78096cdc4fb41
BLAKE2b-256 ad56c2754b12c04d5edb5bb63749cdb3eba1bc20ffac4dad3cbe0c0af30444cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 8a23f0b1132c132e17b65004585706a85c5bd06cee36bbfdfa5e10af9e5fba2b
MD5 968418eb64a3addf547ed326e274081b
BLAKE2b-256 53420772b671f5236c4c9ec0140c017eedb9b44fbc0e15b731ae3349a0b19a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 ee96dced673a1c929a5960c58a0c93017e9f7810ca467d11e8ea67b492d496fa
MD5 1bd7eea6114369ad9ce66538ee49e29e
BLAKE2b-256 7e2b647932b10571bfdb0e1d1851ca449e9cba051530f39db8743be35951359b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 39e55dfd0ca27368dc18df9bc1b220a0bf83d5aef4a0031f8863f82669861aa3
MD5 6af03aceba71c8c59d19cd179fe5b157
BLAKE2b-256 b9e83aca9329df745e5a214a897c7d796ac28c7d14dcdec7d1bef66d9755f2f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 63d2ffbd2b339f72bae46a23a4d257ac437111cc29c27a1f729660f357852d77
MD5 e0d1c94e309b9d77aa85950103e33919
BLAKE2b-256 fa7d429b0a0c17f117d3782b66c365299c01d9088fdaa5772ace1dbd67390065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9afc7ca021d2accdbc9d1e8e73b5e662cdfcef4bf4ceabc72a78ef3265db4412
MD5 4b763f1fc6b9ab476d6f4f981dd9a77d
BLAKE2b-256 69c5097f89efeec9573efae13ac8b76b4b9ce487e02e2e511a4def4f1c360de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83a0e45aa94b6522195754f40765609d24ceb28c9db0f5f81248c9311935ea99
MD5 9075e29fe33dc067f3456901f0731b0f
BLAKE2b-256 e1dc7b3f52d409630c579f1082f7334192abc3a87604dc22c6eaf8bc6c88bfda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e91be0411b0ad8987b587d86c9be90aabc370b7f6ba537e12a282142eb184c4
MD5 e79cb7b5d36d4f64fdb44bbee2f8d934
BLAKE2b-256 3b6a215741d08a8a44c49eb174c0024c55eecac5f8ec74530aa4fece9c028d80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scandir_rs-2.9.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 427.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 907a7225886c241fe54e949685743a986820fd73c1af113534485cc20c93e365
MD5 a8e60bf5986036bc79e1ce026f273bb7
BLAKE2b-256 32f8762a0879c64f1f90aee27b4cd3477289a581de922eda303bb8fcfd8886b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scandir_rs-2.9.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 400.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d626a44ee5b55bcdaff06a02b66b6f34ef71cce81402fef7129b9dddf24e980c
MD5 67327df44ebc37f1ac4f59975a007920
BLAKE2b-256 d5b7b954aa36c8d5b8190620b7f5bffec7a171960e9f79630612386e54d4e9c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33e90fe616f6e4db77464d31bae112d3362bd514c2791fd2518056ec3b19365b
MD5 560111b557284533dd75e9db98d95cfc
BLAKE2b-256 498056a5e461ba8876f122483e6ecce69ba280e432e65d28ec55ce6432549ffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b88e2461158f01b9ae49dfe33bddfced9b3d677e220f5f37b8a3640339f737fc
MD5 47b8cc39a9987c05a88fb68e65ab5bd3
BLAKE2b-256 a66d0f97072ba5628f664169cc6d851bbef04a218551d3e1211b1e072102e0de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f5c6679c0c355af4cc12f6ec0b5a79dd27e5b5a33e96dd1850f224014de2d8e
MD5 4011759701d361f0c08ceaa6261b7911
BLAKE2b-256 860416d4f0dd1cc868a2b11dad097be8c10bda83687e04bc106f16c25e15e75e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eea1d569a3fd00d0004c7d93167a81d5b9da4fb2aaf17656e74b540a48dd916a
MD5 39ca044d771cac89ecdd79e13cfc8ad6
BLAKE2b-256 6cddb8c12347e0b218ce854dd62b568a1868f2aa174185a6084b9ecd3ce588b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 0a2e60a917b642732ef37d4ec5184b5d666fd0c961f418c59c805a8484ceaaec
MD5 4b30063c24acb990095db955a022d15a
BLAKE2b-256 f69574710520d2fcfb6bc76396a475487d97b7b453a7eda2a20605f05f355533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 3cc8ed92293246b1c739b569e8c0eaf93b91e571c834228f64a1cdc9c26d628a
MD5 7f41c46f3eb92688780cbc4c6ff88e80
BLAKE2b-256 643e46e972f9f487ec4b6dd5635bb3428eec42fa24a97cb8e676b11f101151eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 2e174616c53199dead66d0221d30acba9467a028baca161a8f7662e57e43c9cf
MD5 52af048b443a7657ba9fa4668c55a26b
BLAKE2b-256 f75834b608cc49472af3138ada274dceab34e434c17ec76efdde3bc663bd0aaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 d8a5e25d3bff6b65119a66b68f4deecfc2dcfbb5193a5b7a27f04b2896e429b8
MD5 025e9eca5b17943776194b0cd4dfb413
BLAKE2b-256 a21b29e62e9737fda72eb7d7988c6260bac946b025ced7d504be7636cfa7edf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 e7bc77f53352434347d6f9cb4975e44a172da01ae1e1542d2ca2fd36e1ffb801
MD5 5082c85573640a3078751b14470d7393
BLAKE2b-256 60214c3ca293415e753cb50c568a92007ccf6ea84f8ecbc87e461c450a03efe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 dbfdd0d4e35b5851c9729472200b0020bbd2f593e5a2f549823b7c8a5277c3fd
MD5 79790eb9527889b538ee63ea31f20d89
BLAKE2b-256 510cc6b6af435dfa86ad75078c01f344becb99afa4adf4c77ece49bde9941946

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95361b15d502958b0b74ead7fd6fbb1965ec7e329ca2bc421e3989e3110f0dbd
MD5 ace2d9a8190f7d15fb76d6341ea20227
BLAKE2b-256 8ae06b2b19d08484fff3ba54019bfd88f97fadef31e07defb692f19935f91904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e469f1bc6f3d94bd6c3dec48ca4d1a199f75932835857ae8e9e02705f1bd4cdd
MD5 55398a69b93e3bd3317812b82c69f51c
BLAKE2b-256 c5d94d0b103270204e6baacd4172695d1206a82f77fb7faf0edc9e9799417089

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scandir_rs-2.9.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 428.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9314755974237e812fa7c68ff2c6f7ccb0adc0b0460b2f1a081c2d2290257576
MD5 7246d50ee5658106bb3013b589b86bbf
BLAKE2b-256 792c9164b1b7b162ce4c9e2ca3e77f64cf3e0bc042cfdcdd70409543b6f26601

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scandir_rs-2.9.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 401.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0859e8ef1722ef74460ee27b782803296ba3fe1e653cab4fe059c41363aee268
MD5 27a63a3253803d3830cc94cbe73a485a
BLAKE2b-256 779a4a3e338b31d28b4e5f067252e707eff935ec7c9243651d5e8d19aab43a54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f2f250defa01f87943d2af225b3f154f6e3f1d78975a79b8d37b4307464d8ce
MD5 6f035a5091dbf3ecee4db2439f156f44
BLAKE2b-256 7fd2ab0490bdb6f82c77146ee8dfbcf3176babf3d4a0fdd9011457c719966521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67039998c53231f1a56a0302969d23caecffb49c26616ae70cfd83da54e90266
MD5 ca32f471c5ba783fb42e2f48916ce58d
BLAKE2b-256 6cb2f412659242242422e0ad596414042f9e8ec241ad6cf09ec547cb3775e561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 51840baa91bed13cacd33a7de0eecd694b3ee7470053acebd0df99f761935bf5
MD5 e66ddf96e86579bf52d8b2e56067b3c9
BLAKE2b-256 40a3baa73e1a789000a98c6d8bdb84eccbc6ba28c74017ee6ae69bc5b87d56ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8ce0b43ae1ffd5362fd299cf924ec877b5ef9b6c75a9762a88d1b1630435f3a
MD5 8586e65faaacdc81b76e49823034c029
BLAKE2b-256 59206acf966a21ef00aa5561bc346679437023fcc4c820d1bfed60e8411a57d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1402dd81357385e5f7382d52db5ca90f3e3e1806009741e2c74fd441fe9c6599
MD5 b0f2aca25e8b3a3d1244533de9a621f7
BLAKE2b-256 2778c684fc4b6e4816b8d3f060db6295c632b32f3558406c1292f835bbfd91b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 45ad7ff6943959a139ad2e4fcf7ab5d24e4c2a585d71a3b9df249f09b1f80955
MD5 b48c2fc0ea1bf6e0a911649b0810b524
BLAKE2b-256 e4b63dcaa8a617d99c63a827c0c2cb3f3f5ec7115e4645249e2133358067c20f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 ca6e7069981b6066c5aaefe6a17ab2c28e593ad01765a5513297ada73ff6de63
MD5 f099759ed32a958f66bd382310276041
BLAKE2b-256 ada7c9c03196572e3de6a220b33beca8594242789d8671581da8a3ef912e45ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 b46f9d98787f8fa1fb872a4122b50fb8ed32717495518df74876dc01bb3707a7
MD5 cb94a05645420a8f51fbe7edc25a1284
BLAKE2b-256 bbfac8e8b82a122541345db9cb62cb9375328c3d1386fa7a6ec9db9e96eb634b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 51412f79365ed07cb655c927b940f4b37dc8a7843066f19cd141df3762735f13
MD5 4b0e08008c76ed25d5207318d9ab1be6
BLAKE2b-256 705c0ae3b8fa2d4eca3e3f7e6a4f195cab6c67d0313445c330429417ae3307a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 40a214c595d9b80925550d88e092d8fd2548c8ff4c64a0380735b8d79e1eae9d
MD5 87bc6cbf3dd18d7a7381f778462f194b
BLAKE2b-256 72515fd969e1f169905b52d704ad76a7a061e9ca206529810e1583356ae51bdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e942e0df14d3edfdc0d3010c09e2c75adbfbc85db53475df5d1c1badbc900225
MD5 e45fadb4bf4162758dd812c2b1161647
BLAKE2b-256 c9245cc66b0bcf44cc2000dd68a50e671b15947c9f0b7ed796fcdd637622f041

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 56bb281f3e48a22e8b91446b9fb7f6ea57be028b10798b28eaf55b5526d534aa
MD5 74a3c6b228002e566a034d28be51368d
BLAKE2b-256 ad586b6cffb81e60ac331511617a7244008861944834447501ded3999926298e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scandir_rs-2.9.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 429.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 62e49d4947f71ccae184405bbc2f091c4c45837f501b792fa48c1227266cb3ac
MD5 953c312de6ec4140ff97d9efa4f59c8c
BLAKE2b-256 44656747309b7a8ac1b3460eeef6ca5ff5eda92ca6f40a3f57ed398347d3d160

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scandir_rs-2.9.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 403.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5ba3c7583bc6a0c28b695a503178e03cb7ff8d29b2fd98a25116fc50485d4e61
MD5 3591ba6911b20468513fd2decd782c29
BLAKE2b-256 eac2725c9683e5681688d11ff61306e0c4bd49830cbd0f31845d4b05043a04b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e06f9eea189764c6611a182055a2e3c94aa8dfb39423d191db70bf330c183df
MD5 d58fa724608bddd0408299942177595d
BLAKE2b-256 afeb145f053554347b8a9d32fcde712ec87863872ec0ac1a2d303a5b132264e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9fbf6efcb1530df7d34a0f4eb4ce5d56b4a8d4e729de3662e954b8ae28fe2a89
MD5 e2a1853acfd16971f9d2ad4e374f8579
BLAKE2b-256 c698f55694f4b431a880b012dd6223da9b28f3e61303940887d72493570f24c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1966c6ff7cb42fdca17feea4c1f382c838936f99d603d613f05b0e6ebe96ebe
MD5 ee5427b750657a00529c3aa0880051ed
BLAKE2b-256 b3a15aae208f66bebf2fe29f9198171c3957211f88af23a4421ac7d5193eb82b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8793d28f8fe87d69d1e782016b0d523a29d038e7aabd1d4e73a648ec59d6d34
MD5 264eafb06f1abe13938b9d4b7d5b8fd6
BLAKE2b-256 4ee096f09e113266c02132d3905e65baa7eaf179d615761f70be0bae37eed4c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f07b31684c8b8a9501a83bfa4c1e3ab06b1985afb0ed7b3aaa9099689b04a56e
MD5 657d8813fe7dd5ff1403e9efaf76433f
BLAKE2b-256 2f9da6c77f861ea3b44c0cc9a14efe20379464eded5c3837806e8119866ab233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 0493d5c8ad88ad23f04ca1ff53904330d12f0e564e145738c79c153fbfd7d5a9
MD5 d2c78dd29a92abd1523273dd984dd401
BLAKE2b-256 03a2c571c8d3b45a48e4f0f4e5303493bf093815215a4ee185a49a35de27b263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 e1701df54587a628007527b085e19d359e9852da766ddccdc5035e658e778643
MD5 74c2ba1958939f826a1de907b68153f8
BLAKE2b-256 00dc368a14831e19cb9147fdabfd0d5ae4032a7c1a254810cca33491b2c9adb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 3696fc0496db1ae583e2c411840d07838e8910d09afa64e38131aefc5634d2f5
MD5 d654662301da0a73adf2dbd4757d0206
BLAKE2b-256 e3d99551aea0633e67fdbf857916c69301a2aed26056aeef60f564c432362a45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 3356a17eb61f032eabd06a7bb94bce94d54c632def41f1ec7254e9e38ebc2a16
MD5 8fb7ef2e655639f46ec62551d4aef059
BLAKE2b-256 0246d09d65a8a9f8ddefba29f4b82b28c5fe6810e33ec0fb25bae18b4543ca32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9db30af2e41eceaf95567dbb5a4e23905821aa16f2ad10a9ec1deafd70a02a42
MD5 78839536398732db99c026f615fcf35d
BLAKE2b-256 d4398e5affb33f8ab2930ca6d08143fec4670893efe3927cbc8c01858fba0e82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8cd13282e0aef5ea356dfe87c09d5f102e8bda74633db41b581279c5eefb243
MD5 f0e80cc6e66f97e698eeb8856e5fd02f
BLAKE2b-256 63270e4341c0ff12f4161bd77fbf9a8131589e14010d5f803723f7f89387ac61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7cbca00c92eac93f343919c865760cf87726672af58199ad0169310caf64ba3
MD5 6dbc8d68a9a73623e2f45848cd8442c1
BLAKE2b-256 6184ce4b722926008a6eb315171c1f640e6c768fcf0f3c5a388437dbf431f467

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scandir_rs-2.9.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 428.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 672ed558eb7d086f61dd65b1fcca956a43aeef666236e4da74db625878ee0be7
MD5 829ec65e964d5f2e67e32db9b56cf5b2
BLAKE2b-256 28733f66246f12f4e35525c0607be01e7833d3625a65093da37ab16d445e44fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scandir_rs-2.9.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 403.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b0e3f261ca742697558d5c7c47c6b21b38b843cdde53d67cb34e975ad9088264
MD5 2acbc73c2d6011adc354c262dc5a67ff
BLAKE2b-256 8e819fdfc4c2d56cb00988d88eae49d822945f0afc0e1dcbae7566b43ae2b8a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa1fcb66b6e4e1a8304529f457c927bd5bc301681fd80928aba7c973edd564cb
MD5 7aa93f29ee747195c5f4f6f988499f3b
BLAKE2b-256 0a01ab0652a98e3cba1b876c1947ee5ceb9ce53b1f0ddea1f7d0bd5995f4e9b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41528d5c3f9b972477d06385b9da28797d025ce1d2223bbb4ae3000c4f5987d7
MD5 c5ed935bf3909f0283021d72584fc56a
BLAKE2b-256 1a088fc8adaa79ce25c59dc7d891f7bd090b29b1283c7263f98b2650bf7476b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9136cdca256511728cbdd540a59e3e1f65227a988517f9aba5ced1668172695d
MD5 bbe524edd7a1c2cfebad5ce0f48a8cb7
BLAKE2b-256 4fc8f8e993ec7cdd5c325d3107d258d634b4a11f7368e80a105ef70179f9fb87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 385f6fdca1f339cc6c17ad8267b87a1a9755af56fd6e484d439e0502739ed168
MD5 a722bf46ddbd0b63ec6b88f251aac8a2
BLAKE2b-256 7f9763593760a04eaf8ed7570d4b36623bab85ac27a632fff2e054517a53e7c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 e98e25dc16949e81f132314e499e3a97b4ff06c23e9d7a453d36dc4bcfaa892e
MD5 aeb59904b6d7ff381d77fc0f32a17663
BLAKE2b-256 8a8b212eaf2989663d19ed27c5e59742b5c481e4b78f61519aca3f8ea4f17423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 41887991eedffb887942c1a1aef79fc1ff61ef04bae59090261b16b57233e3de
MD5 0c8216b3c03c427abe4abf0a01d2c096
BLAKE2b-256 9222f8d00707eed6051f5b244c62fa45f4a7a475c43d21341b885bc5b196d2f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 c84d569b17c9c11d104e4a7f6fd3042c8d831425db80ddfd9b4f4cf1b92bc670
MD5 1995e4eba7906adc93c358707af0bd9f
BLAKE2b-256 e240c9c0f9e17256ef19b156ed66aac1d3257df06744aa740c10fa0634a3f7c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 28f0a4561eedc33250e617946d8bfdcba4bbd5818e082a1fe85b49d279c7a4f6
MD5 7d2c6a669344d993163f49c4996b81c3
BLAKE2b-256 ced21350f61594b15c896c5d2ce7fe39aae79bda6989528fce5b5ee64bca0706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 d5e597f94a4c45c2b374a1a5ab4a85a29ef2cb048c4215ba2b32363209a9baa4
MD5 c1f50b1ff86a1a774b35ec26829cb214
BLAKE2b-256 70ef55c3568cf37ce3f1aa2f63535049771fb33ec6bbac186e5527b67249648b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 fe10f8ffceb5161446f706e2356e398c9f3dc0feace5e4811f410d9171236512
MD5 1838c3887f3e7317f99f7718683b03e7
BLAKE2b-256 b96e0e8b161bec5edff95bb2658414de8f5b6aafd283a048d4bb3965e7c82d84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15a1b473de934150e60f9d00b8bc8f0bc818eef4145a3ba55be246dbe21cfc0a
MD5 2fcf82debf2fad1db4d1da95a02e2610
BLAKE2b-256 571b8f90e5f0d50b7af581e077153e97a5dca23392a2763b733922a937400eb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scandir_rs-2.9.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61f8fe7931f1cbfc61138920f3fdb79cda45d3f88557cd48642f0982c08c26ea
MD5 1ccea6b1b258ba5157336bee62b0ac61
BLAKE2b-256 fbfb374b3c4422cb088e9341f6114011737ecd002fdec2f3c2397be6c3d1b2bb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page