| Name: | python2-scandir |
|---|---|
| Version: | 1.8 |
| Release: | 1.el7 |
| Architecture: | x86_64 |
| Group: | Unspecified |
| Size: | 153040 |
| License: | BSD |
| RPM: | python2-scandir-1.8-1.el7.x86_64.rpm |
| Source RPM: | python-scandir-1.8-1.el7.src.rpm |
| Build Date: | Fri Sep 07 2018 |
| Build Host: | x86-ol7-builder-03.us.oracle.com |
| Vendor: | Oracle America |
| URL: | https://github.com/benhoyt/scandir |
| Summary: | A better directory iterator and faster os.walk() for Python |
| Description: | 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 is included in the Python 3.5+ standard library. |