Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [
"scandir",
"python",
"directory",
"iterator",
"performance"
],
"is_fork": false,
"size_kb": 672,
"has_wiki": false,
"homepage": "https://benhoyt.com/writings/scandir/",
"languages": {
"C": 53943,
"Python": 54844
},
"pushed_at": "2025-05-27T09:08:52Z",
"created_at": "2013-05-13T08:14:57Z",
"owner_type": "User",
"updated_at": "2026-07-02T10:02:17Z",
"description": "Better directory iterator and faster os.walk(). Archived, as this has been in the stdlib since Python 3.5.",
"is_archived": true,
"is_disabled": false,
"license_spdx": "BSD-3-Clause",
"default_branch": "master",
"license_spdx_raw": "BSD-3-Clause",
"primary_language": "Python",
"significant_languages": [
"Python",
"C"
]
},
"owner": {
"blog": "https://benhoyt.com/",
"name": "Ben Hoyt",
"type": "User",
"login": "benhoyt",
"company": "Canonical",
"location": "Christchurch, New Zealand",
"followers": 1068,
"avatar_url": "https://avatars.githubusercontent.com/u/999033?v=4",
"created_at": "2011-08-23T13:49:02Z",
"is_verified": null,
"public_repos": 138,
"account_age_days": 5455
},
"license": {
"state": "standard",
"spdx_id": "BSD-3-Clause",
"raw_spdx": "BSD-3-Clause",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.10.0",
"kind": "minor",
"published_at": "2019-03-09T18:00:51Z"
},
{
"tag": "v1.9.0",
"kind": "minor",
"published_at": "2018-08-10T13:31:02Z"
},
{
"tag": "v1.8",
"kind": "other",
"published_at": "2018-08-02T16:37:34Z"
},
{
"tag": "v1.7",
"kind": "other",
"published_at": "2018-02-13T13:20:49Z"
},
{
"tag": "v1.6",
"kind": "other",
"published_at": "2017-09-29T12:51:38Z"
},
{
"tag": "v1.5",
"kind": "other",
"published_at": "2017-02-21T13:23:25Z"
},
{
"tag": "v1.4",
"kind": "other",
"published_at": "2016-11-11T21:13:55Z"
},
{
"tag": "v1.3",
"kind": "other",
"published_at": "2016-08-27T19:19:12Z"
},
{
"tag": "v1.2",
"kind": "other",
"published_at": "2016-01-03T00:12:47Z"
},
{
"tag": "v1.1",
"kind": "other",
"published_at": "2015-07-20T01:09:07Z"
},
{
"tag": "v1.0",
"kind": "other",
"published_at": "2015-05-15T18:54:26Z"
},
{
"tag": "v0.9",
"kind": "other",
"published_at": "2015-02-21T19:24:07Z"
}
],
"recent_commits": [
{
"oid": "5d10a3b468443d661a478bbb5915af0321ce8730",
"body": "Just comment out macos builds so the last run before archiving is green",
"is_bot": false,
"headline": "Update tests.yml",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2025-05-27T09:08:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f2eabcb6d5afc9ba9d14452879f8263ae5e4f3fc",
"body": null,
"is_bot": false,
"headline": "Update README.rst",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2025-05-27T09:05:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e33140fe0dfe5b967e9eb2595b6e6e8eb3c91a64",
"body": "Also ensure we require the C extension to build when running CI.",
"is_bot": false,
"headline": "Fix macOS and Python 2.7 tests (#144)",
"author_name": "T.Yamada",
"author_login": "cielavenir",
"committed_at": "2023-08-29T09:32:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ee0915f68d05dd187bea94ca1869bbeb1ea1d70",
"body": "* Redefine _Py_stat_struct if Python 3.11 or later\r\n\r\n* Test on Python 3.11 (and don't fail fast)\r\n\r\n---------\r\n\r\nCo-authored-by: Ben Hoyt <benhoyt@gmail.com>",
"is_bot": false,
"headline": "Redefine _Py_stat_struct if Python 3.11 or later (#142)",
"author_name": "T.Yamada",
"author_login": "cielavenir",
"committed_at": "2023-08-27T23:52:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34a0cc1dd2b8f31d6f8a859db7b287c491f50fd9",
"body": null,
"is_bot": false,
"headline": "Actually test C version (#138)",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2022-01-23T20:18:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3396aa4155ffde8600a0e9ca50d5872569169b5d",
"body": "Fix PyStructSequence_UnnamedField build issues on Python 3.9/3.10\r\n\r\n_scandir.c:663:7: error: conflicting type qualifiers for ‘PyStructSequence_UnnamedField’\r\n 663 | char *PyStructSequence_UnnamedField = \"unnamed field\";\r\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\nIn file included from /usr/local\n[…]\ndField’ was here\r\n 22 | extern const char * const PyStructSequence_UnnamedField;\r\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nFixes https://github.com/benhoyt/scandir/pull/137",
"is_bot": false,
"headline": "Add Python 3.10 to tests (#137)",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2022-01-23T19:44:07Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d1184360b1335b3491592d793ed1dbd5acbb7bb4",
"body": "Fix typo",
"is_bot": false,
"headline": "Merge pull request #135 from kianmeng/fix-typo",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2021-11-24T06:05:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13cd59baae2d91be6f528cfcc9482ed91f697c2a",
"body": null,
"is_bot": false,
"headline": "Fix typo",
"author_name": "Kian-Meng, Ang",
"author_login": "kianmeng",
"committed_at": "2021-11-24T05:02:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7fbef7ac04d71c16bdac1822e6856272d8232620",
"body": "Release GIL around stat and lstat",
"is_bot": false,
"headline": "Merge pull request #132 from skonieczny/master",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2021-08-25T19:27:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b5354de65413b9c5c6672f5f30c532bfda4d40a",
"body": "DirEntry.stat may perform stat and lstat syscalls\nif internal cache is empty.\n\nIt is important to release a GIL, as\nthis operations may take some time.\n\nThis way other threads may continue the work\nwhile one thread is waiting for `DirEntry.stat` completion.",
"is_bot": false,
"headline": "Release GIL around stat and lstat",
"author_name": "Stanisław Skonieczny",
"author_login": null,
"committed_at": "2021-08-25T07:12:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "44d762eb3c09f9975b44aeba88b72d8fa3926681",
"body": null,
"is_bot": false,
"headline": "ah, was missing \"steps:\"",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2021-02-27T07:55:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "246c8d316f43aa929036dcc77a2a5125ce632868",
"body": null,
"is_bot": false,
"headline": "or this",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2021-02-27T07:53:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8289200bea52681df942e6cfe9be9608bd9272d",
"body": null,
"is_bot": false,
"headline": "try this",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2021-02-27T07:52:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b7c5a686c2a88b713fc8bf957b836399f7b2c56",
"body": null,
"is_bot": false,
"headline": "oops, actually add GH Actions YAML",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2021-02-27T07:51:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13c8c333d759b4c5c4b5e8ad0ef16b7c71d56b52",
"body": null,
"is_bot": false,
"headline": "Switch to GitHub Actions from Travis/Appveyor",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2021-02-27T07:50:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6ed381881bc2fb9de05804e892eeeeb3601a3af2",
"body": null,
"is_bot": false,
"headline": "Delete .deepsource.toml",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2020-07-20T22:32:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a9635339322f6b84cb40a868afcedf4da418b61",
"body": null,
"is_bot": false,
"headline": "Create .deepsource.toml",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2019-11-13T13:19:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "982e6ba60e7165ef965567eacd7138149c9ce292",
"body": null,
"is_bot": false,
"headline": "Bump up version number with recent Solaris fix and other updates",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2019-03-09T17:51:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27e236234f16e6f4cd02d1dfd73030dbdad412f7",
"body": "more work on travis-ci testing",
"is_bot": false,
"headline": "Merge pull request #119 from ThomasWaldmann/travis",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2019-02-21T13:55:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d048509c49e5f5e262229017d349da4a9eba327",
"body": null,
"is_bot": false,
"headline": "macOS: test on py27+py36 (xc9.4), py27+py37 (xc10.1)",
"author_name": "Thomas Waldmann",
"author_login": "ThomasWaldmann",
"committed_at": "2019-02-21T09:54:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "280b63812ddc68b64245bce5022a46c7648f312c",
"body": null,
"is_bot": false,
"headline": "remove tox-travis, use tox features",
"author_name": "Thomas Waldmann",
"author_login": "ThomasWaldmann",
"committed_at": "2019-02-21T09:26:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b3d08a586314fb266cb0fd1ea0bc1915b6d0721",
"body": "travis-ci: run py37 tests on xenial",
"is_bot": false,
"headline": "Merge pull request #116 from ThomasWaldmann/py37",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2019-02-20T12:40:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e271c173dfdbc5801167bcf9213f034cf2dd4e3",
"body": null,
"is_bot": false,
"headline": "travis-ci: run py37 tests on xenial, fixes #115",
"author_name": "Thomas Waldmann",
"author_login": "ThomasWaldmann",
"committed_at": "2019-02-20T04:29:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a155483634d5480732b16db5bf4d3111c3f55126",
"body": "drop dead pythons",
"is_bot": false,
"headline": "Merge pull request #114 from ThomasWaldmann/updates",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2019-02-20T01:07:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "683e822b4d271e5c04c90e6c123e5ee19c6eb76c",
"body": null,
"is_bot": false,
"headline": "drop python < 3.4 support",
"author_name": "Thomas Waldmann",
"author_login": "ThomasWaldmann",
"committed_at": "2019-02-19T07:03:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e9d033a6ea89dcd37be35c274a3cf3e9e3237925",
"body": "note: in test_scandir, .skipUnless() could not be used\nbecause there is no \"self\" available in the decorator.",
"is_bot": false,
"headline": "drop python 2.6 support",
"author_name": "Thomas Waldmann",
"author_login": "ThomasWaldmann",
"committed_at": "2019-02-19T06:27:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f1455644f9e920d3ce17af055f22aa48da1e27d3",
"body": null,
"is_bot": false,
"headline": "gitignore pycharm files",
"author_name": "Thomas Waldmann",
"author_login": "ThomasWaldmann",
"committed_at": "2019-02-19T05:38:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ab3d1feed6c7d1f9ee476bcdc20d2df613ef3c7",
"body": "fix breakage on solaris derivates when c ext is not built",
"is_bot": false,
"headline": "Merge pull request #111 from ThomasWaldmann/fix-inconsistent-conditional",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-08-11T14:14:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "898f938f06a4076391c0806df451a96ab1b42e31",
"body": "the fixed if-condition was inconsistent with a similar one some lines\nabove. this lead to the following traceback IF the _scandir c ext was\nnot available:\n\n>>> from scandir import *\nTraceback (most recent call last):\n File \"<stdin>\", line 1, in <module>\n File \".../lib/python3.4/site-packages/scandir.py\", line 591, in <module>\n DirEntry = PosixDirEntry\nNameError: name 'PosixDirEntry' is not defined",
"is_bot": false,
"headline": "fix breakage on solaris derivates when c ext is not built",
"author_name": "Thomas Waldmann",
"author_login": "ThomasWaldmann",
"committed_at": "2018-08-11T13:33:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e801b7f76cc3d81c247595bbae8623c7067e0357",
"body": null,
"is_bot": false,
"headline": "Bump up version number, change to semver",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-08-10T13:21:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "50808360eca0d39eb7c9f553b13798b31efc67bc",
"body": "backport optional extension building for python 2.7",
"is_bot": false,
"headline": "Merge pull request #107 from RonnyPfannschmidt/build-no-c",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-08-10T13:12:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "90bde0f1b6ea829efdf09183235e34053f488be2",
"body": "Fix dirent.h struct alignment on OpenBSD",
"is_bot": false,
"headline": "Merge pull request #109 from FlingeR/openbsd-patch-1",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-08-06T20:03:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cfda49a07865097d3fdadc4e321881635ab2f795",
"body": "Tested on amd64 and i386.\r\nNot sure about other architectures.",
"is_bot": false,
"headline": "Fix dirent.h struct alignment on OpenBSD",
"author_name": "Elias M. Mariani",
"author_login": "marianielias",
"committed_at": "2018-08-06T15:06:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "75ca98c48a248a4f55acf28fa27c40a867f425fa",
"body": null,
"is_bot": false,
"headline": "fix typo and add warning when setuptools import fails",
"author_name": "Ronny Pfannschmidt",
"author_login": "RonnyPfannschmidt",
"committed_at": "2018-08-03T10:19:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f72f7abc29c4daa3aba06bc276dfa27d8998d9bb",
"body": null,
"is_bot": false,
"headline": "backport optional extension building for python 2.7",
"author_name": "Ronny Pfannschmidt",
"author_login": "RonnyPfannschmidt",
"committed_at": "2018-08-03T04:52:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27a49d958b2c07fd854f5d960cd65f6eb9a596d7",
"body": null,
"is_bot": false,
"headline": "Actually, Travis doesn't support Python 3.7 yet - remove",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-08-02T16:27:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f10677be1e3f70b5ebb663921dcbbb9c7e28a20",
"body": null,
"is_bot": false,
"headline": "Bump up version number before pip release",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-08-02T16:14:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6fb00e522d67e3bfccb2a6c97cc4df79563ce312",
"body": null,
"is_bot": false,
"headline": "Add Python 3.7 support to Travis config",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-08-02T16:13:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39ec2e5303e6043e6ef810b1509b253715ab0e96",
"body": null,
"is_bot": false,
"headline": "Add Python 3.7 support to Appveyor config",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-08-02T16:12:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5464b86148ce1f23f9a57849afdc11a72d2c1bee",
"body": "mark the scandir extension as optional",
"is_bot": false,
"headline": "Merge pull request #106 from RonnyPfannschmidt/build-no-c",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-08-02T12:39:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "06462d7889e99772fdc7aa900e41ce419a424cf2",
"body": null,
"is_bot": false,
"headline": "move the c extension declaration out and comment on the optional state",
"author_name": "Ronny Pfannschmidt",
"author_login": "RonnyPfannschmidt",
"committed_at": "2018-08-02T05:45:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dae7640fe60047812bdd3834c18a7472e87abcee",
"body": "build errors no longer stop the build\nthis may hide errors but ensures installing on jython or linux without gcc works fine",
"is_bot": false,
"headline": "mark the scandir extension as optional",
"author_name": "Ronny Pfannschmidt",
"author_login": "RonnyPfannschmidt",
"committed_at": "2018-08-01T05:38:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b6c6a34d3bb2f455ef6a98b719ad9f1a4656d8b7",
"body": "fix build on PyPy 6.0",
"is_bot": false,
"headline": "Merge pull request #102 from R4scal/master",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-05-30T01:30:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b4765723bfb4226648fa58dc46f461538fa6243c",
"body": null,
"is_bot": false,
"headline": "fix grammar",
"author_name": "Pavel Boev",
"author_login": "R4scal",
"committed_at": "2018-05-29T19:38:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9e3d5fe724510dd8b2cd723ba255fef7f3b0f31",
"body": "Rationale: apparently the \"wheel\" library no longer supports it,\nso seems a good time to stop. It's getting old, and we support\n3.4 and 3.5, which seems like enough older versions.",
"is_bot": false,
"headline": "Remove support for Python 3.3",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-05-29T13:53:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79319dc7ba98fc4d390648aa10d07b00d718836a",
"body": null,
"is_bot": false,
"headline": "fix build on PyPy 6.0",
"author_name": "Rascal",
"author_login": "R4scal",
"committed_at": "2018-05-26T18:28:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae934ad77bc5b89cf6eb6bae144c8ff34c310db4",
"body": "Also remove an unused import",
"is_bot": false,
"headline": "Document why the code duplication in GenericDirEntry",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-05-10T20:29:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a53eb2b73962086fa8a87b5cd81a8efbdfd5bd4",
"body": "Use unittest2 for Python 2.6",
"is_bot": false,
"headline": "Merge pull request #98 from avylove/unittest2-for-py26",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-04-21T19:33:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "db32ce6e62a13f1e58ef78bebf39568d3fcf1df1",
"body": null,
"is_bot": false,
"headline": "Reenable 2.6 in Travis CI",
"author_name": "Avram Lubkin",
"author_login": "avylove",
"committed_at": "2018-04-21T18:00:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f26a699f8c342a131ad84f79d492e793f07a894f",
"body": null,
"is_bot": false,
"headline": "Use unittest2 for Python 2.6",
"author_name": "Avram Lubkin",
"author_login": "avylove",
"committed_at": "2018-04-16T19:11:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f6d2d39249e0f310781445d2883c9f5b0e490483",
"body": "let there be colour",
"is_bot": false,
"headline": "Merge pull request #96 from bashu/patch-1",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-02-28T13:46:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "50f2c889139a449fa4d3f3f7568a27275d62d379",
"body": null,
"is_bot": false,
"headline": "let there be colour",
"author_name": "Basil Shubin",
"author_login": "bashu",
"committed_at": "2018-02-28T04:01:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c27c6125183e6bd3c789b17db8c082edc7d98b69",
"body": null,
"is_bot": false,
"headline": "Bump version up to 1.7 for scandir.DirEntry addition",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-02-12T20:55:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6072ae712feb2f52541a1a57e6f28558e7a0e3eb",
"body": "Issue 70: expose DirEntry type -- looks good to me, thanks @ahvigil. I'm merging and I'll push a new version shortly.",
"is_bot": false,
"headline": "Merge pull request #93 from ahvigil/70-expose-direntry",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2018-02-12T20:53:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "94228ed562e7ae1a96f092bc0c2d5fc4f6474f24",
"body": "Python 3.6 makes the DirEntry class generated by `os.scandir` available as `os.DirEntry` (see https://bugs.python.org/issue27038). Follow suite here by pointing `scandir.DirEntry` to the type used by that system's implementation of `scandir.scandir`",
"is_bot": false,
"headline": "expose DirEntry type",
"author_name": "Arthur Vigil",
"author_login": "ahvigil",
"committed_at": "2018-02-10T23:54:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca7d5d59e548e6ecc4a5a2d32a86fa4fa35edfb4",
"body": "Build 32-bit Windows wheels on appveyor",
"is_bot": false,
"headline": "Merge pull request #88 from segevfiner/patch-1",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-10-03T18:35:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "194dac44923db1159fda0600fe7a83e9c7313552",
"body": "Some developers still use 32-bit Python due to old Python extension modules they use. It's nice to also build 32-bit Windows wheels. We already build wheels for ancient versions (3.3, 3.4), might as well also build 32-bit ones.",
"is_bot": false,
"headline": "Build 32-bit Windows wheels on appveyor",
"author_name": "Segev Finer",
"author_login": "segevfiner",
"committed_at": "2017-09-29T13:07:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3592eeab71e95f5314d17c75fd4390fad8ccda5",
"body": null,
"is_bot": false,
"headline": "Bump version number up to 1.6",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-29T12:38:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d646833767d7d3d1c934a56d52917797b77f77b",
"body": null,
"is_bot": false,
"headline": "Remove Python 2.6 again -- too hard to setup",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-29T12:35:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d71af961c0556d7be2bffa421e9acd4585cf533",
"body": "…lassifiers",
"is_bot": false,
"headline": "Add testing for Python 3.3 and 2.6; Remove Python 3.2 from setup.py c…",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-29T12:32:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f37a509b956e857860ce4c2912045ab4bf5a554",
"body": null,
"is_bot": false,
"headline": "Get Windows and PyPy stat tests passing (not exactly a perfect solution)",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-29T12:23:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c37c32675a74eabf601447af297ed0cbfe07f142",
"body": null,
"is_bot": false,
"headline": "Don't coerce mtime/cmtime to int in test_stat, that's too easy",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T19:48:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "929118d7485876f80e479a6d412913963e76a38c",
"body": null,
"is_bot": false,
"headline": "Install 'wheel' package to be able to create wheels",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T16:31:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "050db4532ff75046815269ae6ba242d8d9b36bfa",
"body": null,
"is_bot": false,
"headline": "Get Appveyor to build wheels on Windows",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T16:29:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e9941b7d9c02d882c6f523bd4600a3b26aa0748a",
"body": null,
"is_bot": false,
"headline": "Try to fix Windows Python 3.4 build",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T15:30:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "26daf03ef7a0d4fe253e0c5ced0879ed5864593c",
"body": null,
"is_bot": false,
"headline": "Try to install compiled extension",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T15:24:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f96736ebde02f7aebcd24209ed77a9a8c73c956",
"body": null,
"is_bot": false,
"headline": "Try on 3.4 without DISTUTILS_USE_SDK",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T15:10:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fda8e31e32c88151a4676cfb6c4f91191f0bccfa",
"body": null,
"is_bot": false,
"headline": "Remove undefined PY_UNSIGNED_LONG_LONG",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T15:07:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "42388c23a48c9a30d32a443854fa389cca4776af",
"body": null,
"is_bot": false,
"headline": "Try to get C extension compiled in Appveyor/Windows",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T13:28:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "20022fe7133d506beba95a50bfa77564938b4951",
"body": null,
"is_bot": false,
"headline": "Fix #11 - inode should be unsigned",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T13:21:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b36e310b057529b2e649b4e9800d9230a44bc6e",
"body": null,
"is_bot": false,
"headline": "Add Appveyor badge back in",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T12:59:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8eb5c3baec5acc0e68d894abc11411cd0f5db2b2",
"body": null,
"is_bot": false,
"headline": "Try to fix them properly again",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T12:54:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "88163ac01cef64686d68e498dc52e1ceab06fbfd",
"body": null,
"is_bot": false,
"headline": "Properly fix tests on Python 3.6 Windows",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T12:40:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65eb8383087ecf6d83d6f4a521ca23e6ee1cdaec",
"body": null,
"is_bot": false,
"headline": "Fix tests on Python 3.6 on Windows due to its better UTF-8 path handling",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T12:28:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6d318fa97e802557bcb1e680b478e4db2e5501f1",
"body": null,
"is_bot": false,
"headline": "Reinstate PyPy on Travis",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T12:19:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ce8db5ed5307e7bfc7a0e067420a7d51ba7b098",
"body": null,
"is_bot": false,
"headline": "Remove old debugging from test setup",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T11:30:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3791b5f0aa8413c90cd9b7e7dd1e3974ef524988",
"body": null,
"is_bot": false,
"headline": "Fix test_stat on PyPy and Windows (Travis/Appveyor)",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T11:29:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e2d1715c5f15a2b8d8a33a1a3042dc545252eba1",
"body": "…eing set to NULL there (see PyPy issue 2669)",
"is_bot": false,
"headline": "Fix test_unicode on PyPy due to Py_FileSystemDefaultEncoding always b…",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-28T11:16:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7dc415a81f36599cfce5c556bf28ba2b4d4607b2",
"body": null,
"is_bot": false,
"headline": "Make build bots green (for now: comment out PyPI and Windows build icon)",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-25T16:23:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6ecbe013c1997fb5df483aadb0f162f24ebc52a0",
"body": null,
"is_bot": false,
"headline": "Add PyPI and CI badges to README",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-21T02:25:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f715a9e9689f959bdea3fbe7db1c88da0860ce8b",
"body": null,
"is_bot": false,
"headline": "Add Travis CI and Appveyor support",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-09-21T01:39:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5537cf2c47bff5998a52273b4561f5de64286b32",
"body": "Attempting import of setuptools first",
"is_bot": false,
"headline": "Merge pull request #84 from tanium/setuptools_import_attempt",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-05-15T12:30:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "edbae30f83f370f9d2f1e43d02e3793081e1cd25",
"body": "…number",
"is_bot": false,
"headline": "Add Python 3.6 to metadata, better long_description, bump up version …",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-02-20T16:56:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b763a94449180bfd5f34d4236d95f2bfdbc56e1c",
"body": "…ilenames and whatnot) isn't included in PyPI archive. Fixes #74. Thanks @andrask for the initial pull request (#72).",
"is_bot": false,
"headline": "Make MANIFEST.in more explicit, so that test/test_dir (with Unicode f…",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2017-02-20T16:55:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d13330d5a8a266daee1472d5406e84a38b9a6e6",
"body": null,
"is_bot": false,
"headline": "Bump version number for release",
"author_name": "Ben Hoyt",
"author_login": null,
"committed_at": "2016-11-11T21:11:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32868a0fef70420c5f58b60dfca86e27ac684ad9",
"body": "Change stat_result st_?time to floats",
"is_bot": false,
"headline": "Merge pull request #68 from arguile-/float_mtime",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2016-11-11T21:09:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1701ec6a92c90a9cf3d82c72febfdd497ee341fd",
"body": "Scandir entry.stat().st_?time entries now match os.stat(). Fixes #63",
"is_bot": false,
"headline": "Change stat_result st_?time to floats",
"author_name": "arguile-",
"author_login": "arguile-",
"committed_at": "2016-11-10T10:48:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ebe1e849dd5db2b8ce62a51d3e8ddd611779bd2",
"body": "Attempting import of setuptools first",
"is_bot": false,
"headline": "Merge pull request #67 from bfrisbie-tanium/default_to_setuptools",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2016-10-20T17:28:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67a9c723227e978a2f26e9b88a4506aea88e91ea",
"body": null,
"is_bot": false,
"headline": "Attempting import of setuptools first",
"author_name": "Brian Frisbie",
"author_login": "bfrisbie-tanium",
"committed_at": "2016-10-20T17:24:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2cbe404037955a4c4b2af9fa0f8fa29abd418479",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.3",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2016-08-27T18:55:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f10b97fbbb91b4fe9a3b994f5ad1b184d8ea0a06",
"body": "setup.py was not able to compile on Windows when Microsoft Visual C++ Compiler for Python 2.7 is used. It seems only a recent version of setuptools is able to find the vcvarsall.bat file for this compiler.",
"is_bot": false,
"headline": "Attempting import of setuptools first",
"author_name": "Rory Prendergast",
"author_login": "rp-tanium",
"committed_at": "2016-08-27T18:51:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66a96a15d9783ade53fcec5bf51e7c8c66d05a58",
"body": "Issue #61: Mimic os.walk's unicode handling in py27 on Linux",
"is_bot": false,
"headline": "Merge pull request #62 from prashanthpai/issue-61",
"author_name": "Victor Stinner",
"author_login": "vstinner",
"committed_at": "2016-08-25T20:32:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3edd363ed58c540858609f27e61960b474ae5489",
"body": "Signed-off-by: Prashanth Pai <ppai@redhat.com>",
"is_bot": false,
"headline": "Mimic os.walk's unicode handling in py27 on Linux",
"author_name": "Prashanth Pai",
"author_login": "prashanthpai",
"committed_at": "2016-08-24T09:16:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "374f4b6f4c93031c2774709402c6361b6aa98947",
"body": null,
"is_bot": false,
"headline": "add tox.ini",
"author_name": "Victor Stinner",
"author_login": "vstinner",
"committed_at": "2016-05-24T08:56:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "03d8b14b9c25543cbf26e0351935c83f658f701d",
"body": null,
"is_bot": false,
"headline": "Bump up version number to 1.2",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2016-01-03T00:06:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d8b819d22decc4550ba738210b8d3374d3f678bb",
"body": "…hoyt/scandir/pull/53\n\n* Include missing osdefs.h in project\n* Define HAVE_DIRENT_H if it's not defined, as per PyPy (assume yes)\n* Define missing _Py_IDENTIFIER and other macros on Python 3.2\n* For Python 3.2, use \"i\" instead of \"$p\" in PyArg_ParseTupleAndKeywords format string (\"$\" and \"p\" were on\n[…]\noesn't have them\n* Add Python 3.5 to list of versions supported by scandir\n* Fix walk() unit tests on Python 3.2 (use \"target_is_directory\" -- it was actually added in Python 3.2, but only on Windows)",
"is_bot": false,
"headline": "A few fixes for Python 3.2 (and PyPy) based on https://github.com/ben…",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2016-01-02T23:44:43Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "489cfa77f83dc9f3f5535d6b0f696ea1bf7e9b8c",
"body": "…//github.com/benhoyt/scandir/issues/54\n\nI could have fixed this to exactly mimic os.walk()'s behaviour on Windows Python 2.x, but that's really broken: ASCII directories get treated as directories, some unicode directories go in the \"dirs\" list, some unicode directory names go into the \"files\" list\n[…]\no the walk does what you expect. This does mean that the names returned are all unicode strings, but that's almost always fine and what you want too.\n\nAlso remove unused and confusing \"str\" assignment",
"is_bot": false,
"headline": "Fix scandir.walk() bytes handling on Python 2.7 on Windows per https:…",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2016-01-02T20:50:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3bb47fb2404dfe920dc63fa46767c07c7baf3c93",
"body": null,
"is_bot": false,
"headline": "Test commit with Subversion client.",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2015-06-10T17:19:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7452ff3988faad4d32c8cf4207a2a7d080d9ec83",
"body": null,
"is_bot": false,
"headline": "Bump up version number.",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2015-05-22T01:44:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "186b010f61309e0cf6c74cefa2d4c61dcaed60f7",
"body": "https://github.com/benhoyt/scandir/issues/48",
"is_bot": false,
"headline": "Include *.h (winreparse.h) in PyPI package",
"author_name": "Ben Hoyt",
"author_login": "benhoyt",
"committed_at": "2015-05-22T01:44:09Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 12,
"commits_last_year": 0,
"latest_release_at": "2019-03-09T18:00:51Z",
"latest_release_tag": "v1.10.0",
"releases_from_tags": false,
"days_since_last_push": 429,
"active_weeks_last_year": 0,
"days_since_latest_release": 2700,
"mean_days_between_releases": 147.6
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "scandir",
"exists": true,
"license": "New BSD License",
"keywords": [
"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"
],
"ecosystem": "pypi",
"matches_repo": true,
"registry_url": "https://pypi.org/project/scandir/",
"is_deprecated": false,
"latest_version": "1.10.0",
"repository_url": "https://github.com/benhoyt/scandir",
"versions_count": 16,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 2251725,
"first_published_at": "2014-05-31T10:59:54.558552Z",
"latest_published_at": "2019-03-09T17:58:33.269204Z",
"latest_version_yanked": null,
"days_since_latest_publish": 2700
}
]
},
"popularity": {
"forks": 68,
"stars": 538,
"watchers": 1,
"fork_history": {
"days": [
{
"date": "2013-05-13",
"count": 1
},
{
"date": "2013-05-15",
"count": 1
},
{
"date": "2013-05-16",
"count": 1
},
{
"date": "2013-05-23",
"count": 1
},
{
"date": "2013-11-02",
"count": 1
},
{
"date": "2013-12-02",
"count": 1
},
{
"date": "2013-12-25",
"count": 1
},
{
"date": "2014-02-18",
"count": 1
},
{
"date": "2014-02-25",
"count": 1
},
{
"date": "2014-04-09",
"count": 1
},
{
"date": "2014-05-20",
"count": 1
},
{
"date": "2014-06-04",
"count": 1
},
{
"date": "2014-06-21",
"count": 1
},
{
"date": "2014-07-02",
"count": 1
},
{
"date": "2014-07-04",
"count": 1
},
{
"date": "2014-07-23",
"count": 1
},
{
"date": "2014-08-11",
"count": 1
},
{
"date": "2014-09-03",
"count": 1
},
{
"date": "2014-10-20",
"count": 1
},
{
"date": "2015-01-15",
"count": 1
},
{
"date": "2015-02-07",
"count": 1
},
{
"date": "2015-03-16",
"count": 1
},
{
"date": "2015-04-27",
"count": 1
},
{
"date": "2015-05-18",
"count": 1
},
{
"date": "2015-06-15",
"count": 1
},
{
"date": "2015-10-30",
"count": 1
},
{
"date": "2015-12-08",
"count": 1
},
{
"date": "2016-03-06",
"count": 1
},
{
"date": "2016-03-11",
"count": 1
},
{
"date": "2016-05-24",
"count": 1
},
{
"date": "2016-06-20",
"count": 1
},
{
"date": "2016-09-03",
"count": 1
},
{
"date": "2016-10-20",
"count": 1
},
{
"date": "2016-11-10",
"count": 1
},
{
"date": "2017-02-16",
"count": 1
},
{
"date": "2017-05-10",
"count": 1
},
{
"date": "2017-08-20",
"count": 1
},
{
"date": "2017-09-29",
"count": 1
},
{
"date": "2017-12-12",
"count": 1
},
{
"date": "2018-01-15",
"count": 1
},
{
"date": "2018-02-10",
"count": 1
},
{
"date": "2018-04-08",
"count": 1
},
{
"date": "2018-04-16",
"count": 1
},
{
"date": "2018-04-19",
"count": 1
},
{
"date": "2018-06-05",
"count": 2
},
{
"date": "2018-08-01",
"count": 2
},
{
"date": "2019-01-09",
"count": 1
},
{
"date": "2019-08-20",
"count": 1
},
{
"date": "2020-01-23",
"count": 1
},
{
"date": "2020-02-29",
"count": 1
},
{
"date": "2020-07-10",
"count": 1
},
{
"date": "2020-11-19",
"count": 1
},
{
"date": "2021-08-23",
"count": 1
},
{
"date": "2021-09-22",
"count": 1
},
{
"date": "2021-11-24",
"count": 1
},
{
"date": "2022-02-13",
"count": 1
},
{
"date": "2022-07-19",
"count": 1
},
{
"date": "2022-08-04",
"count": 1
},
{
"date": "2023-04-25",
"count": 1
},
{
"date": "2023-08-25",
"count": 1
},
{
"date": "2023-11-12",
"count": 1
},
{
"date": "2024-02-04",
"count": 1
},
{
"date": "2024-02-14",
"count": 1
},
{
"date": "2024-06-08",
"count": 1
},
{
"date": "2024-12-09",
"count": 1
},
{
"date": "2025-10-28",
"count": 1
}
],
"complete": true,
"collected": 68,
"total_forks": 68
},
"star_history": null,
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 51813,
"source_files_sampled": 9,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"setup.py"
],
"advisories": {
"error": "No resolved dependencies to assess",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"pypi"
],
"dependencies": [],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [],
"collected": true,
"truncated": false,
"total_count": 0,
"direct_count": 0,
"indirect_count": 0
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 32,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 97,
"closed_unmerged_prs": 17
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "benhoyt",
"commits": 358,
"avatar_url": "https://avatars.githubusercontent.com/u/999033?v=4"
},
{
"type": "User",
"login": "tjguk",
"commits": 61,
"avatar_url": "https://avatars.githubusercontent.com/u/580948?v=4"
},
{
"type": "User",
"login": "ThomasWaldmann",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/356103?v=4"
},
{
"type": "User",
"login": "htoothrot",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/167099?v=4"
},
{
"type": "User",
"login": "RonnyPfannschmidt",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/156838?v=4"
},
{
"type": "User",
"login": "avylove",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/16090444?v=4"
},
{
"type": "User",
"login": "cielavenir",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/1495368?v=4"
},
{
"type": "User",
"login": "vstinner",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/194129?v=4"
},
{
"type": "User",
"login": "R4scal",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/16123585?v=4"
},
{
"type": "User",
"login": "arguile-",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/756863?v=4"
}
],
"contributors_sampled": 21,
"top_contributor_share": 0.785
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"tests.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": null,
"reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 0,
"reason": "0 out of 10 merged PRs checked by a CI test -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 3,
"reason": "Found 8/21 approved changesets -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 8 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 0,
"reason": "project is archived",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "5d10a3b468443d661a478bbb5915af0321ce8730",
"ran_at": "2026-07-30T22:17:46Z",
"aggregate_score": 3.8,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": null,
"oldest_open_prs": [],
"last_merged_pr_at": "2023-08-29T09:32:19Z",
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/benhoyt/scandir",
"host": "github.com",
"name": "scandir",
"owner": "benhoyt"
},
"metrics": {
"overall": {
"key": "overall",
"band": "critical",
"name": "Overall health",
"note": "Abandonment Policy applies a 40% multiplier to weighted overall health and gives it a ceiling of 29.",
"notes": [
{
"code": "abandonment_overall_adjustment",
"params": {
"cap": 29,
"pct": 40
}
}
],
"value": 19,
"inputs": {
"security": 38,
"vitality": 18,
"community": 66,
"governance": 62,
"engineering": 55,
"abandonment_cap": 29,
"abandonment_state": "declared",
"abandonment_multiplier": 40,
"weighted_overall_before_abandonment": 48,
"overall_after_abandonment_multiplier": 19
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "critical",
"name": "Vitality",
"value": 18,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "critical",
"name": "Development activity",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"commits_last_year": 0,
"human_commit_share": 1,
"days_since_last_push": 429,
"active_weeks_last_year": 0
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 429 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "push_recency",
"params": {
"days": 429
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "0/52 weeks with commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 0
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "0 commits in the last year",
"points": 0,
"status": "missed",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 0
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "project is archived",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "at_risk",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 44,
"inputs": {
"releases_count": 12,
"latest_release_tag": "v1.10.0",
"releases_from_tags": false,
"days_since_latest_release": 2700,
"mean_days_between_releases": 147.6
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "12 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 12
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 2700 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "release_recency",
"params": {
"days": 2700
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~147.6 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 147.6
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "at_risk",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"cap": 29,
"state": "declared",
"guards": [],
"signals": [],
"red_flag": true,
"multiplier_pct": 40,
"declared_reason": "archived",
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "the repository is archived on GitHub",
"points": 40,
"status": "partial",
"details": [
{
"code": "abandonment_archived",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 66,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "moderate",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"forks": 68,
"stars": 538,
"watchers": 1,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "538 stars",
"points": 44.3,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 538
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "68 forks",
"points": 15.2,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 68
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "1 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 1
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (BSD-3-Clause)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "BSD-3-Clause"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "excellent",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 100,
"inputs": {
"packages": [
"scandir"
],
"dependents": null,
"ecosystems": "pypi",
"total_downloads": null,
"monthly_downloads": 2251725
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "2,251,725 downloads/month across pypi",
"points": 80,
"status": "met",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 2251725,
"ecosystems": "pypi"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 62,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 37,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 21,
"top_contributor_share": 0.785
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 78% of commits",
"points": 4.8,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 78
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "21 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 21
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 8 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 76,
"inputs": {
"merged_prs": 32,
"open_issues": 0,
"closed_issues": 97,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 17
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "100% of issues closed",
"points": 46.8,
"status": "met",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "32/49 decided PRs merged",
"points": 25,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 32,
"decided": 49
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 8/21 approved changesets -- score normalized to 3",
"points": 4.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 71,
"inputs": {
"followers": 1068,
"owner_type": "User",
"is_verified": null,
"owner_login": "benhoyt",
"public_repos": 138,
"account_age_days": 5455
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "1,068 followers of benhoyt",
"points": 21.8,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 1068,
"login": "benhoyt"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "138 public repos, account ~14 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 138
}
},
{
"code": "account_age_years",
"params": {
"years": 14
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "moderate",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 69,
"inputs": {
"packages": [
"scandir"
],
"ecosystems": "pypi",
"any_deprecated": false,
"min_days_since_publish": 2700
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on pypi",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "pypi"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 2700 days ago",
"points": 4,
"status": "partial",
"details": [
{
"code": "publish_recency",
"params": {
"days": 2700
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "16 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 16
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 55,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 48,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "0 out of 10 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"topics": [
"scandir",
"python",
"directory",
"iterator",
"performance"
],
"has_wiki": false,
"homepage": "https://benhoyt.com/writings/scandir/",
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": "https://benhoyt.com/writings/scandir/",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": "5 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 5
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 38,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Branch-Protection, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 38,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 3.8
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "0 out of 10 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 8/21 approved changesets -- score normalized to 3",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 8 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "project is archived",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 13
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "critical",
"name": "AI Readiness",
"value": 27,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 19,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.35,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "35 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 18.7,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 35,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "critical",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 22,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"primary_language": "Python",
"largest_source_bytes": 51813,
"source_files_sampled": 9,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Python without a type-check config",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_typecheck_config_language",
"params": {
"language": "Python"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/9 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 9,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-30T22:18:05.658384Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/b/benhoyt/scandir.svg",
"full_name": "benhoyt/scandir",
"license_state": "standard",
"license_spdx": "BSD-3-Clause"
}