Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help

The search service can find package by either name (apache), provides(webserver), absolute file names (/usr/bin/apache), binaries (gprof) or shared libraries (libXm.so.2) in standard path. It does not support multiple arguments yet...

The System and Arch are optional added filters, for example System could be "redhat", "redhat-7.2", "mandrake" or "gnome", Arch could be "i386" or "src", etc. depending on your system.

System Arch

RPM resource python312-scandir

``scandir()`` is a directory iteration function like ``os.listdir()``, except that instead of returning a list of bare filenames, it yields ``DirEntry`` objects that include file type and stat information along with the name. Using ``scandir()`` increases the speed of ``os.walk()`` by 2-20 times (depending on the platform and file system) by avoiding unnecessary calls to ``os.stat()`` in most cases. ``scandir`` has been included in the Python 3.5 standard library as ``os.scandir()``, and the related performance improvements to ``os.walk()`` have also been included. So if you're lucky enough to be using Python 3.5 (release date September 13, 2015) you get the benefit immediately, otherwise just `download this module from PyPI <https://pypi.python.org/pypi/scandir>`_, install it with ``pip install scandir``, and then do something like this in your code:: try: from os import scandir, walk except ImportError: from scandir import scandir, walk `PEP 471 <https://www.python.org/dev/peps/pep-0471/>`_, which is the PEP that proposes including ``scandir`` in the Python standard library, was `accepted <https://mail.python.org/pipermail/python-dev/2014-July/135561.html>`_ in July 2014 by Victor Stinner, the BDFL-delegate for the PEP. This ``scandir`` module is intended to work on Python 2.6+ and Python 3.2+ (and it has been tested on those versions).

Found 1 sites for python312-scandir

Found 8 RPM for python312-scandir

PackageSummaryDistributionDownload
python312-scandir-1.10.0-4.9.i586.htmlScandir, a better directory iterator and faster oswalkOpenSuSE Ports Tumbleweed for i586python312-scandir-1.10.0-4.9.i586.rpm
python312-scandir-1.10.0-4.8.x86_64.htmlScandir, a better directory iterator and faster oswalkOpenSuSE Tumbleweed for x86_64python312-scandir-1.10.0-4.8.x86_64.rpm
python312-scandir-1.10.0-4.6.aarch64.htmlScandir, a better directory iterator and faster oswalkOpenSuSE Ports Tumbleweed for aarch64python312-scandir-1.10.0-4.6.aarch64.rpm
python312-scandir-1.10.0-4.6.armv6hl.htmlScandir, a better directory iterator and faster oswalkOpenSuSE Ports Tumbleweed for armv6hlpython312-scandir-1.10.0-4.6.armv6hl.rpm
python312-scandir-1.10.0-4.6.armv7hl.htmlScandir, a better directory iterator and faster oswalkOpenSuSE Ports Tumbleweed for armv7hlpython312-scandir-1.10.0-4.6.armv7hl.rpm
python312-scandir-1.10.0-4.6.ppc64le.htmlScandir, a better directory iterator and faster oswalkOpenSuSE Ports Tumbleweed for ppc64lepython312-scandir-1.10.0-4.6.ppc64le.rpm
python312-scandir-1.10.0-4.5.s390x.htmlScandir, a better directory iterator and faster oswalkOpenSuSE Ports Tumbleweed for s390xpython312-scandir-1.10.0-4.5.s390x.rpm
python312-scandir-1.10.0-4.4.riscv64.htmlScandir, a better directory iterator and faster oswalkOpenSuSE Ports Tumbleweed for riscv64python312-scandir-1.10.0-4.4.riscv64.rpm

Generated by rpm2html 1.6

Fabrice Bellet