{ "info": { "author": "Ben Hoyt", "author_email": "benhoyt@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Topic :: System :: Filesystems", "Topic :: System :: Operating System" ], "description": "scandir, a better directory iterator and faster os.walk()\r\n=========================================================\r\n\r\n.. image:: https://img.shields.io/pypi/v/scandir.svg\r\n :target: https://pypi.python.org/pypi/scandir\r\n :alt: scandir on PyPI (Python Package Index)\r\n\r\n.. image:: https://travis-ci.org/benhoyt/scandir.svg?branch=master\r\n :target: https://travis-ci.org/benhoyt/scandir\r\n :alt: Travis CI tests (Linux)\r\n\r\n.. image:: https://ci.appveyor.com/api/projects/status/github/benhoyt/scandir?branch=master&svg=true\r\n :target: https://ci.appveyor.com/project/benhoyt/scandir\r\n :alt: Appveyor tests (Windows)\r\n\r\n\r\n``scandir()`` is a directory iteration function like ``os.listdir()``,\r\nexcept that instead of returning a list of bare filenames, it yields\r\n``DirEntry`` objects that include file type and stat information along\r\nwith the name. Using ``scandir()`` increases the speed of ``os.walk()``\r\nby 2-20 times (depending on the platform and file system) by avoiding\r\nunnecessary calls to ``os.stat()`` in most cases.\r\n\r\n\r\nNow included in a Python near you!\r\n----------------------------------\r\n\r\n``scandir`` has been included in the Python 3.5 standard library as\r\n``os.scandir()``, and the related performance improvements to\r\n``os.walk()`` have also been included. So if you're lucky enough to be\r\nusing Python 3.5 (release date September 13, 2015) you get the benefit\r\nimmediately, otherwise just\r\n`download this module from PyPI `_,\r\ninstall it with ``pip install scandir``, and then do something like\r\nthis in your code:\r\n\r\n.. code-block:: python\r\n\r\n # Use the built-in version of scandir/walk if possible, otherwise\r\n # use the scandir module version\r\n try:\r\n from os import scandir, walk\r\n except ImportError:\r\n from scandir import scandir, walk\r\n\r\n`PEP 471 `_, which is the\r\nPEP that proposes including ``scandir`` in the Python standard library,\r\nwas `accepted `_\r\nin July 2014 by Victor Stinner, the BDFL-delegate for the PEP.\r\n\r\nThis ``scandir`` module is intended to work on Python 2.7+ and Python\r\n3.4+ (and it has been tested on those versions).\r\n\r\n\r\nBackground\r\n----------\r\n\r\nPython's built-in ``os.walk()`` is significantly slower than it needs to be,\r\nbecause -- in addition to calling ``listdir()`` on each directory -- it calls\r\n``stat()`` on each file to determine whether the filename is a directory or not.\r\nBut both ``FindFirstFile`` / ``FindNextFile`` on Windows and ``readdir`` on Linux/OS\r\nX already tell you whether the files returned are directories or not, so\r\nno further ``stat`` system calls are needed. In short, you can reduce the number\r\nof system calls from about 2N to N, where N is the total number of files and\r\ndirectories in the tree.\r\n\r\nIn practice, removing all those extra system calls makes ``os.walk()`` about\r\n**7-50 times as fast on Windows, and about 3-10 times as fast on Linux and Mac OS\r\nX.** So we're not talking about micro-optimizations. See more benchmarks\r\nin the \"Benchmarks\" section below.\r\n\r\nSomewhat relatedly, many people have also asked for a version of\r\n``os.listdir()`` that yields filenames as it iterates instead of returning them\r\nas one big list. This improves memory efficiency for iterating very large\r\ndirectories.\r\n\r\nSo as well as a faster ``walk()``, scandir adds a new ``scandir()`` function.\r\nThey're pretty easy to use, but see \"The API\" below for the full docs.\r\n\r\n\r\nBenchmarks\r\n----------\r\n\r\nBelow are results showing how many times as fast ``scandir.walk()`` is than\r\n``os.walk()`` on various systems, found by running ``benchmark.py`` with no\r\narguments:\r\n\r\n==================== ============== =============\r\nSystem version Python version Times as fast\r\n==================== ============== =============\r\nWindows 7 64-bit 2.7.7 64-bit 10.4\r\nWindows 7 64-bit SSD 2.7.7 64-bit 10.3\r\nWindows 7 64-bit NFS 2.7.6 64-bit 36.8\r\nWindows 7 64-bit SSD 3.4.1 64-bit 9.9\r\nWindows 7 64-bit SSD 3.5.0 64-bit 9.5\r\nUbuntu 14.04 64-bit 2.7.6 64-bit 5.8\r\nMac OS X 10.9.3 2.7.5 64-bit 3.8\r\n==================== ============== =============\r\n\r\nAll of the above tests were done using the fast C version of scandir\r\n(source code in ``_scandir.c``).\r\n\r\nNote that the gains are less than the above on smaller directories and greater\r\non larger directories. This is why ``benchmark.py`` creates a test directory\r\ntree with a standardized size.\r\n\r\n\r\nThe API\r\n-------\r\n\r\nwalk()\r\n~~~~~~\r\n\r\nThe API for ``scandir.walk()`` is exactly the same as ``os.walk()``, so just\r\n`read the Python docs `_.\r\n\r\nscandir()\r\n~~~~~~~~~\r\n\r\nThe full docs for ``scandir()`` and the ``DirEntry`` objects it yields are\r\navailable in the `Python documentation here `_. \r\nBut below is a brief summary as well.\r\n\r\n scandir(path='.') -> iterator of DirEntry objects for given path\r\n\r\nLike ``listdir``, ``scandir`` calls the operating system's directory\r\niteration system calls to get the names of the files in the given\r\n``path``, but it's different from ``listdir`` in two ways:\r\n\r\n* Instead of returning bare filename strings, it returns lightweight\r\n ``DirEntry`` objects that hold the filename string and provide\r\n simple methods that allow access to the additional data the\r\n operating system may have returned.\r\n\r\n* It returns a generator instead of a list, so that ``scandir`` acts\r\n as a true iterator instead of returning the full list immediately.\r\n\r\n``scandir()`` yields a ``DirEntry`` object for each file and\r\nsub-directory in ``path``. Just like ``listdir``, the ``'.'``\r\nand ``'..'`` pseudo-directories are skipped, and the entries are\r\nyielded in system-dependent order. Each ``DirEntry`` object has the\r\nfollowing attributes and methods:\r\n\r\n* ``name``: the entry's filename, relative to the scandir ``path``\r\n argument (corresponds to the return values of ``os.listdir``)\r\n\r\n* ``path``: the entry's full path name (not necessarily an absolute\r\n path) -- the equivalent of ``os.path.join(scandir_path, entry.name)``\r\n\r\n* ``is_dir(*, follow_symlinks=True)``: similar to\r\n ``pathlib.Path.is_dir()``, but the return value is cached on the\r\n ``DirEntry`` object; doesn't require a system call in most cases;\r\n don't follow symbolic links if ``follow_symlinks`` is False\r\n\r\n* ``is_file(*, follow_symlinks=True)``: similar to\r\n ``pathlib.Path.is_file()``, but the return value is cached on the\r\n ``DirEntry`` object; doesn't require a system call in most cases; \r\n don't follow symbolic links if ``follow_symlinks`` is False\r\n\r\n* ``is_symlink()``: similar to ``pathlib.Path.is_symlink()``, but the\r\n return value is cached on the ``DirEntry`` object; doesn't require a\r\n system call in most cases\r\n\r\n* ``stat(*, follow_symlinks=True)``: like ``os.stat()``, but the\r\n return value is cached on the ``DirEntry`` object; does not require a\r\n system call on Windows (except for symlinks); don't follow symbolic links\r\n (like ``os.lstat()``) if ``follow_symlinks`` is False\r\n\r\n* ``inode()``: return the inode number of the entry; the return value\r\n is cached on the ``DirEntry`` object\r\n\r\nHere's a very simple example of ``scandir()`` showing use of the\r\n``DirEntry.name`` attribute and the ``DirEntry.is_dir()`` method:\r\n\r\n.. code-block:: python\r\n\r\n def subdirs(path):\r\n \"\"\"Yield directory names not starting with '.' under given path.\"\"\"\r\n for entry in os.scandir(path):\r\n if not entry.name.startswith('.') and entry.is_dir():\r\n yield entry.name\r\n\r\nThis ``subdirs()`` function will be significantly faster with scandir\r\nthan ``os.listdir()`` and ``os.path.isdir()`` on both Windows and POSIX\r\nsystems, especially on medium-sized or large directories.\r\n\r\n\r\nFurther reading\r\n---------------\r\n\r\n* `The Python docs for scandir `_\r\n* `PEP 471 `_, the\r\n (now-accepted) Python Enhancement Proposal that proposed adding\r\n ``scandir`` to the standard library -- a lot of details here,\r\n including rejected ideas and previous discussion\r\n\r\n\r\nFlames, comments, bug reports\r\n-----------------------------\r\n\r\nPlease send flames, comments, and questions about scandir to Ben Hoyt:\r\n\r\nhttp://benhoyt.com/\r\n\r\nFile bug reports for the version in the Python 3.5 standard library\r\n`here `_, or file bug reports\r\nor feature requests for this module at the GitHub project page:\r\n\r\nhttps://github.com/benhoyt/scandir\r\n\r\n\r\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/benhoyt/scandir", "keywords": "", "license": "New BSD License", "maintainer": "", "maintainer_email": "", "name": "scandir", "package_url": "https://pypi.org/project/scandir/", "platform": "", "project_url": "https://pypi.org/project/scandir/", "project_urls": { "Homepage": "https://github.com/benhoyt/scandir" }, "release_url": "https://pypi.org/project/scandir/1.10.0/", "requires_dist": null, "requires_python": "", "summary": "scandir, a better directory iterator and faster os.walk()", "version": "1.10.0" }, "last_serial": 4919273, "releases": { "0.4": [ { "comment_text": "", "digests": { "md5": "403210b2e3a0b7aecab6a5851a030354", "sha256": "a7665a760cba1b1f9a60cc77e149af547a1a22754dbce52968ea2f80a450a2aa" }, "downloads": -1, "filename": "scandir-0.4.tar.gz", "has_sig": false, "md5_digest": "403210b2e3a0b7aecab6a5851a030354", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17696, "upload_time": "2014-05-31T10:59:57", "url": "https://files.pythonhosted.org/packages/32/22/328ff34c06e681d677f5d13b9716287941f928bc76705c15bf0a5f028adf/scandir-0.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "497bb65286e87bd79a07d1f6aa30f6a1", "sha256": "caf4ab19554fe6e1c234db25dd21fc69bc3bd31278e2ec046b82a33b0b8db6ff" }, "downloads": -1, "filename": "scandir-0.4.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "497bb65286e87bd79a07d1f6aa30f6a1", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 234920, "upload_time": "2014-05-31T11:00:00", "url": "https://files.pythonhosted.org/packages/77/17/e90ea30b4c92590319d46d0b75d8d8eb0deaf8bd4f70fa613f5381519b84/scandir-0.4.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "3bedda31b6aa1a14e7a8cfe04ee1878f", "sha256": "445434d7478d62b4fd4a001585509cb978138e746c4e9b3522e1c18bd0c8defd" }, "downloads": -1, "filename": "scandir-0.4.zip", "has_sig": false, "md5_digest": "3bedda31b6aa1a14e7a8cfe04ee1878f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21449, "upload_time": "2014-05-31T10:59:54", "url": "https://files.pythonhosted.org/packages/3a/05/f4936fde0aa8ce3b646b6014c59417c8cc7c1958df41e05bc77fcb098743/scandir-0.4.zip" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "48762ab6dd8794f14d1e8203602ff7c7", "sha256": "330590a0216ddd85c8f2bd24f4f5139fd441ce7847b2f21eb8a9423224131946" }, "downloads": -1, "filename": "scandir-0.5.tar.gz", "has_sig": false, "md5_digest": "48762ab6dd8794f14d1e8203602ff7c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22692, "upload_time": "2014-06-20T03:18:00", "url": "https://files.pythonhosted.org/packages/a4/a5/676e192847862c15d494787b6c22cbad6ddc0dc779830f2038f0f584f13d/scandir-0.5.tar.gz" }, { "comment_text": "", "digests": { "md5": "119bf89975707adc24bec4ef92ab9573", "sha256": "8bc1878b0e7dd03a7401fcf39b08e357545b3ac5bae20f4dee0befaef9b30ea5" }, "downloads": -1, "filename": "scandir-0.5.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "119bf89975707adc24bec4ef92ab9573", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 235451, "upload_time": "2014-06-20T03:14:15", "url": "https://files.pythonhosted.org/packages/60/40/e1fbf6b216b9a16d7dcc6b9d4bcc4f0fd1b45a0da290b80e1e843b5be3c4/scandir-0.5.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "0b6e42145a8596f6480d2c483a24643a", "sha256": "29e4f8a244d409766263cd6fbc58ad55182812eab5b0c0caf1270125b602f690" }, "downloads": -1, "filename": "scandir-0.5.zip", "has_sig": false, "md5_digest": "0b6e42145a8596f6480d2c483a24643a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26866, "upload_time": "2014-06-20T03:14:13", "url": "https://files.pythonhosted.org/packages/55/ab/10194045ec802aa825d75c6318ce18868c11d1df34655f30ce222ae355ad/scandir-0.5.zip" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "aaea701193d32554efa167b62ce629b3", "sha256": "3b1817f7de15fb20dee71c1519b665be34e50222131ec28483644c172565eba2" }, "downloads": -1, "filename": "scandir-0.6.tar.gz", "has_sig": false, "md5_digest": "aaea701193d32554efa167b62ce629b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26185, "upload_time": "2014-07-08T04:31:05", "url": "https://files.pythonhosted.org/packages/8e/36/af0953f6fd80aed58239c1a58753ff3ebcb7b0dd56e8c65ac561760972a9/scandir-0.6.tar.gz" }, { "comment_text": "", "digests": { "md5": "3bc15fb85d044465abb336dffb11c701", "sha256": "cc13b2f60d615a29e7d4183e4b62601bb7b6f600e141473ec1f91168f91a04c9" }, "downloads": -1, "filename": "scandir-0.6.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "3bc15fb85d044465abb336dffb11c701", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 235574, "upload_time": "2014-07-08T04:31:10", "url": "https://files.pythonhosted.org/packages/0c/7f/69ba6d477c45dc29c34a5740d324186ac3288295c72bf65b6feb2808435c/scandir-0.6.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "778b2ce142aaa9fcc0dcb7dc662989e1", "sha256": "5db5fa5882868927eeaaf7b8cd622b110042ba06315709f3d5f8d19255c57a17" }, "downloads": -1, "filename": "scandir-0.6.zip", "has_sig": false, "md5_digest": "778b2ce142aaa9fcc0dcb7dc662989e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30436, "upload_time": "2014-07-08T04:31:07", "url": "https://files.pythonhosted.org/packages/b1/1b/a9943dea8a03c976184379eb13998fe63b6189db1d9faa8d23b60a8d7020/scandir-0.6.zip" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "7e1075bd63bb7903c74c60ad12dd02ef", "sha256": "39fc21fe76eb7da06e11bf66294b296bdc297210bd9c215f0ba39233a6121ae4" }, "downloads": -1, "filename": "scandir-0.8.tar.gz", "has_sig": false, "md5_digest": "7e1075bd63bb7903c74c60ad12dd02ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15856, "upload_time": "2014-07-22T02:16:14", "url": "https://files.pythonhosted.org/packages/cc/1a/78d9c4fe1fa93cc3f21235acd1561aa57fb01b720e0e1f9346f0bdaba9a5/scandir-0.8.tar.gz" }, { "comment_text": "", "digests": { "md5": "38bba6038ecf63c4f3ee8919e78eb8c7", "sha256": "a46e7feaa9067f07c28f707b6ff16fc7fe33b4d40b41ac9116c28ebb24ecda60" }, "downloads": -1, "filename": "scandir-0.8.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "38bba6038ecf63c4f3ee8919e78eb8c7", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 235731, "upload_time": "2014-07-22T02:16:21", "url": "https://files.pythonhosted.org/packages/c2/df/768b6a48e90f7df58b370c7627c24bdd007e66c5cffa804b513039684c4f/scandir-0.8.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "91954989cd0350b3026959af745610cc", "sha256": "40c4d9e3ba6c35129547242b52dba5f7ba89c8281f63c888437ce44166be7627" }, "downloads": -1, "filename": "scandir-0.8.zip", "has_sig": false, "md5_digest": "91954989cd0350b3026959af745610cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19116, "upload_time": "2014-07-22T02:16:17", "url": "https://files.pythonhosted.org/packages/c5/f4/e37cf215661864305aa3f1bab710fb3496c727e8e6e089968f642cdb808a/scandir-0.8.zip" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "0a60b6fc5914cf83940ce9f63222eae7", "sha256": "2a115e7793f3ab0efec76f88f25f182ae6df5b4ff5700d13f1d0f39b5f94f1bc" }, "downloads": -1, "filename": "scandir-0.9.tar.gz", "has_sig": false, "md5_digest": "0a60b6fc5914cf83940ce9f63222eae7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23020, "upload_time": "2014-12-05T01:27:53", "url": "https://files.pythonhosted.org/packages/f2/a3/32be28185cb1614ce8743fb62cfb0890f82faed779a1aeee9a377a9dbf3d/scandir-0.9.tar.gz" }, { "comment_text": "", "digests": { "md5": "95c79b4c788a46f4d8467b3ccef82e6a", "sha256": "3f99d6a43eb724495441bf66d0ffd6169a8c35ecce2fba2cfa696a5e0f4e77d5" }, "downloads": -1, "filename": "scandir-0.9.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "95c79b4c788a46f4d8467b3ccef82e6a", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 236078, "upload_time": "2014-12-05T01:28:00", "url": "https://files.pythonhosted.org/packages/4c/89/b9361d808f0f70b426f460bb31765f2031d4a273578c933364725fd13ba2/scandir-0.9.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "a108d04e15788b978f2fb7491200b99c", "sha256": "cdfe76daea890cebbaa3326b319447edc97cfd9e168cd050ebe7316db2e701af" }, "downloads": -1, "filename": "scandir-0.9.zip", "has_sig": false, "md5_digest": "a108d04e15788b978f2fb7491200b99c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26351, "upload_time": "2014-12-05T01:27:56", "url": "https://files.pythonhosted.org/packages/18/d2/c1dbe15186dc2cdd4c0b7c6d2ccf819dc76c7d889a6db89cd9bdb2e0b92b/scandir-0.9.zip" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "0dde467c89434d11341b7502c31768ed", "sha256": "e3757b6872e6ab57844605eff3f1cbbf6e08a4acf5c17e7794ef715f04a4f4d4" }, "downloads": -1, "filename": "scandir-1.0.tar.gz", "has_sig": false, "md5_digest": "0dde467c89434d11341b7502c31768ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24159, "upload_time": "2015-05-15T18:48:39", "url": "https://files.pythonhosted.org/packages/9c/9a/6c60c4e1afb37f8e32c40eb95d036109b4e61aea60374f7f176f907efaad/scandir-1.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "ee4caadc93e4c37d8f5a8a3adaa8aaf0", "sha256": "cbc94bd18fd69ae05770e0bd55d2e4170985da99dd80fc1eb961ab09e9301ead" }, "downloads": -1, "filename": "scandir-1.0.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "ee4caadc93e4c37d8f5a8a3adaa8aaf0", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 240489, "upload_time": "2015-05-15T18:48:46", "url": "https://files.pythonhosted.org/packages/d5/bd/75ce0af85b5b7062bfadc4d2f1b968f6d991ad56608af0a684761f9e074e/scandir-1.0.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "4e44ef1c79fac0ca11721f72d6df1a60", "sha256": "24153e3f20f073f051ba07f1b733e683430ba6485a163f49efab5e0928737e88" }, "downloads": -1, "filename": "scandir-1.0.zip", "has_sig": false, "md5_digest": "4e44ef1c79fac0ca11721f72d6df1a60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26923, "upload_time": "2015-05-15T18:48:43", "url": "https://files.pythonhosted.org/packages/d8/0c/149d490018ec0132e470613ef0bd4340d3d610d97a04d468660e2669c718/scandir-1.0.zip" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "6b6b777bcc119429e8f86bfe54be2635", "sha256": "3a3be7a7ef07f59731a084832f231032fd87df6200e6a703695ac1832b190d28" }, "downloads": -1, "filename": "scandir-1.1.tar.gz", "has_sig": false, "md5_digest": "6b6b777bcc119429e8f86bfe54be2635", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24673, "upload_time": "2015-05-22T01:45:51", "url": "https://files.pythonhosted.org/packages/79/aa/85018ce834b8b8437e1f1d4fac1cef51b8b529e3a45c76ad7c15295456fe/scandir-1.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "72b5c3a5ee7e1a213e65d5a2e10d4178", "sha256": "e83fe00d630756d0f15a969dceb2da04464a14d0c02842a1562a7c8f7c962e99" }, "downloads": -1, "filename": "scandir-1.1.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "72b5c3a5ee7e1a213e65d5a2e10d4178", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 240677, "upload_time": "2015-05-22T01:45:58", "url": "https://files.pythonhosted.org/packages/fb/2b/16c0db8c450ffc73518076c24f5a0e6bdaf3dc40dc9b50bbca6afdb32ec7/scandir-1.1.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "9804390d2b952f0345cea0aa5074af2c", "sha256": "c2d73ef989def870a7f32af8dafa94c1f55064f711f02b9656979b6468ee532c" }, "downloads": -1, "filename": "scandir-1.1.zip", "has_sig": false, "md5_digest": "9804390d2b952f0345cea0aa5074af2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27685, "upload_time": "2015-05-22T01:45:54", "url": "https://files.pythonhosted.org/packages/f2/f4/06c89d0d94a3205b81fb029b357226d7f33e990e5e0a5ebcd676e6006438/scandir-1.1.zip" } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "ab1698106fc8a94dee536c93d51be79a", "sha256": "92c85ac42f41ffdc35b6da57ed991575bdbe69db895507af88b9f499b701c188" }, "downloads": -1, "filename": "scandir-1.10.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "ab1698106fc8a94dee536c93d51be79a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20479, "upload_time": "2019-03-09T17:58:19", "url": "https://files.pythonhosted.org/packages/c6/8c/43cc3799c79c435d1a236783993b2e04a2c750b4f91ef3630ec442490df5/scandir-1.10.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "203f49b490e2ec2b2057f03e76985bb2", "sha256": "cb925555f43060a1745d0a321cca94bcea927c50114b623d73179189a4e100ac" }, "downloads": -1, "filename": "scandir-1.10.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "203f49b490e2ec2b2057f03e76985bb2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20919, "upload_time": "2019-03-09T17:58:21", "url": "https://files.pythonhosted.org/packages/f9/d0/6b7b38eaf9964510f5c32aa5aaf9f419864d2e0ebe34274e6cba5689a0c5/scandir-1.10.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5a5261ebc3309845a08723ce7b605b06", "sha256": "2c712840c2e2ee8dfaf36034080108d30060d759c7b73a01a52251cc8989f11f" }, "downloads": -1, "filename": "scandir-1.10.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "5a5261ebc3309845a08723ce7b605b06", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 20152, "upload_time": "2019-03-09T17:58:22", "url": "https://files.pythonhosted.org/packages/04/86/417b435bd94a4e0176c10acea5b866a47a045848a346c6930fc846b2f016/scandir-1.10.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b76f7c1c1513a9006b1aef0562712a26", "sha256": "2586c94e907d99617887daed6c1d102b5ca28f1085f90446554abf1faf73123e" }, "downloads": -1, "filename": "scandir-1.10.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "b76f7c1c1513a9006b1aef0562712a26", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 20497, "upload_time": "2019-03-09T17:58:24", "url": "https://files.pythonhosted.org/packages/77/3a/7f6111552b4736a08a72c37d6b8852cf77c02042a3124a8806f67008ad45/scandir-1.10.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "695cc9235f54d915e3b79d470bb35274", "sha256": "2b8e3888b11abb2217a32af0766bc06b65cc4a928d8727828ee68af5a967fa6f" }, "downloads": -1, "filename": "scandir-1.10.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "695cc9235f54d915e3b79d470bb35274", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22110, "upload_time": "2019-03-09T17:58:25", "url": "https://files.pythonhosted.org/packages/cd/a1/d5c3e22090ebead6d24abbe0f85641f002db44316c0a422d68d2fa258a8c/scandir-1.10.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "5468e5503744da4f2064a773667cd9f5", "sha256": "8c5922863e44ffc00c5c693190648daa6d15e7c1207ed02d6f46a8dcc2869d32" }, "downloads": -1, "filename": "scandir-1.10.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5468e5503744da4f2064a773667cd9f5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22845, "upload_time": "2019-03-09T17:58:26", "url": "https://files.pythonhosted.org/packages/b7/5d/c0dc3933bd79fdca4780f84fffb2291672f3db8f0093c5d2ce629b7cb656/scandir-1.10.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5139928bafc36cb763063091697a0f14", "sha256": "2ae41f43797ca0c11591c0c35f2f5875fa99f8797cb1a1fd440497ec0ae4b022" }, "downloads": -1, "filename": "scandir-1.10.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "5139928bafc36cb763063091697a0f14", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22111, "upload_time": "2019-03-09T17:58:28", "url": "https://files.pythonhosted.org/packages/25/c5/257e7f38127de5221a57e6afd0eb6ad0a85412c92644bf8265f20085b22a/scandir-1.10.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "50303dbc67562351c895ff31b2f6bba1", "sha256": "7d2d7a06a252764061a020407b997dd036f7bd6a175a5ba2b345f0a357f0b3f4" }, "downloads": -1, "filename": "scandir-1.10.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "50303dbc67562351c895ff31b2f6bba1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22847, "upload_time": "2019-03-09T17:58:29", "url": "https://files.pythonhosted.org/packages/a0/c3/8b8244553f4cf8682825e46d264f0bf3b8f7a51c9ba4745c8aa9182da4e5/scandir-1.10.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5dbab653f3373e4a3b6467c508c7c817", "sha256": "67f15b6f83e6507fdc6fca22fedf6ef8b334b399ca27c6b568cbfaa82a364173" }, "downloads": -1, "filename": "scandir-1.10.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "5dbab653f3373e4a3b6467c508c7c817", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22109, "upload_time": "2019-03-09T17:58:30", "url": "https://files.pythonhosted.org/packages/9b/47/4bf2941582c731b0c3a7aee7a3129063fe7dad5382cd662f3766dac619b2/scandir-1.10.0-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "46b00959354c0a833473e5d0c82b38d0", "sha256": "b24086f2375c4a094a6b51e78b4cf7ca16c721dcee2eddd7aa6494b42d6d519d" }, "downloads": -1, "filename": "scandir-1.10.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "46b00959354c0a833473e5d0c82b38d0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22842, "upload_time": "2019-03-09T17:58:32", "url": "https://files.pythonhosted.org/packages/cb/06/cee31a831784ae66073fff7df58f823a1f6bc3947dc48a76f877b17eb52b/scandir-1.10.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f8378f4d9f95a6a78e97ab01aa900c1d", "sha256": "4d4631f6062e658e9007ab3149a9b914f3548cb38bfb021c64f39a025ce578ae" }, "downloads": -1, "filename": "scandir-1.10.0.tar.gz", "has_sig": false, "md5_digest": "f8378f4d9f95a6a78e97ab01aa900c1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33311, "upload_time": "2019-03-09T17:58:33", "url": "https://files.pythonhosted.org/packages/df/f5/9c052db7bd54d0cbf1bc0bb6554362bba1012d03e5888950a4f5c5dadc4e/scandir-1.10.0.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "3a317b482128e072f6cfb3bb2ce52e06", "sha256": "e31c0ce9a21cbb4f3fe838fedd7072bdd0b233d80203eafe46872a02f985c1ce" }, "downloads": -1, "filename": "scandir-1.2.tar.gz", "has_sig": false, "md5_digest": "3a317b482128e072f6cfb3bb2ce52e06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25206, "upload_time": "2016-01-03T00:07:33", "url": "https://files.pythonhosted.org/packages/8d/3d/983ace1ff2e0dd20a9e1f58b63984b0058a63bf8435cadddc036be098404/scandir-1.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "896625409dc758be28ce52e27abeeb27", "sha256": "c5b7cc400cf90abe039b238c723f0518fc53e4ddfc62f9f3380485a7d0583806" }, "downloads": -1, "filename": "scandir-1.2.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "896625409dc758be28ce52e27abeeb27", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 240796, "upload_time": "2016-01-03T00:07:46", "url": "https://files.pythonhosted.org/packages/8d/eb/a8a5477068f6012f5a0cf29462aac395ba1eec3ed02ef12a82f5e7d8b1a8/scandir-1.2.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "b3bec12112560fca0a27c56a70a119ba", "sha256": "2a9bb1ed2510399c5d13882253c0b938b3d35939d5216521fc443ef8b5dfa809" }, "downloads": -1, "filename": "scandir-1.2.zip", "has_sig": false, "md5_digest": "b3bec12112560fca0a27c56a70a119ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28348, "upload_time": "2016-01-03T00:07:40", "url": "https://files.pythonhosted.org/packages/87/cc/58734a67eb9d46a6f8580ef27b793329145a4f016929acf83ec864d177b6/scandir-1.2.zip" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "e7a59e446dad6a1abdbed3c236f12871", "sha256": "b57987392228376a6782ec26aeb5cae7878c7d426e85af85753b7c5ee6e14012" }, "downloads": -1, "filename": "scandir-1.3.tar.gz", "has_sig": false, "md5_digest": "e7a59e446dad6a1abdbed3c236f12871", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25295, "upload_time": "2016-08-27T19:17:13", "url": "https://files.pythonhosted.org/packages/b1/73/493f392cd7e1549361e7727f75dea1c9f3a627350973018857578c8c5598/scandir-1.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "7f274eaeaa92704f51f2042f2fbe335b", "sha256": "46cbaa8bad687481cbe8dc9e959e4fd84017899d51c777bf10b94aac486a1668" }, "downloads": -1, "filename": "scandir-1.3.zip", "has_sig": false, "md5_digest": "7f274eaeaa92704f51f2042f2fbe335b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28558, "upload_time": "2016-08-27T19:17:15", "url": "https://files.pythonhosted.org/packages/19/a5/cd03025d882acedf2d7d3b92e108a147463ed71346e215b1ee7850a1a1cf/scandir-1.3.zip" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "bdac33e1548a18598da6c141c84af407", "sha256": "ada8d3ddc82fd168b3f46feb393d37c722ed0553a10a3ce5426ddc5ec17d597a" }, "downloads": -1, "filename": "scandir-1.4.tar.gz", "has_sig": false, "md5_digest": "bdac33e1548a18598da6c141c84af407", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28780, "upload_time": "2016-11-11T21:15:39", "url": "https://files.pythonhosted.org/packages/95/40/ddbcd295ee58d5c1126645890bcf87853e4075547308884e4f8ada27f195/scandir-1.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "fec8cf24c2fef2b1f6e43f27cf8a1146", "sha256": "aa4705b089660d419ecea91f3f38f704fdb46006a6ecb53732a224c24ec4dab3" }, "downloads": -1, "filename": "scandir-1.4.zip", "has_sig": false, "md5_digest": "fec8cf24c2fef2b1f6e43f27cf8a1146", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34293, "upload_time": "2016-11-11T21:15:41", "url": "https://files.pythonhosted.org/packages/16/3d/afa548d8488589d6b24b76a6006ce13b3df2651fd2aac355203faa8ec6af/scandir-1.4.zip" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "a2713043de681bba6b084be42e7a8a44", "sha256": "c2612d1a487d80fb4701b4a91ca1b8f8a695b1ae820570815e85e8c8b23f1283" }, "downloads": -1, "filename": "scandir-1.5.tar.gz", "has_sig": false, "md5_digest": "a2713043de681bba6b084be42e7a8a44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29351, "upload_time": "2017-02-20T16:47:50", "url": "https://files.pythonhosted.org/packages/bd/f4/3143e0289faf0883228017dbc6387a66d0b468df646645e29e1eb89ea10e/scandir-1.5.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "369517d3cd6d189afaefe7149adecc92", "sha256": "913d0d04f3ea8f38a52a38e930a08deacd3643d71875a0751a5c01e006102998" }, "downloads": -1, "filename": "scandir-1.6-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "369517d3cd6d189afaefe7149adecc92", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 23287, "upload_time": "2017-10-03T18:40:56", "url": "https://files.pythonhosted.org/packages/ad/ba/72797d0d2cd7b9d2a2ca06bce94f59b8864dc737548c8169bbdf90be22ff/scandir-1.6-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c10274691cfddfa56d177d07226d015f", "sha256": "eb9d4a55bbeb0473a9c7d3ff81e12d44f0ad86daff48b02a95e2398c87ff1a00" }, "downloads": -1, "filename": "scandir-1.6-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "c10274691cfddfa56d177d07226d015f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 23750, "upload_time": "2017-09-29T12:49:51", "url": "https://files.pythonhosted.org/packages/11/a1/1d8ad784bb1755b74e4e1b6a0d44575444c9a0e3982a09e1af74e5791854/scandir-1.6-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0e3a66c862e82adbdf420d987c7cd8d3", "sha256": "2b28d118b372de8950f85b65d8ddfd43643f139a5b721281dd6532bed6b8321c" }, "downloads": -1, "filename": "scandir-1.6-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "0e3a66c862e82adbdf420d987c7cd8d3", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 22998, "upload_time": "2017-10-03T18:40:57", "url": "https://files.pythonhosted.org/packages/a8/40/accb6524ca41dfeb872dc47a1d1cd000ea17b0dc91defa00f908a2e4f08a/scandir-1.6-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "6c74841727effc3a9de31545b8df13e2", "sha256": "f14476800cfdd6809d5130840f78ca3c08aa25544113e2b33a0b2fe914583d69" }, "downloads": -1, "filename": "scandir-1.6-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "6c74841727effc3a9de31545b8df13e2", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 23367, "upload_time": "2017-09-29T12:49:52", "url": "https://files.pythonhosted.org/packages/1d/74/c7c1c39ef76cc7b26517f32cc9ff09b125f4cecfb0c209d323ebc10f7f61/scandir-1.6-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "382c448c73ac8f04494de8fcd378575b", "sha256": "6db5aadb667bb709cc23921203e9c27f08225506a9b84b7ebe2b645dee47a4dd" }, "downloads": -1, "filename": "scandir-1.6-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "382c448c73ac8f04494de8fcd378575b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 22958, "upload_time": "2017-10-03T18:40:58", "url": "https://files.pythonhosted.org/packages/c9/2a/882991b0a295c3d31e38b2d06f53f5c70cec395ecf888a1adebe0181b7df/scandir-1.6-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4107251dfa6c5216b9f4c7231fc50f23", "sha256": "8129fe7b9211d080457e0ff87397d85bb9be6ebb482b6be6ad9700059ac2e516" }, "downloads": -1, "filename": "scandir-1.6-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "4107251dfa6c5216b9f4c7231fc50f23", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 23320, "upload_time": "2017-09-29T12:49:53", "url": "https://files.pythonhosted.org/packages/c4/4a/b035858ccfc0149ebe6097398386cb3764e5de5efa35b8e278c56ab1ae93/scandir-1.6-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "246d08e1fe6c80756a59b133eadbf35f", "sha256": "8fe782abf9314f2733c09d2191c1b3047475218ddbae90052b5c0f1a4215d5e2" }, "downloads": -1, "filename": "scandir-1.6-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "246d08e1fe6c80756a59b133eadbf35f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24933, "upload_time": "2017-10-03T18:40:59", "url": "https://files.pythonhosted.org/packages/b6/ef/c6d7419e4f4dcb848981b7f6d8315eda16ba6da695d5c8e05825c313b744/scandir-1.6-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "f3a7775882e1fc58bf923d08edff7e2b", "sha256": "a93b6cc872eeccdc91b4c1c1e510820bee17f79c9455064fb8d3b73b51e52024" }, "downloads": -1, "filename": "scandir-1.6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f3a7775882e1fc58bf923d08edff7e2b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 25656, "upload_time": "2017-09-29T12:49:55", "url": "https://files.pythonhosted.org/packages/4d/e7/8c8274f66aa02c7d10ace8b66d629ee40509a25e7dc4a70f2ff2c2fa074c/scandir-1.6-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6f4111b493e90104798e459349180cc8", "sha256": "9851e782da220073093da68b3451e3c33b10f84eca2aec17a24661c7c63357a2" }, "downloads": -1, "filename": "scandir-1.6-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "6f4111b493e90104798e459349180cc8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24933, "upload_time": "2017-10-03T18:41:01", "url": "https://files.pythonhosted.org/packages/a5/b0/bf8e5789e64834ae897880127f19c7efd15f5fbe4ea5250c3827cd888a0e/scandir-1.6-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d3a8f832d055207aee1a9f15e04ec867", "sha256": "937d27e367af994afd3792904b794a82645ea9616dd336f5030e0b50e527eb57" }, "downloads": -1, "filename": "scandir-1.6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d3a8f832d055207aee1a9f15e04ec867", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 25656, "upload_time": "2017-09-29T12:49:56", "url": "https://files.pythonhosted.org/packages/a0/ed/a5c8ba9d939611adfb909c647f04091549d54eab1b116bcf2431ff501713/scandir-1.6-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0180ddb97c96cbb2d4f25d2ae11c64ac", "sha256": "e0278a2d4bc6c0569aedbe66bf26c8ab5b2b08378b3289de49257f23ac624338" }, "downloads": -1, "filename": "scandir-1.6.tar.gz", "has_sig": false, "md5_digest": "0180ddb97c96cbb2d4f25d2ae11c64ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29670, "upload_time": "2017-09-29T12:43:48", "url": "https://files.pythonhosted.org/packages/77/3f/916f524f50ee65e3f465a280d2851bd63685250fddb3020c212b3977664d/scandir-1.6.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "0e11230ad303107878b45c467208c144", "sha256": "f39dd5affde2860fb28176d2233f318ccca97c55019407ee8172b3fba0b211db" }, "downloads": -1, "filename": "scandir-1.7-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "0e11230ad303107878b45c467208c144", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 23361, "upload_time": "2018-02-13T01:07:12", "url": "https://files.pythonhosted.org/packages/58/d2/188a7e8fa7905c4bb42f55e672a3ed45f2b726041b1398ad8c04c0914a24/scandir-1.7-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c4d62edc28ba5d048e270594dd5294c4", "sha256": "7729b8444c5f5187649ff58501e7c2ad22b84d7dc28f738f64c5b615913fec22" }, "downloads": -1, "filename": "scandir-1.7-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "c4d62edc28ba5d048e270594dd5294c4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 23803, "upload_time": "2018-02-13T01:07:14", "url": "https://files.pythonhosted.org/packages/e8/cf/c31ae350170504d204f08d2a51fbd56fea565c9031cddc84cc68ece3b0f6/scandir-1.7-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2858ddd0823c94ff04457dc5ac593f21", "sha256": "b6cb611a18a828146a178362a36a2c6557c51c596ded4314cb516dd8c947b4ce" }, "downloads": -1, "filename": "scandir-1.7-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "2858ddd0823c94ff04457dc5ac593f21", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 23055, "upload_time": "2018-02-13T01:07:16", "url": "https://files.pythonhosted.org/packages/03/28/7982073672e7620db4e8a94c59a2ef404754ee3b82c1d23da010a54c6619/scandir-1.7-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "98fe02f4cdfa500bcd4c73cb89a3e927", "sha256": "d985e36eb3effebb20434e6cd7495440b4ba676a22f3ec61e9fff9f3e2995238" }, "downloads": -1, "filename": "scandir-1.7-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "98fe02f4cdfa500bcd4c73cb89a3e927", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 23421, "upload_time": "2018-02-13T01:07:17", "url": "https://files.pythonhosted.org/packages/2b/ec/fa1d81e23137a18941d864af00d92e895498726a4e50e73a19e4f4664a0d/scandir-1.7-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cd2d80ab54417b30628e891fd1601540", "sha256": "24f32112c483ac6c4a40b62f1282e61ecca7977153b66a0d26a9583a716dcb64" }, "downloads": -1, "filename": "scandir-1.7-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "cd2d80ab54417b30628e891fd1601540", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 23033, "upload_time": "2018-02-13T01:07:19", "url": "https://files.pythonhosted.org/packages/e9/ab/3174f435b6f8bef3469d68e605c1b4d9ca75834fd2b30289dce82ad5d07b/scandir-1.7-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d385d46e8f84f467c3e8f1d7ca708887", "sha256": "b55a091b91f9e6c9c7129889b2f58df329530172a99172de9e784545342a45e6" }, "downloads": -1, "filename": "scandir-1.7-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "d385d46e8f84f467c3e8f1d7ca708887", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 23378, "upload_time": "2018-02-13T01:07:20", "url": "https://files.pythonhosted.org/packages/7c/26/4e187a07507815ce3888afcdf71d7b58e85df77d5fdf801944b463e6366e/scandir-1.7-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b90923e34f28baa691d2c603efb31bc2", "sha256": "f91418e82edb5a43b020fa15e30a41d730b71c5957536749366bf63cc05427b1" }, "downloads": -1, "filename": "scandir-1.7-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "b90923e34f28baa691d2c603efb31bc2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24995, "upload_time": "2018-02-13T01:07:23", "url": "https://files.pythonhosted.org/packages/45/bb/0d5432599fad9cddee1ec95b188f66534d00f9abea00e58f8209b8bb1d03/scandir-1.7-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "5e881b0e1899c67e6b15d3b6a3abf66d", "sha256": "6c80092f8fe3e62c3da3110067589c6661c722b0889906d2974e5150f1314523" }, "downloads": -1, "filename": "scandir-1.7-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5e881b0e1899c67e6b15d3b6a3abf66d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 25723, "upload_time": "2018-02-13T01:07:25", "url": "https://files.pythonhosted.org/packages/88/4f/82bb78b9d706d0eb72c89e4a457c96245272c75a06177b32a28fe554e0d2/scandir-1.7-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "19bb787e30bf17732f04405c2010d6a9", "sha256": "96dfc553f50946deb6d1cd762bac5cf122832c4aa253c885ca357ef53dd8d072" }, "downloads": -1, "filename": "scandir-1.7-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "19bb787e30bf17732f04405c2010d6a9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24997, "upload_time": "2018-02-13T01:07:27", "url": "https://files.pythonhosted.org/packages/9b/0b/4648de76277a6807d2c23ab1bb35ba6c1f82cf98f429c89cd43303872f9c/scandir-1.7-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "434217b9e6ca0416bfaf0a2374e5a428", "sha256": "8e3ca5925cc13787aeafbf08f055a8066c091fc20bfa8783235b916cf047afbe" }, "downloads": -1, "filename": "scandir-1.7-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "434217b9e6ca0416bfaf0a2374e5a428", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 25725, "upload_time": "2018-02-13T01:07:29", "url": "https://files.pythonhosted.org/packages/48/57/507dd79199dc37efaf882e5076b55d803c17abcb38360fc1f2d0796400cf/scandir-1.7-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "037e5f24d1a0e78b17faca72dea9555f", "sha256": "b2d55be869c4f716084a19b1e16932f0769711316ba62de941320bf2be84763d" }, "downloads": -1, "filename": "scandir-1.7.tar.gz", "has_sig": false, "md5_digest": "037e5f24d1a0e78b17faca72dea9555f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32812, "upload_time": "2018-02-12T21:00:05", "url": "https://files.pythonhosted.org/packages/13/bb/e541b74230bbf7a20a3949a2ee6631be299378a784f5445aa5d0047c192b/scandir-1.7.tar.gz" } ], "1.8": [ { "comment_text": "", "digests": { "md5": "e09f11275fd19a93038467e500bf7a5f", "sha256": "7f94d5967d61d1b5e415840b3a8995cb00a90893b9628451745e57a3749546d6" }, "downloads": -1, "filename": "scandir-1.8-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "e09f11275fd19a93038467e500bf7a5f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 19443, "upload_time": "2018-08-02T16:35:58", "url": "https://files.pythonhosted.org/packages/d0/a6/ca23bcd406a9d5fe9075defedf5efe2f53d9fd6eea2c074ad7afcdbc8ad4/scandir-1.8-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "ee4f06e236e43568c6af35967c898f7b", "sha256": "11e3bd756b13db4baca364985575eeef4781ce35ce66e2324811091b39b97cdb" }, "downloads": -1, "filename": "scandir-1.8-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "ee4f06e236e43568c6af35967c898f7b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 19883, "upload_time": "2018-08-02T16:35:59", "url": "https://files.pythonhosted.org/packages/f4/64/a89fe53f95c46c1411ed6f31b30fbb41e9f78632e150c44818a908a8af54/scandir-1.8-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "06a389c139444a172bfc2a7af5934e78", "sha256": "f70d557a271ee9973087dc704daea205c95f021ee149f1605592bb0b1571ad78" }, "downloads": -1, "filename": "scandir-1.8-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "06a389c139444a172bfc2a7af5934e78", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 19117, "upload_time": "2018-08-02T16:36:00", "url": "https://files.pythonhosted.org/packages/2e/0f/2f4132192c13ddc7a6ed861b53502b49e106ccd060be7f7a8ea1f983507f/scandir-1.8-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "23a06dc6682eaf5bf283e21fe51233e6", "sha256": "9f703e6b8eb53211d39c0f10e5c02f86e9a989fd44913b5c992259312d9bd59d" }, "downloads": -1, "filename": "scandir-1.8-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "23a06dc6682eaf5bf283e21fe51233e6", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 19461, "upload_time": "2018-08-02T16:36:02", "url": "https://files.pythonhosted.org/packages/d2/01/20217b3a24656e8a2dacd5a8b71722830fa012c3c20fa91b6c26644576e1/scandir-1.8-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6fb3077a887453653a85300d08bb951d", "sha256": "8231e327a3a1c090b4f09ba40cc0b75a85939812d0e8f4c83acd745df3ed6c23" }, "downloads": -1, "filename": "scandir-1.8-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "6fb3077a887453653a85300d08bb951d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 21076, "upload_time": "2018-08-02T16:36:03", "url": "https://files.pythonhosted.org/packages/ba/63/59ce9cad0f7b24afa9cfb474eaec8ded12babc43d6ac4e031a3f953e183d/scandir-1.8-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "13eff9aee36f77809d91017132f747f0", "sha256": "b0e0b4e6de8f8aae41a9fb4834127ee125668c363a79c62eb9f9c77de58e7b71" }, "downloads": -1, "filename": "scandir-1.8-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "13eff9aee36f77809d91017132f747f0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 21808, "upload_time": "2018-08-02T16:36:04", "url": "https://files.pythonhosted.org/packages/7d/2f/f13277f9a12cb62b42600b363268c40bf1e3d4cfcdea1066ca1950313119/scandir-1.8-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "42182b67fbf05100d4e48db968a62291", "sha256": "49345923704d611458335872925802620fcf895e1c67074dd8ea715e579f2581" }, "downloads": -1, "filename": "scandir-1.8-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "42182b67fbf05100d4e48db968a62291", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21074, "upload_time": "2018-08-02T16:36:05", "url": "https://files.pythonhosted.org/packages/1e/46/e31bfe000217aacf7fee372e37763706580bc5f26f3cab36171482f3f194/scandir-1.8-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "de2437f9263839d0bc24957d951fd035", "sha256": "01babbf0fea42a135f6e24747cac63225399d97a67a9a7eedc1f0510b63122db" }, "downloads": -1, "filename": "scandir-1.8-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "de2437f9263839d0bc24957d951fd035", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21808, "upload_time": "2018-08-02T16:36:06", "url": "https://files.pythonhosted.org/packages/03/eb/73497595944c7c16b9504ef9bd9242666eb1256af43da83f013dc01aa099/scandir-1.8-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "19a94ee400c6051583e7de2a0f4596ec", "sha256": "b009e15a3d73376a84f8d8fad9b5ab6d9f96cb7606bdb867a4c882f10508e57e" }, "downloads": -1, "filename": "scandir-1.8-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "19a94ee400c6051583e7de2a0f4596ec", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 21077, "upload_time": "2018-08-02T16:36:07", "url": "https://files.pythonhosted.org/packages/ef/4f/49767cffa4447f2512b9e74b89994683fc60b75058b3b32577e3024cb310/scandir-1.8-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "421f171d2bc7490e8c8cf3c827b447bd", "sha256": "0f0059d907817cd3c07f1b658611aabd1af0a4bdc4bb7b211dfd8962d5bd46ba" }, "downloads": -1, "filename": "scandir-1.8-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "421f171d2bc7490e8c8cf3c827b447bd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 21808, "upload_time": "2018-08-02T16:36:08", "url": "https://files.pythonhosted.org/packages/01/a0/cc973d20bfe083072f2d92dcc9e2c58574024e4292492ad9827b835c71c1/scandir-1.8-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5a2daeb6283319842c4a8d213df008e7", "sha256": "8d5011d3a99042c4d90e8adda0052d4475aae3d57bb927012267a6c59186d870" }, "downloads": -1, "filename": "scandir-1.8.tar.gz", "has_sig": false, "md5_digest": "5a2daeb6283319842c4a8d213df008e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33065, "upload_time": "2018-08-02T16:25:18", "url": "https://files.pythonhosted.org/packages/50/a4/141939a8d213b2cf1b1d6b2704c6f6c07d4f1903df532af887c8e64e6815/scandir-1.8.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "a9c09f99fe92be4b683bbdbf428f7d23", "sha256": "f5c71e29b4e2af7ccdc03a020c626ede51da471173b4a6ad1e904f2b2e04b4bd" }, "downloads": -1, "filename": "scandir-1.9.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "a9c09f99fe92be4b683bbdbf428f7d23", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 19526, "upload_time": "2018-08-10T13:28:23", "url": "https://files.pythonhosted.org/packages/9e/a5/56b4dec02b16bb720cac9872fccd63b61a815b70633ef15bfe3ea5ce4488/scandir-1.9.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "6449951c370cc2025d713d3f75394b2e", "sha256": "1b5c314e39f596875e5a95dd81af03730b338c277c54a454226978d5ba95dbb6" }, "downloads": -1, "filename": "scandir-1.9.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "6449951c370cc2025d713d3f75394b2e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 19964, "upload_time": "2018-08-10T13:28:25", "url": "https://files.pythonhosted.org/packages/43/db/fb071a52252d210d0c30843690b0e098ba75e67aff4b7eac27639a84ade7/scandir-1.9.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "44e47f746f39c8fa340a54ee48346d92", "sha256": "346619f72eb0ddc4cf355ceffd225fa52506c92a2ff05318cfabd02a144e7c4e" }, "downloads": -1, "filename": "scandir-1.9.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "44e47f746f39c8fa340a54ee48346d92", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 19198, "upload_time": "2018-08-10T13:28:27", "url": "https://files.pythonhosted.org/packages/c0/6f/45b0c805f2e98c76ca73d5c827566677910aad03fc01aca9cc3c4de1cefa/scandir-1.9.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "250511c0c3c2acd6ce40e7b7e02f72bc", "sha256": "1444134990356c81d12f30e4b311379acfbbcd03e0bab591de2696a3b126d58e" }, "downloads": -1, "filename": "scandir-1.9.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "250511c0c3c2acd6ce40e7b7e02f72bc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 19545, "upload_time": "2018-08-10T13:28:28", "url": "https://files.pythonhosted.org/packages/cb/40/8eb5af0929dcb4c0b71c6d49d816376746ead0b713ae6914f079be5f6c9a/scandir-1.9.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "addf3991929fcfb13ad443f35b2a1c05", "sha256": "61859fd7e40b8c71e609c202db5b0c1dbec0d5c7f1449dec2245575bdc866792" }, "downloads": -1, "filename": "scandir-1.9.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "addf3991929fcfb13ad443f35b2a1c05", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 21160, "upload_time": "2018-08-10T13:28:30", "url": "https://files.pythonhosted.org/packages/ee/1e/d93e37f2c8fbe59c228c0d2a9a7d8b5f75f3b185273430ef0b33ff8550f0/scandir-1.9.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "5aa90565047d1433e5a1a3a066100000", "sha256": "c7708f29d843fc2764310732e41f0ce27feadde453261859ec0fca7865dfc41b" }, "downloads": -1, "filename": "scandir-1.9.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5aa90565047d1433e5a1a3a066100000", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 21888, "upload_time": "2018-08-10T13:28:31", "url": "https://files.pythonhosted.org/packages/65/91/85974609fe7f65d0bce3387dfde34e96786158bcc5198a0c307b28b11cdf/scandir-1.9.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "023a084945d20eb423e28ac08b4abde2", "sha256": "c9009c527929f6e25604aec39b0a43c3f831d2947d89d6caaab22f057b7055c8" }, "downloads": -1, "filename": "scandir-1.9.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "023a084945d20eb423e28ac08b4abde2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21157, "upload_time": "2018-08-10T13:28:32", "url": "https://files.pythonhosted.org/packages/90/b4/70f891a902e3e01f3896dcadec695d8585ba649e5a0ea0a3a91040665433/scandir-1.9.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "269a85432ef404274df95834c1812519", "sha256": "c14701409f311e7a9b7ec8e337f0815baf7ac95776cc78b419a1e6d49889a383" }, "downloads": -1, "filename": "scandir-1.9.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "269a85432ef404274df95834c1812519", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21888, "upload_time": "2018-08-10T13:28:34", "url": "https://files.pythonhosted.org/packages/fe/f8/34d9af2346360b14997b52500b602bd9b555f3964c9814815572251ca9da/scandir-1.9.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6aa1931981336310062b8cc510d25be7", "sha256": "04b8adb105f2ed313a7c2ef0f1cf7aff4871aa7a1883fa4d8c44b5551ab052d6" }, "downloads": -1, "filename": "scandir-1.9.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "6aa1931981336310062b8cc510d25be7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 21160, "upload_time": "2018-08-10T13:28:35", "url": "https://files.pythonhosted.org/packages/bb/77/12db4a5e3dac85da829269e0f2c5d4d3521cbb6335200e7d3184e3a594ea/scandir-1.9.0-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "f4f0bec10d2b36989dbc872ce405109e", "sha256": "a5e232a0bf188362fa00123cc0bb842d363a292de7126126df5527b6a369586a" }, "downloads": -1, "filename": "scandir-1.9.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f4f0bec10d2b36989dbc872ce405109e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 21887, "upload_time": "2018-08-10T13:28:37", "url": "https://files.pythonhosted.org/packages/31/db/1307d0f7a6869e0ecc00fd75b407a0d804e576799dd94ccf4e9fc9d57399/scandir-1.9.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "506c4cc5f38c00b301642a9cb0433910", "sha256": "44975e209c4827fc18a3486f257154d34ec6eaec0f90fef0cca1caa482db7064" }, "downloads": -1, "filename": "scandir-1.9.0.tar.gz", "has_sig": false, "md5_digest": "506c4cc5f38c00b301642a9cb0433910", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33315, "upload_time": "2018-08-10T13:23:46", "url": "https://files.pythonhosted.org/packages/16/2a/557af1181e6b4e30254d5a6163b18f5053791ca66e251e77ab08887e8fe3/scandir-1.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ab1698106fc8a94dee536c93d51be79a", "sha256": "92c85ac42f41ffdc35b6da57ed991575bdbe69db895507af88b9f499b701c188" }, "downloads": -1, "filename": "scandir-1.10.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "ab1698106fc8a94dee536c93d51be79a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20479, "upload_time": "2019-03-09T17:58:19", "url": "https://files.pythonhosted.org/packages/c6/8c/43cc3799c79c435d1a236783993b2e04a2c750b4f91ef3630ec442490df5/scandir-1.10.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "203f49b490e2ec2b2057f03e76985bb2", "sha256": "cb925555f43060a1745d0a321cca94bcea927c50114b623d73179189a4e100ac" }, "downloads": -1, "filename": "scandir-1.10.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "203f49b490e2ec2b2057f03e76985bb2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20919, "upload_time": "2019-03-09T17:58:21", "url": "https://files.pythonhosted.org/packages/f9/d0/6b7b38eaf9964510f5c32aa5aaf9f419864d2e0ebe34274e6cba5689a0c5/scandir-1.10.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5a5261ebc3309845a08723ce7b605b06", "sha256": "2c712840c2e2ee8dfaf36034080108d30060d759c7b73a01a52251cc8989f11f" }, "downloads": -1, "filename": "scandir-1.10.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "5a5261ebc3309845a08723ce7b605b06", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 20152, "upload_time": "2019-03-09T17:58:22", "url": "https://files.pythonhosted.org/packages/04/86/417b435bd94a4e0176c10acea5b866a47a045848a346c6930fc846b2f016/scandir-1.10.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b76f7c1c1513a9006b1aef0562712a26", "sha256": "2586c94e907d99617887daed6c1d102b5ca28f1085f90446554abf1faf73123e" }, "downloads": -1, "filename": "scandir-1.10.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "b76f7c1c1513a9006b1aef0562712a26", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 20497, "upload_time": "2019-03-09T17:58:24", "url": "https://files.pythonhosted.org/packages/77/3a/7f6111552b4736a08a72c37d6b8852cf77c02042a3124a8806f67008ad45/scandir-1.10.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "695cc9235f54d915e3b79d470bb35274", "sha256": "2b8e3888b11abb2217a32af0766bc06b65cc4a928d8727828ee68af5a967fa6f" }, "downloads": -1, "filename": "scandir-1.10.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "695cc9235f54d915e3b79d470bb35274", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22110, "upload_time": "2019-03-09T17:58:25", "url": "https://files.pythonhosted.org/packages/cd/a1/d5c3e22090ebead6d24abbe0f85641f002db44316c0a422d68d2fa258a8c/scandir-1.10.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "5468e5503744da4f2064a773667cd9f5", "sha256": "8c5922863e44ffc00c5c693190648daa6d15e7c1207ed02d6f46a8dcc2869d32" }, "downloads": -1, "filename": "scandir-1.10.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5468e5503744da4f2064a773667cd9f5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22845, "upload_time": "2019-03-09T17:58:26", "url": "https://files.pythonhosted.org/packages/b7/5d/c0dc3933bd79fdca4780f84fffb2291672f3db8f0093c5d2ce629b7cb656/scandir-1.10.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5139928bafc36cb763063091697a0f14", "sha256": "2ae41f43797ca0c11591c0c35f2f5875fa99f8797cb1a1fd440497ec0ae4b022" }, "downloads": -1, "filename": "scandir-1.10.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "5139928bafc36cb763063091697a0f14", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22111, "upload_time": "2019-03-09T17:58:28", "url": "https://files.pythonhosted.org/packages/25/c5/257e7f38127de5221a57e6afd0eb6ad0a85412c92644bf8265f20085b22a/scandir-1.10.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "50303dbc67562351c895ff31b2f6bba1", "sha256": "7d2d7a06a252764061a020407b997dd036f7bd6a175a5ba2b345f0a357f0b3f4" }, "downloads": -1, "filename": "scandir-1.10.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "50303dbc67562351c895ff31b2f6bba1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22847, "upload_time": "2019-03-09T17:58:29", "url": "https://files.pythonhosted.org/packages/a0/c3/8b8244553f4cf8682825e46d264f0bf3b8f7a51c9ba4745c8aa9182da4e5/scandir-1.10.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5dbab653f3373e4a3b6467c508c7c817", "sha256": "67f15b6f83e6507fdc6fca22fedf6ef8b334b399ca27c6b568cbfaa82a364173" }, "downloads": -1, "filename": "scandir-1.10.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "5dbab653f3373e4a3b6467c508c7c817", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22109, "upload_time": "2019-03-09T17:58:30", "url": "https://files.pythonhosted.org/packages/9b/47/4bf2941582c731b0c3a7aee7a3129063fe7dad5382cd662f3766dac619b2/scandir-1.10.0-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "46b00959354c0a833473e5d0c82b38d0", "sha256": "b24086f2375c4a094a6b51e78b4cf7ca16c721dcee2eddd7aa6494b42d6d519d" }, "downloads": -1, "filename": "scandir-1.10.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "46b00959354c0a833473e5d0c82b38d0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22842, "upload_time": "2019-03-09T17:58:32", "url": "https://files.pythonhosted.org/packages/cb/06/cee31a831784ae66073fff7df58f823a1f6bc3947dc48a76f877b17eb52b/scandir-1.10.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f8378f4d9f95a6a78e97ab01aa900c1d", "sha256": "4d4631f6062e658e9007ab3149a9b914f3548cb38bfb021c64f39a025ce578ae" }, "downloads": -1, "filename": "scandir-1.10.0.tar.gz", "has_sig": false, "md5_digest": "f8378f4d9f95a6a78e97ab01aa900c1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33311, "upload_time": "2019-03-09T17:58:33", "url": "https://files.pythonhosted.org/packages/df/f5/9c052db7bd54d0cbf1bc0bb6554362bba1012d03e5888950a4f5c5dadc4e/scandir-1.10.0.tar.gz" } ] }