Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 2568,
"has_wiki": true,
"homepage": "https://pypi.org/project/voluptuous",
"languages": {
"Shell": 2116,
"Python": 189906
},
"pushed_at": "2026-07-18T03:15:47Z",
"created_at": "2010-07-15T09:55:10Z",
"owner_type": "User",
"updated_at": "2026-07-19T07:59:26Z",
"description": "CONTRIBUTIONS ONLY: Voluptuous, despite the name, is a Python data validation library.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "BSD-3-Clause",
"default_branch": "master",
"license_spdx_raw": "BSD-3-Clause",
"primary_language": "Python",
"significant_languages": [
"Python"
]
},
"owner": {
"blog": "http://swapoff.org",
"name": "Alec Thomas",
"type": "User",
"login": "alecthomas",
"company": null,
"location": "Sydney, Australia",
"followers": 1431,
"avatar_url": "https://avatars.githubusercontent.com/u/41767?v=4",
"created_at": "2008-12-20T09:07:01Z",
"is_verified": null,
"public_repos": 176,
"account_age_days": 6422
},
"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": "0.16.0",
"kind": "minor",
"published_at": "2025-12-18T19:07:42Z"
},
{
"tag": "0.15.2",
"kind": "patch",
"published_at": "2024-07-02T19:08:32Z"
},
{
"tag": "0.15.1",
"kind": "patch",
"published_at": "2024-07-02T19:08:00Z"
},
{
"tag": "0.15.0",
"kind": "minor",
"published_at": "2024-06-23T21:10:48Z"
},
{
"tag": "0.14.2",
"kind": "patch",
"published_at": "2024-02-03T11:18:50Z"
},
{
"tag": "0.14.1",
"kind": "patch",
"published_at": "2023-11-17T11:08:11Z"
},
{
"tag": "0.14.0",
"kind": "minor",
"published_at": "2023-11-12T17:04:42Z"
},
{
"tag": "0.13.1",
"kind": "patch",
"published_at": "2022-04-07T15:40:18Z"
},
{
"tag": "0.13.0",
"kind": "minor",
"published_at": "2022-04-07T15:36:16Z"
},
{
"tag": "0.12.2",
"kind": "patch",
"published_at": "2022-03-30T11:32:59Z"
},
{
"tag": "0.12.1",
"kind": "patch",
"published_at": "2020-12-06T22:57:19Z"
},
{
"tag": "0.12.0",
"kind": "minor",
"published_at": "2020-12-06T22:48:34Z"
},
{
"tag": "0.9.3",
"kind": "patch",
"published_at": "2016-08-10T15:26:09Z"
}
],
"recent_commits": [
{
"oid": "44593ce7c330faf9418252c4b5448f4736144a7f",
"body": "Fixes #541.\n\n`Number(precision, scale)` documents `:raises Invalid:`, but\n`Number(precision=6, scale=2)(\"Infinity\")` (also `\"NaN\"`/`\"-Infinity\"`)\nleaks a raw `TypeError(\"infinity and NaN have no precision\")`.\n`Decimal(number)` succeeds for these, then `as_tuple().exponent` is a\nstring rather than an\n[…]\n clean.\n\nThis is separate from #539, which handles `None`/`dict`/`bytes` before\nthe `Decimal()` call and explicitly leaves this non-finite path alone.\n\nSigned-off-by: Sai Asish Y <say.apm35@gmail.com>",
"is_bot": false,
"headline": "Raise Invalid for Infinity/NaN input to Number validator (#542)",
"author_name": "Sai Asish Y",
"author_login": "SAY-5",
"committed_at": "2026-07-11T01:16:47Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "73237e9014f53da32fd6f90630976f5e8279b420",
"body": "Resolves GitHub issue #409 by adding comprehensive dataclasses support:\n\nFeatures:\n- DataclassSchema class for automatic schema creation from dataclasses\n- create_dataclass_schema() function for functional API\n- is_dataclass() utility for dataclass detection\n- Automatic type validation from dataclas\n[…]\nw = 181 total)\n- Zero flake8 violations\n- Zero mypy type errors\n- Black and isort formatting applied\n- Requires Python 3.7+ for dataclasses support\n\nBreaking Changes: None\nBackward Compatibility: Full",
"is_bot": false,
"headline": "feat: implement dataclasses support for voluptuous schemas (#533)",
"author_name": "Oleksii",
"author_login": "doubledare704",
"committed_at": "2026-07-06T00:54:52Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7fec1343c443a8c887b7cb0d70dcfeb87ce54d0b",
"body": "## Summary\n\nThis PR allows `Schema.extend()` to accept another dictionary-based\n`Schema` instance.\n\nPreviously, `Schema.extend()` only accepted raw dictionary fragments:\n\n```python\nbase = Schema({\"a\": int})\nextended = base.extend({\"b\": str})\n```\n\nPassing a `Schema` instance failed because `extend()`\n[…]\nreturn behavior.\n\nFocused test command:\n\n```bash\n./.venv/bin/pytest voluptuous/tests/tests.py -k \"schema_extend or subschema_extension\"\n```\n\nResult:\n\n```text\n14 passed, 162 deselected\n```\n\nCloses #386",
"is_bot": false,
"headline": "Allow Schema.extend to accept Schema instances (#538)",
"author_name": "Aleksandr Kotlyar",
"author_login": "aleksandr-kotlyar",
"committed_at": "2026-07-05T00:01:16Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6cf9450c7a3460f5aa102c0ba50204cc43e4e1b9",
"body": "… (#546)\n\nFixes #358.\n\n## Problem\n\n`Invalid.__str__` produces an informative message including the path and\nerror type:\n\n```\nexpected int for dictionary value @ data['k']\n```\n\nBut `Invalid` has no `__repr__`, so `repr()` falls back to the default\nexception repr and drops that context:\n\n```python\n>>>\n[…]\ne of an AI tool\n(Claude Code). I verified the behavior, added and ran the test, ran the\nsuite and linters, and take responsibility for the contribution and will\nrespond to review feedback personally.*",
"is_bot": false,
"headline": "Add __repr__ to Invalid so it surfaces the path and error type (#358)…",
"author_name": "Apoorv Darshan",
"author_login": "apoorvdarshan",
"committed_at": "2026-07-05T00:00:59Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9dd222db18189ea11c07615c16dc54bba6cb2aed",
"body": "## Summary\n\n`Number(precision, scale)` documents `:raises Invalid:` and already\nconverts an unparsable **string** into `Invalid(\"Value must be a number\nenclosed with string\")`. But other non-numeric input leaks a raw\nexception instead:\n\n```python\n>>> from voluptuous import Schema, Number\n>>> Schema(\n[…]\nl test suite: **169 passed** (168 baseline + the new test), no\nregressions. `flake8` clean at the change.\n\n---\n\nThis pull request was prepared with the assistance of AI, under my\ndirection and review.",
"is_bot": false,
"headline": "Raise Invalid for non-numeric input to Number validator (#539)",
"author_name": "Vincent Gao",
"author_login": "gaoflow",
"committed_at": "2026-07-04T23:50:44Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d20c6c8bc7f49f94668e38289655cabb33ff2602",
"body": "`Schema({Coerce(int)})({'1', '2'})` returned the original string set instead\nof `{1, 2}`, even though the equivalent list schema `[Coerce(int)]` and a bare\n`Coerce(int)` both coerce. `_compile_set.validate_set` called each validator\nonly for its side effects and returned the original `data`, discard\n[…]\n type), mirroring `_compile_sequence`, including the\n`Remove` handling. Non-transforming validators round-trip unchanged.\n\nCloses #400\n\nCo-authored-by: uttam12331 <uttam12331@users.noreply.github.com>",
"is_bot": false,
"headline": "Apply value-transforming validators to set elements (#544)",
"author_name": "uttam12331",
"author_login": "uttam12331",
"committed_at": "2026-07-04T23:49:40Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "aa158af6f740acfeae8ec22301735df6e6f03516",
"body": "Allow an enum.Enum member to be used directly as a schema (matched by\nequality) and as a mapping key, by compiling it as a scalar.\n\nCo-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Feature: Support enum members as scalar schemas and mapping keys (#537)",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2026-07-03T23:57:45Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "87825d6dbdab8830fcc6d559ecb3b88bdf68af6d",
"body": null,
"is_bot": false,
"headline": "Release 0.16.0",
"author_name": "spacegaier",
"author_login": "spacegaier",
"committed_at": "2025-12-18T19:00:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4cef6cee1019741ada6145698e78daa8d73c9353",
"body": "* Feature: Support requiring anyOf a list of keys\n\nThis adds a new feature to Voluptuous, which is somewhat akin to what json-schema does with the special key `anyOf`.\n\n`Schema({Required(Any('color', 'temperature', 'brightness')): str})` will validate that AT LEAST ONE of these three values is prese\n[…]\nesent. But if brightness is present, all other validations of brightness (like checking that its value is a number between 0 and 100) still apply.\n\n* Simplify tests\n\n* Format stuff like black wants it",
"is_bot": false,
"headline": "Feature: Support requiring anyOf a list of keys (#534)",
"author_name": "Miguel Camba",
"author_login": "cibernox",
"committed_at": "2025-12-14T04:05:07Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c5b63f80f156deeb4ef9646555eb41413edad7f5",
"body": null,
"is_bot": false,
"headline": "i have run isort and updated few actions to latest version (#531)",
"author_name": "Oleksii",
"author_login": "doubledare704",
"committed_at": "2025-08-31T08:10:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86bcb0347e5a3344be1073975e80fd73d7f3ab75",
"body": "* Add comprehensive tests for humanize.py module to improve coverage from 71% to 100%\n\n- Add tests for _nested_getitem error handling (KeyError, IndexError, TypeError)\n- Add tests for humanize_error with long error message truncation\n- Add tests for validate_with_humanized_errors success and failure\n[…]\none data and multiple validation errors\n- Improve overall test coverage from 89% to 90%\n\nThis addresses the missing coverage in humanize.py lines 19-22, 45, and 54-57.\n\n* Fix import sorting with isort",
"is_bot": false,
"headline": "Add comprehensive tests for humanize.py module (#530)",
"author_name": "Manya Mittal",
"author_login": "manyamittal25",
"committed_at": "2025-08-02T11:07:29Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4a9c8f8efba20622afdc68e4721787efb4f17472",
"body": null,
"is_bot": false,
"headline": "Fix bug with Any validator and REMOVE_EXTRA (#524)",
"author_name": "David Bonnes",
"author_login": "zxdavb",
"committed_at": "2025-04-30T12:26:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a7a55f83b9fa7ba68b0669b3d78a61de703e0a16",
"body": null,
"is_bot": false,
"headline": "Allow Generators for vol.In (#523)",
"author_name": "Marc Mueller",
"author_login": "cdce8p",
"committed_at": "2024-07-22T15:58:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dcaaf3dd68be156253518a045feb1c4172dbd2d5",
"body": null,
"is_bot": false,
"headline": "Release 0.15.2",
"author_name": "spacegaier",
"author_login": "spacegaier",
"committed_at": "2024-07-02T19:06:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b24b80dec77a7ad035b851b8842a6629ad76a248",
"body": null,
"is_bot": false,
"headline": "Fix regression with ALLOW_EXTRA and Any validator (#522)",
"author_name": "Marc Mueller",
"author_login": "cdce8p",
"committed_at": "2024-07-02T18:54:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "23e178397d660f15fcf5544091f531d55dd24c37",
"body": null,
"is_bot": false,
"headline": "chore: bump version in __init__.py",
"author_name": "Alec Thomas",
"author_login": "alecthomas",
"committed_at": "2024-06-26T22:12:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85f14d89a451773be65f5c0803863d9071ce9793",
"body": null,
"is_bot": false,
"headline": "chore: add Hermit Python",
"author_name": "Alec Thomas",
"author_login": "alecthomas",
"committed_at": "2024-06-26T22:07:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05c5e79e4eec87c9930673a8f3dd943c628c4dfb",
"body": null,
"is_bot": false,
"headline": "chore: move doc string to top of module",
"author_name": "Alec Thomas",
"author_login": "alecthomas",
"committed_at": "2024-06-26T22:05:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16163aaeab0f99317438582aa10c26783605df5a",
"body": null,
"is_bot": false,
"headline": "Type schema attribute as Any (#521)",
"author_name": "Marc Mueller",
"author_login": "cdce8p",
"committed_at": "2024-06-26T22:05:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4cde166a39c9438a666a128eebe0996ce94c3974",
"body": null,
"is_bot": false,
"headline": "Don't enforce type for unused description attribute (#519)",
"author_name": "Marc Mueller",
"author_login": "cdce8p",
"committed_at": "2024-06-26T22:05:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66df7bef3790af39b330832f0dc3d0be742c8171",
"body": "* Remove Maybe validator typing\r\n\r\n* Use Schemable as validator type",
"is_bot": false,
"headline": "Remove Maybe validator typing (#517)",
"author_name": "Marc Mueller",
"author_login": "cdce8p",
"committed_at": "2024-06-25T23:15:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a610d38c8bc895683fbb3b81afb7ac836840904",
"body": null,
"is_bot": false,
"headline": "Use typing.Container for In validator (#518)",
"author_name": "Marc Mueller",
"author_login": "cdce8p",
"committed_at": "2024-06-25T21:54:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65f736cf6fde9bae22aa643495cbda384cb3df59",
"body": "…(#516)",
"is_bot": false,
"headline": "Improve validator typing to allow non-number formats for min and max …",
"author_name": "Marc Mueller",
"author_login": "cdce8p",
"committed_at": "2024-06-25T20:55:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca4006a6838be83f682c594bc15f7ea3d79cc80f",
"body": "* Fix vol.Remove not removing keys\r\n\r\nfixes a regression from #479\r\nblocks https://github.com/alecthomas/voluptuous/pull/479\r\n\r\n* add test",
"is_bot": false,
"headline": "Fix vol.Remove not removing keys that do not validate (#515)",
"author_name": "J. Nick Koston",
"author_login": "bdraco",
"committed_at": "2024-06-23T21:55:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2232c0e556bc68343388fa8499bdbf13196a7514",
"body": null,
"is_bot": false,
"headline": "Release 0.15.0",
"author_name": "spacegaier",
"author_login": "spacegaier",
"committed_at": "2024-06-23T21:03:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b1b1090bd9f62fc5695b54512d48cb5827e6f18b",
"body": null,
"is_bot": false,
"headline": "Only calculate hash once for Marker objects (#513)",
"author_name": "J. Nick Koston",
"author_login": "bdraco",
"committed_at": "2024-06-16T16:40:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9451b613c0b08f79cdb8ec6ff7e214fd3254c6ea",
"body": null,
"is_bot": false,
"headline": "Add `Any` type to defaults (#512)",
"author_name": "Joakim Plate",
"author_login": "elupus",
"committed_at": "2024-06-16T16:39:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ed7ca997558989b4e0f83984807346ad61a1421d",
"body": "python 3.8 goes EOL in 2024-10",
"is_bot": false,
"headline": "Remove python 3.8 support (#514)",
"author_name": "J. Nick Koston",
"author_login": "bdraco",
"committed_at": "2024-06-08T03:18:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1fcf849f16279d43010c89c5d8cf69d5de96a800",
"body": null,
"is_bot": false,
"headline": "Release 0.14.2 (#508)",
"author_name": "Antoni Szych",
"author_login": "antoni-szych-rtbhouse",
"committed_at": "2024-02-02T20:44:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "28a799a6f7744367599078ef19b571d6758cf271",
"body": null,
"is_bot": false,
"headline": "docs: document description field of Marker (#507)",
"author_name": "Antoni Szych",
"author_login": "antoni-szych-rtbhouse",
"committed_at": "2024-02-01T20:18:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "503dd346a1be9ac016c43b902a6601ddeaa9bda8",
"body": "…51) (#506)\n\ncredits to: @spacegaier and @beastd",
"is_bot": false,
"headline": "fix: allow unsortable containers in In and NotIn validators (fixes #4…",
"author_name": "Antoni Szych",
"author_login": "antoni-szych-rtbhouse",
"committed_at": "2024-02-01T20:17:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "09d0f066a5f7b80973996c90c54a7bb00f62c905",
"body": null,
"is_bot": false,
"headline": "Ignore styling-only commit in git blame (#505)",
"author_name": "Antoni Szych",
"author_login": "antoni-szych-rtbhouse",
"committed_at": "2024-01-31T20:40:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5189d2b6f9dfb3016f094561afcfb5584d143ad",
"body": null,
"is_bot": false,
"headline": "Add linters configuration, reformat whole code (#503)",
"author_name": "Antoni Szych",
"author_login": "antoni-szych-rtbhouse",
"committed_at": "2024-01-31T12:19:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "095322559b0a525c90c99d34bc233a93a3b54332",
"body": "…ata (#502)\n\n* feat: add python 3.12 to github workflow tox matrix and package metadata\r\n\r\n* bump minimal python requirement in setup.py",
"is_bot": false,
"headline": "feat: add python 3.12 to github workflow tox matrix and package metad…",
"author_name": "Antoni Szych",
"author_login": "antoni-szych-rtbhouse",
"committed_at": "2023-12-14T11:13:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "abc6ed2cedab82348df1b3c5e46f797f964b9be8",
"body": "…tox (#501)\n\n* feat: add python 3.11 to github workflow tox matrix, remove 3.7 from tox\r\n\r\n* run flake8 and mypy on py311\r\n\r\n* add py311 to package metadata",
"is_bot": false,
"headline": "feat: add python 3.11 to github workflow tox matrix, remove 3.7 from …",
"author_name": "Antoni Szych",
"author_login": "antoni-szych-rtbhouse",
"committed_at": "2023-12-14T10:27:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dec0fcb6413d2237b58e22b642fe2438feea3b15",
"body": "…er (#500)",
"is_bot": false,
"headline": "refactor(tests): fix few tests, use pytest.raises, extend raises help…",
"author_name": "Antoni Szych",
"author_login": "antoni-szych-rtbhouse",
"committed_at": "2023-12-13T19:59:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "264b7e4f7f3452c2305e5e3663c2daa70e358917",
"body": "…les (#497)",
"is_bot": false,
"headline": "fix: allow path to be a list of strings, integers or any other hashab…",
"author_name": "Antoni Szych",
"author_login": "antoni-szych-rtbhouse",
"committed_at": "2023-12-13T17:39:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca5223ffd790c8a37b28bc40767a2cbdea3a7a95",
"body": null,
"is_bot": false,
"headline": "ci: Drop support of eol versions of python (#499)",
"author_name": "Damien Couppé",
"author_login": "Kontrolix",
"committed_at": "2023-12-13T10:13:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79d9dd7a8c0d34d15138725622179053d427d969",
"body": "* Fix: Fix type hint for Coerce type param\r\n\r\nCoerce can accept a callable as type.\r\n\r\n* Update validators.py\r\n\r\nFix: type. hint\r\n\r\n* Update voluptuous/validators.py\r\n\r\nCo-authored-by: Antoni Szych <antoni.szych@rtbhouse.com>\r\n\r\n---------\r\n\r\nCo-authored-by: Alec Thomas <alec@swapoff.org>\r\nCo-authored-by: Antoni Szych <antoni.szych@rtbhouse.com>",
"is_bot": false,
"headline": "Fix: Fix type hint for Coerce type param (#488)",
"author_name": "Damien Couppé",
"author_login": "Kontrolix",
"committed_at": "2023-12-12T21:50:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b90b3f0a5ea2a565f0e219f6b7c0de428c04e522",
"body": null,
"is_bot": false,
"headline": "Configure renovate",
"author_name": "Alec Thomas",
"author_login": "alecthomas",
"committed_at": "2023-12-02T01:44:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "891b2eaef594cfcc1b8821d22c7085dc8666d742",
"body": null,
"is_bot": false,
"headline": "Drop duplicated type checks in Schema._compile (#495)",
"author_name": "Erik Montnemery",
"author_login": "emontnemery",
"committed_at": "2023-12-01T08:30:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5160e055b62c3e132543fcf501b1bced2d9e9f61",
"body": null,
"is_bot": false,
"headline": "Release 0.14.1",
"author_name": "spacegaier",
"author_login": "spacegaier",
"committed_at": "2023-11-17T11:10:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d8a72df640c2f4499f6013b93de0719a78f2455d",
"body": "…ewer (#494)\n\nAlso remove some stale classifiers",
"is_bot": false,
"headline": "Add python_requires so package installers know this requires 3.7 or n…",
"author_name": "Chris Withers",
"author_login": "cjw296",
"committed_at": "2023-11-17T10:14:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82e87df58c6e301b70838c01267234413cc0f7d5",
"body": null,
"is_bot": false,
"headline": "Add pytest.ini and tox.ini to sdist (#487)",
"author_name": "Marcel Telka",
"author_login": "mtelka",
"committed_at": "2023-11-14T21:11:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c891a7bb7a629b809189e3cdd0798ecd26968d8b",
"body": null,
"is_bot": false,
"headline": "Release 0.14.0",
"author_name": "spacegaier",
"author_login": "spacegaier",
"committed_at": "2023-11-12T17:00:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5599057300ddd1e19afe5919efae07b9c6cf57ac",
"body": null,
"is_bot": false,
"headline": "Fix type hints and enable mypy (#486)",
"author_name": "Ruslan Sayfutdinov",
"author_login": "KapJI",
"committed_at": "2023-11-12T00:13:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d499a4115d23b9ba7bb70ec81fa961a4ce7abc15",
"body": null,
"is_bot": false,
"headline": "Update contributions-only.md",
"author_name": "Alec Thomas",
"author_login": "alecthomas",
"committed_at": "2023-07-04T11:52:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9405620b999cd5d4de197ad38dad6a645353493d",
"body": null,
"is_bot": false,
"headline": "Remove Travis build status badge (#482)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2023-06-23T09:38:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "41bc53df12c078a2fc9ea586a280605c53db5ea1",
"body": null,
"is_bot": false,
"headline": "Allow error reporting on keys (#479)",
"author_name": "Ken Kundert",
"author_login": "KenKundert",
"committed_at": "2023-06-13T11:54:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72641b83317cf91a1fc264c2b08ee31519c22b34",
"body": null,
"is_bot": false,
"headline": "Fix type hint of schemas, for example for Required('key') (#478)",
"author_name": "DS/Charlie",
"author_login": "ds-cbo",
"committed_at": "2023-02-22T19:29:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ecb0cdc27ca4859152cdc2bb85e81cb194447add",
"body": null,
"is_bot": false,
"headline": "Set static PyPI project description (#476)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2023-02-13T16:56:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bd2f9adc7b38ba28b93bf00fdbd931843a48300c",
"body": null,
"is_bot": false,
"headline": "add typing information (#475)",
"author_name": "DS/Charlie",
"author_login": "ds-cbo",
"committed_at": "2023-02-13T09:41:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1105b31432ac5ebb3b0e3238be94b4231c427c67",
"body": "Co-authored-by: Volker Schaus <volker.schaus@esa.int>",
"is_bot": false,
"headline": "Change to SPDX conform license string (#472)",
"author_name": "elprimato",
"author_login": "elprimato",
"committed_at": "2022-10-23T20:50:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "41184fef85909c7500db44c5a254cd61425840c7",
"body": null,
"is_bot": false,
"headline": "Fix a few typos (#470)",
"author_name": "Tim Gates",
"author_login": "timgates42",
"committed_at": "2022-07-13T12:30:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2466ee2ffe901cd3df3f8675c1f21b4786b5b58e",
"body": null,
"is_bot": false,
"headline": "Release 0.13.1 (#469)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2022-04-07T11:58:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "51751cab05cc0d08428f3add6502f58968701e8f",
"body": null,
"is_bot": false,
"headline": "Add tests for `Object` and `MultipleInvalid` (#467)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2022-04-03T20:49:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea4d8bec81e8bfb8e66cb8127dc68bca9fda5da0",
"body": null,
"is_bot": false,
"headline": "Style and warning cleanups in README (#466)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2022-04-03T10:26:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b4584ee4c20821e02b61e09b74d1044a2d3b0c6a",
"body": "…(#465)",
"is_bot": false,
"headline": "Extend README to include coverage run commands + unpin `setupstools` …",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2022-04-03T10:07:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6003cb30c520e650976ea5b936d04494b50d7849",
"body": "Co-authored-by: pgajdos <pgajdos@suse.cz>\r\nCo-authored-by: epenet <epenet@users.noreply.github.com>",
"is_bot": false,
"headline": "`pytest` migration + enable Python 3.10 (#464)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2022-04-03T09:51:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "402da7c8785c41db875c5eaaa13c89a98ae42d65",
"body": null,
"is_bot": false,
"headline": "Convert codebase to adhere to flake8 W504 (PEP 8) (#462)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2022-04-02T19:55:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e6bd67b064592ba671780e7069a279f6df89e206",
"body": null,
"is_bot": false,
"headline": "Enable flake8 in github actions (#459)",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2022-04-02T19:42:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1451f0f288f5765af8d8d542d9b274ae5a5a7e28",
"body": null,
"is_bot": false,
"headline": "Ignore `Enum` if it is unavailable (#454)",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2022-04-02T19:13:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2e5d6540e81ae015b5e39503c4f7ed3e2fba93b9",
"body": null,
"is_bot": false,
"headline": "Enable github actions (#457)",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2022-04-02T10:59:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d6d41a5e44a7abfc11ced0601a8fb788e655b03",
"body": null,
"is_bot": false,
"headline": "Fix email regex match for Python 2.7 (#456)",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2022-04-01T07:01:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3d61efc75429bdd30213878b416722ca164c828",
"body": null,
"is_bot": false,
"headline": "Release 0.13.0",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2022-03-30T11:25:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6cf017e46df42cca001e8513ba64c1033c77fe98",
"body": null,
"is_bot": false,
"headline": "Display valid Enum values in Coerce",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2022-03-10T22:07:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "980a55f57c0ecdd4fd3fec687dbbabf132f9e022",
"body": null,
"is_bot": false,
"headline": "Release 0.12.2",
"author_name": "Adam Tankanow",
"author_login": "Tankanow",
"committed_at": "2021-09-20T21:59:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e5e3b51fe86523442f09446916f834c16c7d15d6",
"body": "This PR is about the current method used to conditionally match user and domain regex to email.\ncurrently, it's using match which wrongfully accepts entries if domain has special characters after .com\n\nit currently accepts, john@voluptuous.com> or john!@voluptuous.org!@($*!\n\nthus, we need to fullmatch the domain or user to avoid such entries and validate them properly.",
"is_bot": false,
"headline": "Change email regex match to fullmatch",
"author_name": "leonidguadalupe",
"author_login": "leonidguadalupe",
"committed_at": "2021-08-31T10:10:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1720439e4848d966707002707e825b448ab40342",
"body": null,
"is_bot": false,
"headline": "ISSUE-439: Fix broken test",
"author_name": "Adam Tankanow",
"author_login": "Tankanow",
"committed_at": "2021-02-19T23:05:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef32f11f159f856d88b766837ace1ed0fdefdb23",
"body": "This reverts commit da3cc967f7b16f18bf8c1feacfeced8f10ce9e40.",
"is_bot": false,
"headline": "Revert \"Ensure `Maybe` propagates error information (#411)\"",
"author_name": "Adam Tankanow",
"author_login": "Tankanow",
"committed_at": "2021-02-19T23:05:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "11b4a2fa6987ba957c1fdcc1b217f4d6d6c9037d",
"body": null,
"is_bot": false,
"headline": "Include the regular expression in the error message",
"author_name": "timski",
"author_login": "skinitimski",
"committed_at": "2021-01-27T23:51:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5419cff1fae104690d553dec967ce99c546473bd",
"body": null,
"is_bot": false,
"headline": "Release 0.12.1",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-12-06T22:50:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c82e5d575ba7b71be8407bdcccec0c6cf4b15e0f",
"body": null,
"is_bot": false,
"headline": "Extend tests for `Schema` with empty list or dict (#438)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-12-06T22:33:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a7cb819b4f7e3998ee087ddddc46ba87dec63ef",
"body": "* Add ability to use custom flags when running tox\r\n\r\n.. so that you can e.g. run `tox -- --pdb` to get a debugger\r\non test failures.\r\n\r\n* Remove value enumeration when validating empty list (#397)\r\n\r\nThe behaviour seems to have been introduced in commit\r\n95489bd443e9a654 that modified the schema of\n[…]\na valid value @ data[1]'\r\n- Schema({'key': []})({'key': [1]) -> 'not a valid dictionary value @\r\ndata['key'].\r\n\r\nFinally, as new unit test is provided to ensure that the new behaviour\r\nremains intact.",
"is_bot": false,
"headline": "Remove value enumeration when validating empty list (#434)",
"author_name": "monopolis",
"author_login": "monopolis",
"committed_at": "2020-12-06T22:08:04Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0639df345ee0c06690229b98a561a2c17981332a",
"body": null,
"is_bot": false,
"headline": "Grouped `Maybe` tests plus added a `Range` test (#437)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-12-06T20:51:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da3cc967f7b16f18bf8c1feacfeced8f10ce9e40",
"body": "Due to Any evaluating all options, and raising the exception\r\nfrom the first encountered error, Maybe would discard the\r\nexpected error raised by the provided validator and only\r\nraise a invalid value error (due to values not being None).\r\n\r\nThis commit changes the order of the validators in Maybe so\r\nthat the first evaluated error, and thus returned is that of\r\nthe provided validator.",
"is_bot": false,
"headline": "Ensure `Maybe` propagates error information (#411)",
"author_name": "monopolis",
"author_login": "monopolis",
"committed_at": "2020-12-06T20:28:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de695d855949b44ec1cce41f243ad9c6a39034fd",
"body": null,
"is_bot": false,
"headline": "Enable stable travis-ci python 3.9 build",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-11-19T06:08:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "997c8dbba92fec3f58b081141c9a4a90e046ada8",
"body": null,
"is_bot": false,
"headline": "Add sorted() for In and NotIn + fix tests (#436)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-11-18T19:17:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ffa09b4b0668fdc7dba012d8c13ffb35bc83ff79",
"body": "* Update validators.py\r\n\r\n* Update In and NotIn validator error message",
"is_bot": false,
"headline": "Improve error message for In() and NotIn() (#425)",
"author_name": "vmaillol-altair",
"author_login": "vmaillol-altair",
"committed_at": "2020-11-18T19:13:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67adedd627054e151101575c8c5a7d65f72f827a",
"body": null,
"is_bot": false,
"headline": "Extended a few tests (#435)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-11-18T18:40:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7151438f2957debb04019400e6552965fd04c867",
"body": "The python 3.9 binary from travis-ci is not yet available although Python 3.9 itself has been officially released.",
"is_bot": false,
"headline": "Use \"py3.9-dev\" in travis-ci for now",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-10-07T18:05:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6b0fdc3e178af7267d97827787669da16c19dd01",
"body": null,
"is_bot": false,
"headline": "Add Python 3.9 support (#433)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-10-07T17:13:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a62e5391a66804e67d7365d02fc06802bdaffb28",
"body": "* Fixed typos + made spelling more consistent\r\n\r\n* Adjustments",
"is_bot": false,
"headline": "Fixed typos + made spelling more consistent (#431)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-09-22T08:52:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f1b04199e57b0ad986d53e2ff9be4a4d68c97eb5",
"body": null,
"is_bot": false,
"headline": "Update changelog for 0.12.0",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-09-21T21:59:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da9687dfed27f5f8bfb8c2a76b737c3cc319fd85",
"body": null,
"is_bot": false,
"headline": "Newer coverage version required for python-3.8",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-09-21T21:58:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d8d863d0bd8526c58a3e78506d17de8c9febcf30",
"body": null,
"is_bot": false,
"headline": "Cleanup python versions (remove unsupported + add 3.8)",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-09-21T21:58:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f14afc580bc25cc2055aac279f63c98c47948fb",
"body": null,
"is_bot": false,
"headline": "Updated README to include shields from pypi",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-09-21T21:53:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f8775a70cd10dc56775f74978840e4611900cff8",
"body": null,
"is_bot": false,
"headline": "Fix most important flake8 errors/warnings",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-09-21T10:38:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9fa00090a489b3d0c28b513aa9d581a0f559005f",
"body": "… (#427)",
"is_bot": false,
"headline": "Added additional tests for Range, Clamp and Length + catch exceptions…",
"author_name": "Philip Allgaier",
"author_login": "spacegaier",
"committed_at": "2020-09-20T08:57:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "580e7305ae0de6d4ba22c4feee688df64bfbb877",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Alec Thomas",
"author_login": "alecthomas",
"committed_at": "2020-08-24T04:28:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7fa045e72cd4019ae5c384deee9d708a8e398bae",
"body": "A fix for issue #419 - schema required flag isn't set properly in all cases",
"is_bot": false,
"headline": "Fixed issue with 'required' not being set properly and added test (#420)",
"author_name": "EarQuack",
"author_login": "EarQuack",
"committed_at": "2020-04-01T06:09:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82de2ef4afe1f168fa16160f9da7c757aba0d6cc",
"body": null,
"is_bot": false,
"headline": "Update issue templates",
"author_name": "Alec Thomas",
"author_login": "alecthomas",
"committed_at": "2020-01-21T00:35:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "095cda05255a636a88b0c6583ebfe9511659f9df",
"body": null,
"is_bot": false,
"headline": "Switch to CONTRIBUTIONS ONLY",
"author_name": "Alec Thomas",
"author_login": "alecthomas",
"committed_at": "2020-01-20T20:57:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "45ba818fe718d5d3de58885a54fd5a2e4664d835",
"body": null,
"is_bot": false,
"headline": "Update schema_builder.py",
"author_name": "Tim Gates",
"author_login": "timgates42",
"committed_at": "2019-12-06T22:07:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "49160497ca0a4af901977609489be695382d37e0",
"body": "Closes #415",
"is_bot": false,
"headline": "Fix simple typo: arugment -> argument",
"author_name": "Tim Gates",
"author_login": "timgates42",
"committed_at": "2019-12-06T22:07:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "858ceee119643bca099077e5a3ccbcb176292d1c",
"body": "In Python3 some values that are comparable in Python2 are no longer\r\ncomparable. One instance of this is None, which in Python2 is always\r\nless than any other object. In Python3, however, a TypeError is raised\r\nif it is used in a comparison.\r\n\r\nThis commit handles said TypeError and issues a RangeInvalid exception\r\ninstead.",
"is_bot": false,
"headline": "Handle incomparable values in Range (#414)",
"author_name": "monopolis",
"author_login": "monopolis",
"committed_at": "2019-11-28T00:13:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f5e64dd7e26fb2de0ca4baec42c426c60cb061c2",
"body": null,
"is_bot": false,
"headline": "Allow a discrminant field in validators (#368)",
"author_name": "Yashvardhan Didwania",
"author_login": "ydidwania",
"committed_at": "2019-08-15T13:00:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "961f85fd809261cbe80ac037105a317db484cbe4",
"body": null,
"is_bot": false,
"headline": "0.11.7 including changelog.",
"author_name": "Alec Thomas",
"author_login": "alecthomas",
"committed_at": "2019-08-13T02:18:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce8227f74b0c14d4f85e6f58f071066ebf619134",
"body": null,
"is_bot": false,
"headline": "Updated changelog with latest changes since release of 0.11.5",
"author_name": "Simeon Visser",
"author_login": "svisser",
"committed_at": "2019-08-13T02:16:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fe04e896d0b8ca3345d63b685794972807870513",
"body": null,
"is_bot": false,
"headline": "0.11.6 release.",
"author_name": "Alec Thomas",
"author_login": "alecthomas",
"committed_at": "2019-08-13T02:11:23Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 13,
"commits_last_year": 11,
"latest_release_at": "2025-12-18T19:07:42Z",
"latest_release_tag": "0.16.0",
"releases_from_tags": false,
"days_since_last_push": 3,
"active_weeks_last_year": 6,
"days_since_latest_release": 215,
"mean_days_between_releases": 151
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 57,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "voluptuous",
"exists": true,
"license": "BSD-3-Clause",
"keywords": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.9"
],
"ecosystem": "pypi",
"matches_repo": true,
"registry_url": "https://pypi.org/project/voluptuous/",
"is_deprecated": false,
"latest_version": "0.16.0",
"repository_url": "https://github.com/alecthomas/voluptuous",
"versions_count": 51,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": "2010-07-15T12:24:38.901984Z",
"latest_published_at": "2025-12-18T23:18:46.080396Z",
"latest_version_yanked": null,
"days_since_latest_publish": 215
}
]
},
"popularity": {
"forks": 234,
"stars": 1849,
"watchers": 32,
"fork_history": {
"days": [
{
"date": "2010-11-25",
"count": 1
},
{
"date": "2011-08-11",
"count": 1
},
{
"date": "2012-03-25",
"count": 1
},
{
"date": "2012-06-17",
"count": 1
},
{
"date": "2012-08-14",
"count": 1
},
{
"date": "2012-08-31",
"count": 1
},
{
"date": "2012-09-19",
"count": 1
},
{
"date": "2012-12-07",
"count": 1
},
{
"date": "2013-01-07",
"count": 1
},
{
"date": "2013-03-12",
"count": 1
},
{
"date": "2013-03-17",
"count": 1
},
{
"date": "2013-04-06",
"count": 1
},
{
"date": "2013-04-20",
"count": 1
},
{
"date": "2013-05-31",
"count": 1
},
{
"date": "2013-07-02",
"count": 1
},
{
"date": "2013-08-23",
"count": 1
},
{
"date": "2013-09-17",
"count": 1
},
{
"date": "2013-09-26",
"count": 1
},
{
"date": "2013-10-04",
"count": 1
},
{
"date": "2013-10-12",
"count": 1
},
{
"date": "2013-10-20",
"count": 1
},
{
"date": "2013-10-23",
"count": 1
},
{
"date": "2013-10-31",
"count": 1
},
{
"date": "2013-11-06",
"count": 1
},
{
"date": "2013-11-08",
"count": 1
},
{
"date": "2013-12-22",
"count": 1
},
{
"date": "2014-01-15",
"count": 1
},
{
"date": "2014-02-26",
"count": 1
},
{
"date": "2014-03-10",
"count": 1
},
{
"date": "2014-03-11",
"count": 1
},
{
"date": "2014-04-07",
"count": 1
},
{
"date": "2014-05-06",
"count": 1
},
{
"date": "2014-06-23",
"count": 1
},
{
"date": "2014-07-03",
"count": 1
},
{
"date": "2014-07-17",
"count": 1
},
{
"date": "2014-07-27",
"count": 1
},
{
"date": "2014-08-07",
"count": 2
},
{
"date": "2014-10-20",
"count": 1
},
{
"date": "2014-11-13",
"count": 1
},
{
"date": "2014-11-17",
"count": 1
},
{
"date": "2015-01-03",
"count": 1
},
{
"date": "2015-01-17",
"count": 1
},
{
"date": "2015-01-19",
"count": 1
},
{
"date": "2015-03-21",
"count": 1
},
{
"date": "2015-03-31",
"count": 1
},
{
"date": "2015-04-15",
"count": 1
},
{
"date": "2015-05-22",
"count": 1
},
{
"date": "2015-05-28",
"count": 1
},
{
"date": "2015-06-01",
"count": 1
},
{
"date": "2015-06-02",
"count": 1
},
{
"date": "2015-06-25",
"count": 1
},
{
"date": "2015-07-12",
"count": 1
},
{
"date": "2015-07-13",
"count": 1
},
{
"date": "2015-08-04",
"count": 1
},
{
"date": "2015-09-13",
"count": 1
},
{
"date": "2015-10-02",
"count": 1
},
{
"date": "2015-11-02",
"count": 1
},
{
"date": "2015-12-15",
"count": 1
},
{
"date": "2015-12-25",
"count": 1
},
{
"date": "2016-01-06",
"count": 1
},
{
"date": "2016-01-11",
"count": 1
},
{
"date": "2016-01-28",
"count": 1
},
{
"date": "2016-02-09",
"count": 1
},
{
"date": "2016-02-19",
"count": 1
},
{
"date": "2016-02-23",
"count": 1
},
{
"date": "2016-03-04",
"count": 1
},
{
"date": "2016-03-17",
"count": 1
},
{
"date": "2016-03-23",
"count": 1
},
{
"date": "2016-04-05",
"count": 1
},
{
"date": "2016-04-07",
"count": 1
},
{
"date": "2016-05-01",
"count": 1
},
{
"date": "2016-06-08",
"count": 2
},
{
"date": "2016-06-23",
"count": 1
},
{
"date": "2016-07-08",
"count": 1
},
{
"date": "2016-07-26",
"count": 1
},
{
"date": "2016-08-01",
"count": 1
},
{
"date": "2016-08-23",
"count": 1
},
{
"date": "2016-09-20",
"count": 1
},
{
"date": "2016-09-21",
"count": 1
},
{
"date": "2016-09-22",
"count": 1
},
{
"date": "2016-09-30",
"count": 1
},
{
"date": "2016-10-24",
"count": 1
},
{
"date": "2016-10-30",
"count": 1
},
{
"date": "2016-11-28",
"count": 1
},
{
"date": "2017-01-11",
"count": 1
},
{
"date": "2017-01-17",
"count": 1
},
{
"date": "2017-02-03",
"count": 1
},
{
"date": "2017-02-09",
"count": 1
},
{
"date": "2017-02-20",
"count": 1
},
{
"date": "2017-02-24",
"count": 1
},
{
"date": "2017-03-10",
"count": 1
},
{
"date": "2017-03-15",
"count": 1
},
{
"date": "2017-04-06",
"count": 1
},
{
"date": "2017-04-10",
"count": 1
},
{
"date": "2017-04-13",
"count": 1
},
{
"date": "2017-04-14",
"count": 1
},
{
"date": "2017-04-27",
"count": 1
},
{
"date": "2017-05-01",
"count": 1
},
{
"date": "2017-06-02",
"count": 1
},
{
"date": "2017-06-26",
"count": 2
},
{
"date": "2017-07-11",
"count": 2
},
{
"date": "2017-07-19",
"count": 1
},
{
"date": "2017-09-21",
"count": 1
},
{
"date": "2017-09-27",
"count": 1
},
{
"date": "2017-10-02",
"count": 1
},
{
"date": "2017-10-18",
"count": 1
},
{
"date": "2017-10-19",
"count": 1
},
{
"date": "2017-11-05",
"count": 1
},
{
"date": "2017-11-15",
"count": 1
},
{
"date": "2017-11-17",
"count": 1
},
{
"date": "2017-12-03",
"count": 1
},
{
"date": "2017-12-06",
"count": 1
},
{
"date": "2017-12-07",
"count": 1
},
{
"date": "2018-01-19",
"count": 1
},
{
"date": "2018-02-03",
"count": 1
},
{
"date": "2018-02-05",
"count": 1
},
{
"date": "2018-02-14",
"count": 1
},
{
"date": "2018-02-25",
"count": 1
},
{
"date": "2018-03-20",
"count": 1
},
{
"date": "2018-03-24",
"count": 1
},
{
"date": "2018-03-27",
"count": 1
},
{
"date": "2018-04-03",
"count": 1
},
{
"date": "2018-04-08",
"count": 2
},
{
"date": "2018-05-03",
"count": 1
},
{
"date": "2018-05-27",
"count": 1
},
{
"date": "2018-06-07",
"count": 1
},
{
"date": "2018-06-21",
"count": 1
},
{
"date": "2018-07-05",
"count": 1
},
{
"date": "2018-07-18",
"count": 1
},
{
"date": "2018-07-25",
"count": 1
},
{
"date": "2018-08-04",
"count": 1
},
{
"date": "2018-08-21",
"count": 1
},
{
"date": "2018-09-11",
"count": 1
},
{
"date": "2018-11-01",
"count": 1
},
{
"date": "2018-12-06",
"count": 1
},
{
"date": "2018-12-10",
"count": 1
},
{
"date": "2018-12-24",
"count": 1
},
{
"date": "2019-02-10",
"count": 1
},
{
"date": "2019-02-12",
"count": 1
},
{
"date": "2019-02-13",
"count": 1
},
{
"date": "2019-02-16",
"count": 1
},
{
"date": "2019-02-18",
"count": 1
},
{
"date": "2019-02-19",
"count": 1
},
{
"date": "2019-02-22",
"count": 1
},
{
"date": "2019-04-02",
"count": 1
},
{
"date": "2019-04-20",
"count": 1
},
{
"date": "2019-06-04",
"count": 1
},
{
"date": "2019-07-15",
"count": 1
},
{
"date": "2019-08-30",
"count": 1
},
{
"date": "2019-10-04",
"count": 1
},
{
"date": "2019-10-29",
"count": 1
},
{
"date": "2019-11-03",
"count": 1
},
{
"date": "2019-11-07",
"count": 1
},
{
"date": "2019-12-16",
"count": 1
},
{
"date": "2020-01-08",
"count": 1
},
{
"date": "2020-01-16",
"count": 1
},
{
"date": "2020-03-25",
"count": 2
},
{
"date": "2020-03-31",
"count": 1
},
{
"date": "2020-06-04",
"count": 1
},
{
"date": "2020-07-24",
"count": 1
},
{
"date": "2020-09-19",
"count": 1
},
{
"date": "2020-10-06",
"count": 1
},
{
"date": "2020-12-07",
"count": 1
},
{
"date": "2021-01-27",
"count": 1
},
{
"date": "2021-03-29",
"count": 1
},
{
"date": "2021-06-16",
"count": 1
},
{
"date": "2021-07-16",
"count": 1
},
{
"date": "2021-07-19",
"count": 1
},
{
"date": "2021-08-30",
"count": 1
},
{
"date": "2021-09-02",
"count": 1
},
{
"date": "2021-10-06",
"count": 1
},
{
"date": "2021-10-29",
"count": 1
},
{
"date": "2021-12-01",
"count": 1
},
{
"date": "2021-12-22",
"count": 1
},
{
"date": "2022-02-13",
"count": 1
},
{
"date": "2022-02-15",
"count": 1
},
{
"date": "2022-02-25",
"count": 1
},
{
"date": "2022-03-17",
"count": 1
},
{
"date": "2022-03-19",
"count": 1
},
{
"date": "2022-04-07",
"count": 1
},
{
"date": "2022-04-12",
"count": 1
},
{
"date": "2022-05-26",
"count": 1
},
{
"date": "2022-05-30",
"count": 1
},
{
"date": "2022-07-04",
"count": 1
},
{
"date": "2022-10-23",
"count": 1
},
{
"date": "2022-11-04",
"count": 1
},
{
"date": "2023-01-25",
"count": 1
},
{
"date": "2023-02-13",
"count": 1
},
{
"date": "2023-04-27",
"count": 1
},
{
"date": "2023-11-11",
"count": 1
},
{
"date": "2023-11-13",
"count": 1
},
{
"date": "2023-11-14",
"count": 1
},
{
"date": "2023-12-11",
"count": 1
},
{
"date": "2024-01-24",
"count": 1
},
{
"date": "2024-01-31",
"count": 1
},
{
"date": "2024-03-10",
"count": 1
},
{
"date": "2024-03-24",
"count": 1
},
{
"date": "2024-06-06",
"count": 1
},
{
"date": "2024-06-08",
"count": 1
},
{
"date": "2024-08-15",
"count": 1
},
{
"date": "2024-08-17",
"count": 1
},
{
"date": "2024-09-28",
"count": 1
},
{
"date": "2024-11-27",
"count": 1
},
{
"date": "2025-03-08",
"count": 1
},
{
"date": "2025-08-02",
"count": 1
},
{
"date": "2025-08-31",
"count": 1
},
{
"date": "2025-09-01",
"count": 1
},
{
"date": "2025-10-28",
"count": 1
},
{
"date": "2026-03-23",
"count": 2
},
{
"date": "2026-04-07",
"count": 1
},
{
"date": "2026-04-18",
"count": 1
},
{
"date": "2026-06-12",
"count": 1
},
{
"date": "2026-06-13",
"count": 1
},
{
"date": "2026-06-21",
"count": 1
},
{
"date": "2026-06-23",
"count": 1
},
{
"date": "2026-07-02",
"count": 1
},
{
"date": "2026-07-03",
"count": 1
},
{
"date": "2026-07-04",
"count": 2
},
{
"date": "2026-07-19",
"count": 1
},
{
"date": "2026-07-20",
"count": 4
}
],
"complete": true,
"collected": 231,
"total_forks": 234
},
"star_history": {
"days": [
{
"date": "2017-09-06",
"count": 1
},
{
"date": "2017-09-12",
"count": 1
},
{
"date": "2017-09-18",
"count": 2
},
{
"date": "2017-09-20",
"count": 1
},
{
"date": "2017-09-21",
"count": 1
},
{
"date": "2017-09-27",
"count": 1
},
{
"date": "2017-09-30",
"count": 1
},
{
"date": "2017-10-01",
"count": 3
},
{
"date": "2017-10-02",
"count": 1
},
{
"date": "2017-10-04",
"count": 1
},
{
"date": "2017-10-05",
"count": 2
},
{
"date": "2017-10-11",
"count": 1
},
{
"date": "2017-10-12",
"count": 1
},
{
"date": "2017-10-13",
"count": 1
},
{
"date": "2017-10-22",
"count": 1
},
{
"date": "2017-10-23",
"count": 1
},
{
"date": "2017-10-26",
"count": 2
},
{
"date": "2017-10-29",
"count": 2
},
{
"date": "2017-11-02",
"count": 1
},
{
"date": "2017-11-03",
"count": 1
},
{
"date": "2017-11-05",
"count": 8
},
{
"date": "2017-11-06",
"count": 8
},
{
"date": "2017-11-08",
"count": 3
},
{
"date": "2017-11-09",
"count": 3
},
{
"date": "2017-11-10",
"count": 1
},
{
"date": "2017-11-13",
"count": 2
},
{
"date": "2017-11-14",
"count": 1
},
{
"date": "2017-11-15",
"count": 1
},
{
"date": "2017-11-16",
"count": 1
},
{
"date": "2017-11-21",
"count": 1
},
{
"date": "2017-11-28",
"count": 1
},
{
"date": "2017-11-29",
"count": 2
},
{
"date": "2017-11-30",
"count": 1
},
{
"date": "2017-12-01",
"count": 2
},
{
"date": "2017-12-04",
"count": 1
},
{
"date": "2017-12-05",
"count": 1
},
{
"date": "2017-12-07",
"count": 2
},
{
"date": "2017-12-09",
"count": 1
},
{
"date": "2017-12-11",
"count": 3
},
{
"date": "2017-12-12",
"count": 3
},
{
"date": "2017-12-14",
"count": 2
},
{
"date": "2017-12-17",
"count": 1
},
{
"date": "2017-12-23",
"count": 1
},
{
"date": "2017-12-24",
"count": 1
},
{
"date": "2017-12-26",
"count": 1
},
{
"date": "2017-12-28",
"count": 2
},
{
"date": "2017-12-29",
"count": 1
},
{
"date": "2018-01-01",
"count": 1
},
{
"date": "2018-01-07",
"count": 1
},
{
"date": "2018-01-11",
"count": 2
},
{
"date": "2018-01-12",
"count": 1
},
{
"date": "2018-01-13",
"count": 1
},
{
"date": "2018-01-14",
"count": 2
},
{
"date": "2018-01-18",
"count": 3
},
{
"date": "2018-01-21",
"count": 2
},
{
"date": "2018-01-29",
"count": 2
},
{
"date": "2018-01-30",
"count": 1
},
{
"date": "2018-01-31",
"count": 2
},
{
"date": "2018-02-02",
"count": 1
},
{
"date": "2018-02-04",
"count": 2
},
{
"date": "2018-02-08",
"count": 1
},
{
"date": "2018-02-12",
"count": 2
},
{
"date": "2018-02-14",
"count": 1
},
{
"date": "2018-02-15",
"count": 1
},
{
"date": "2018-02-17",
"count": 1
},
{
"date": "2018-02-22",
"count": 1
},
{
"date": "2018-02-23",
"count": 1
},
{
"date": "2018-02-24",
"count": 1
},
{
"date": "2018-03-01",
"count": 1
},
{
"date": "2018-03-02",
"count": 2
},
{
"date": "2018-03-03",
"count": 2
},
{
"date": "2018-03-05",
"count": 1
},
{
"date": "2018-03-06",
"count": 3
},
{
"date": "2018-03-08",
"count": 1
},
{
"date": "2018-03-09",
"count": 1
},
{
"date": "2018-03-13",
"count": 1
},
{
"date": "2018-03-15",
"count": 1
},
{
"date": "2018-03-16",
"count": 1
},
{
"date": "2018-03-19",
"count": 1
},
{
"date": "2018-03-20",
"count": 2
},
{
"date": "2018-03-24",
"count": 4
},
{
"date": "2018-03-25",
"count": 3
},
{
"date": "2018-03-26",
"count": 8
},
{
"date": "2018-03-27",
"count": 5
},
{
"date": "2018-03-29",
"count": 1
},
{
"date": "2018-03-30",
"count": 3
},
{
"date": "2018-03-31",
"count": 1
},
{
"date": "2018-04-01",
"count": 1
},
{
"date": "2018-04-02",
"count": 4
},
{
"date": "2018-04-03",
"count": 3
},
{
"date": "2018-04-04",
"count": 2
},
{
"date": "2018-04-06",
"count": 1
},
{
"date": "2018-04-07",
"count": 2
},
{
"date": "2018-04-08",
"count": 12
},
{
"date": "2018-04-09",
"count": 5
},
{
"date": "2018-04-10",
"count": 7
},
{
"date": "2018-04-11",
"count": 1
},
{
"date": "2018-04-13",
"count": 2
},
{
"date": "2018-04-15",
"count": 1
},
{
"date": "2018-04-16",
"count": 5
},
{
"date": "2018-04-17",
"count": 3
},
{
"date": "2018-04-18",
"count": 1
},
{
"date": "2018-04-19",
"count": 1
},
{
"date": "2018-04-20",
"count": 1
},
{
"date": "2018-04-23",
"count": 2
},
{
"date": "2018-04-24",
"count": 1
},
{
"date": "2018-04-25",
"count": 2
},
{
"date": "2018-04-29",
"count": 2
},
{
"date": "2018-04-30",
"count": 1
},
{
"date": "2018-05-02",
"count": 1
},
{
"date": "2018-05-03",
"count": 1
},
{
"date": "2018-05-04",
"count": 1
},
{
"date": "2018-05-06",
"count": 2
},
{
"date": "2018-05-07",
"count": 1
},
{
"date": "2018-05-08",
"count": 3
},
{
"date": "2018-05-12",
"count": 1
},
{
"date": "2018-05-15",
"count": 2
},
{
"date": "2018-05-16",
"count": 1
},
{
"date": "2018-05-17",
"count": 3
},
{
"date": "2018-05-18",
"count": 2
},
{
"date": "2018-05-21",
"count": 1
},
{
"date": "2018-05-22",
"count": 1
},
{
"date": "2018-05-24",
"count": 1
},
{
"date": "2018-05-27",
"count": 1
},
{
"date": "2018-05-28",
"count": 2
},
{
"date": "2018-05-29",
"count": 3
},
{
"date": "2018-06-01",
"count": 1
},
{
"date": "2018-06-04",
"count": 2
},
{
"date": "2018-06-05",
"count": 2
},
{
"date": "2018-06-06",
"count": 2
},
{
"date": "2018-06-07",
"count": 13
},
{
"date": "2018-06-08",
"count": 2
},
{
"date": "2018-06-11",
"count": 3
},
{
"date": "2018-06-13",
"count": 2
},
{
"date": "2018-06-14",
"count": 1
},
{
"date": "2018-06-16",
"count": 1
},
{
"date": "2018-06-20",
"count": 2
},
{
"date": "2018-06-22",
"count": 1
},
{
"date": "2018-06-24",
"count": 2
},
{
"date": "2018-06-26",
"count": 1
},
{
"date": "2018-06-27",
"count": 3
},
{
"date": "2018-06-30",
"count": 1
},
{
"date": "2018-07-01",
"count": 2
},
{
"date": "2018-07-02",
"count": 2
},
{
"date": "2018-07-04",
"count": 2
},
{
"date": "2018-07-05",
"count": 1
},
{
"date": "2018-07-06",
"count": 2
},
{
"date": "2018-07-07",
"count": 1
},
{
"date": "2018-07-08",
"count": 1
},
{
"date": "2018-07-09",
"count": 2
},
{
"date": "2018-07-10",
"count": 1
},
{
"date": "2018-07-12",
"count": 1
},
{
"date": "2018-07-19",
"count": 2
},
{
"date": "2018-07-20",
"count": 1
},
{
"date": "2018-07-22",
"count": 1
},
{
"date": "2018-07-23",
"count": 1
},
{
"date": "2018-07-25",
"count": 2
},
{
"date": "2018-07-26",
"count": 1
},
{
"date": "2018-07-31",
"count": 2
},
{
"date": "2018-08-01",
"count": 1
},
{
"date": "2018-08-02",
"count": 1
},
{
"date": "2018-08-03",
"count": 1
},
{
"date": "2018-08-07",
"count": 1
},
{
"date": "2018-08-08",
"count": 1
},
{
"date": "2018-08-09",
"count": 1
},
{
"date": "2018-08-13",
"count": 2
},
{
"date": "2018-08-14",
"count": 1
},
{
"date": "2018-08-18",
"count": 2
},
{
"date": "2018-08-21",
"count": 1
},
{
"date": "2018-08-22",
"count": 2
},
{
"date": "2018-08-23",
"count": 1
},
{
"date": "2018-08-25",
"count": 1
},
{
"date": "2018-08-28",
"count": 1
},
{
"date": "2018-08-30",
"count": 2
},
{
"date": "2018-08-31",
"count": 1
},
{
"date": "2018-09-01",
"count": 1
},
{
"date": "2018-09-02",
"count": 1
},
{
"date": "2018-09-03",
"count": 1
},
{
"date": "2018-09-04",
"count": 1
},
{
"date": "2018-09-06",
"count": 2
},
{
"date": "2018-09-13",
"count": 1
},
{
"date": "2018-09-18",
"count": 2
},
{
"date": "2018-09-21",
"count": 1
},
{
"date": "2018-09-24",
"count": 1
},
{
"date": "2018-09-25",
"count": 2
},
{
"date": "2018-10-01",
"count": 1
},
{
"date": "2018-10-04",
"count": 1
},
{
"date": "2018-10-07",
"count": 2
},
{
"date": "2018-10-08",
"count": 2
},
{
"date": "2018-10-09",
"count": 2
},
{
"date": "2018-10-10",
"count": 1
},
{
"date": "2018-10-11",
"count": 1
},
{
"date": "2018-10-12",
"count": 1
},
{
"date": "2018-10-14",
"count": 1
},
{
"date": "2018-10-17",
"count": 1
},
{
"date": "2018-10-19",
"count": 1
},
{
"date": "2018-10-20",
"count": 1
},
{
"date": "2018-10-22",
"count": 1
},
{
"date": "2018-10-24",
"count": 2
},
{
"date": "2018-10-25",
"count": 3
},
{
"date": "2018-10-26",
"count": 2
},
{
"date": "2018-10-27",
"count": 2
},
{
"date": "2018-10-30",
"count": 3
},
{
"date": "2018-10-31",
"count": 1
},
{
"date": "2018-11-01",
"count": 2
},
{
"date": "2018-11-07",
"count": 2
},
{
"date": "2018-11-10",
"count": 1
},
{
"date": "2018-11-12",
"count": 1
},
{
"date": "2018-11-15",
"count": 1
},
{
"date": "2018-11-18",
"count": 1
},
{
"date": "2018-11-20",
"count": 1
},
{
"date": "2018-11-21",
"count": 2
},
{
"date": "2018-11-22",
"count": 1
},
{
"date": "2018-11-26",
"count": 2
},
{
"date": "2018-11-27",
"count": 1
},
{
"date": "2018-12-04",
"count": 2
},
{
"date": "2018-12-05",
"count": 1
},
{
"date": "2018-12-06",
"count": 1
},
{
"date": "2018-12-07",
"count": 1
},
{
"date": "2018-12-12",
"count": 1
},
{
"date": "2018-12-15",
"count": 1
},
{
"date": "2018-12-19",
"count": 2
},
{
"date": "2018-12-20",
"count": 1
},
{
"date": "2018-12-21",
"count": 1
},
{
"date": "2018-12-24",
"count": 1
},
{
"date": "2019-01-03",
"count": 2
},
{
"date": "2019-01-04",
"count": 2
},
{
"date": "2019-01-05",
"count": 1
},
{
"date": "2019-01-09",
"count": 4
},
{
"date": "2019-01-10",
"count": 2
},
{
"date": "2019-01-11",
"count": 1
},
{
"date": "2019-01-12",
"count": 2
},
{
"date": "2019-01-13",
"count": 1
},
{
"date": "2019-01-16",
"count": 1
},
{
"date": "2019-01-18",
"count": 1
},
{
"date": "2019-01-20",
"count": 1
},
{
"date": "2019-01-21",
"count": 2
},
{
"date": "2019-01-24",
"count": 1
},
{
"date": "2019-01-29",
"count": 1
},
{
"date": "2019-01-30",
"count": 1
},
{
"date": "2019-01-31",
"count": 1
},
{
"date": "2019-02-03",
"count": 1
},
{
"date": "2019-02-09",
"count": 1
},
{
"date": "2019-02-12",
"count": 6
},
{
"date": "2019-02-13",
"count": 4
},
{
"date": "2019-02-14",
"count": 5
},
{
"date": "2019-02-17",
"count": 2
},
{
"date": "2019-02-18",
"count": 1
},
{
"date": "2019-02-19",
"count": 1
},
{
"date": "2019-02-20",
"count": 3
},
{
"date": "2019-02-22",
"count": 1
},
{
"date": "2019-02-25",
"count": 1
},
{
"date": "2019-02-26",
"count": 5
},
{
"date": "2019-03-01",
"count": 1
},
{
"date": "2019-03-02",
"count": 1
},
{
"date": "2019-03-03",
"count": 1
},
{
"date": "2019-03-04",
"count": 2
},
{
"date": "2019-03-05",
"count": 3
},
{
"date": "2019-03-08",
"count": 2
},
{
"date": "2019-03-11",
"count": 2
},
{
"date": "2019-03-13",
"count": 1
},
{
"date": "2019-03-14",
"count": 3
},
{
"date": "2019-03-17",
"count": 1
},
{
"date": "2019-03-18",
"count": 1
},
{
"date": "2019-03-19",
"count": 2
},
{
"date": "2019-03-23",
"count": 1
},
{
"date": "2019-03-24",
"count": 1
},
{
"date": "2019-03-26",
"count": 1
},
{
"date": "2019-03-27",
"count": 3
},
{
"date": "2019-03-29",
"count": 1
},
{
"date": "2019-03-30",
"count": 1
},
{
"date": "2019-04-02",
"count": 2
},
{
"date": "2019-04-04",
"count": 1
},
{
"date": "2019-04-06",
"count": 1
},
{
"date": "2019-04-08",
"count": 1
},
{
"date": "2019-04-09",
"count": 1
},
{
"date": "2019-04-10",
"count": 1
},
{
"date": "2019-04-11",
"count": 2
},
{
"date": "2019-04-15",
"count": 1
},
{
"date": "2019-04-16",
"count": 2
},
{
"date": "2019-04-17",
"count": 1
},
{
"date": "2019-04-18",
"count": 2
},
{
"date": "2019-04-20",
"count": 2
},
{
"date": "2019-04-21",
"count": 3
},
{
"date": "2019-04-22",
"count": 1
},
{
"date": "2019-04-23",
"count": 1
},
{
"date": "2019-04-24",
"count": 1
},
{
"date": "2019-04-25",
"count": 2
},
{
"date": "2019-04-26",
"count": 1
},
{
"date": "2019-04-28",
"count": 1
},
{
"date": "2019-04-30",
"count": 1
},
{
"date": "2019-05-01",
"count": 1
},
{
"date": "2019-05-08",
"count": 1
},
{
"date": "2019-05-10",
"count": 2
},
{
"date": "2019-05-14",
"count": 2
},
{
"date": "2019-05-16",
"count": 1
},
{
"date": "2019-05-21",
"count": 1
},
{
"date": "2019-05-22",
"count": 1
},
{
"date": "2019-05-23",
"count": 1
},
{
"date": "2019-05-24",
"count": 1
},
{
"date": "2019-05-25",
"count": 1
},
{
"date": "2019-05-29",
"count": 2
},
{
"date": "2019-05-30",
"count": 1
},
{
"date": "2019-05-31",
"count": 1
},
{
"date": "2019-06-04",
"count": 2
},
{
"date": "2019-06-05",
"count": 1
},
{
"date": "2019-06-08",
"count": 1
},
{
"date": "2019-06-11",
"count": 1
},
{
"date": "2019-06-12",
"count": 2
},
{
"date": "2019-06-17",
"count": 3
},
{
"date": "2019-06-21",
"count": 1
},
{
"date": "2019-06-27",
"count": 1
},
{
"date": "2019-06-28",
"count": 2
},
{
"date": "2019-07-02",
"count": 1
},
{
"date": "2019-07-05",
"count": 1
},
{
"date": "2019-07-06",
"count": 2
},
{
"date": "2019-07-07",
"count": 1
},
{
"date": "2019-07-08",
"count": 2
},
{
"date": "2019-07-10",
"count": 1
},
{
"date": "2019-07-12",
"count": 2
},
{
"date": "2019-07-14",
"count": 1
},
{
"date": "2019-07-18",
"count": 2
},
{
"date": "2019-07-20",
"count": 1
},
{
"date": "2019-07-21",
"count": 1
},
{
"date": "2019-07-22",
"count": 1
},
{
"date": "2019-07-24",
"count": 1
},
{
"date": "2019-07-28",
"count": 1
},
{
"date": "2019-07-31",
"count": 1
},
{
"date": "2019-08-01",
"count": 1
},
{
"date": "2019-08-14",
"count": 1
},
{
"date": "2019-08-15",
"count": 1
},
{
"date": "2019-08-17",
"count": 1
},
{
"date": "2019-08-21",
"count": 1
},
{
"date": "2019-08-23",
"count": 1
},
{
"date": "2019-08-24",
"count": 1
},
{
"date": "2019-08-27",
"count": 1
},
{
"date": "2019-08-28",
"count": 1
},
{
"date": "2019-08-29",
"count": 2
},
{
"date": "2019-08-30",
"count": 1
},
{
"date": "2019-08-31",
"count": 1
},
{
"date": "2019-09-01",
"count": 1
},
{
"date": "2019-09-06",
"count": 2
},
{
"date": "2019-09-07",
"count": 1
},
{
"date": "2019-09-09",
"count": 1
},
{
"date": "2019-09-10",
"count": 1
},
{
"date": "2019-09-12",
"count": 1
},
{
"date": "2019-09-17",
"count": 1
},
{
"date": "2019-09-19",
"count": 1
},
{
"date": "2019-09-22",
"count": 1
},
{
"date": "2019-09-23",
"count": 1
},
{
"date": "2019-09-24",
"count": 2
},
{
"date": "2019-09-27",
"count": 1
},
{
"date": "2019-10-01",
"count": 1
},
{
"date": "2019-10-03",
"count": 1
},
{
"date": "2019-10-08",
"count": 2
},
{
"date": "2019-10-09",
"count": 1
},
{
"date": "2019-10-10",
"count": 1
},
{
"date": "2019-10-16",
"count": 1
},
{
"date": "2019-10-22",
"count": 1
},
{
"date": "2019-10-23",
"count": 1
},
{
"date": "2019-10-24",
"count": 1
},
{
"date": "2019-10-29",
"count": 1
},
{
"date": "2019-11-01",
"count": 1
},
{
"date": "2019-11-03",
"count": 1
},
{
"date": "2019-11-04",
"count": 1
},
{
"date": "2019-11-06",
"count": 3
},
{
"date": "2019-11-07",
"count": 2
},
{
"date": "2019-11-08",
"count": 1
},
{
"date": "2019-11-10",
"count": 1
},
{
"date": "2019-11-12",
"count": 1
},
{
"date": "2019-11-16",
"count": 1
},
{
"date": "2019-11-21",
"count": 1
},
{
"date": "2019-11-30",
"count": 1
},
{
"date": "2019-12-07",
"count": 2
},
{
"date": "2019-12-09",
"count": 1
},
{
"date": "2019-12-11",
"count": 2
},
{
"date": "2019-12-13",
"count": 1
},
{
"date": "2019-12-16",
"count": 1
},
{
"date": "2019-12-17",
"count": 1
},
{
"date": "2019-12-19",
"count": 1
},
{
"date": "2019-12-21",
"count": 1
},
{
"date": "2019-12-23",
"count": 1
},
{
"date": "2019-12-27",
"count": 1
},
{
"date": "2019-12-28",
"count": 1
},
{
"date": "2020-01-02",
"count": 2
},
{
"date": "2020-01-03",
"count": 1
},
{
"date": "2020-01-11",
"count": 2
},
{
"date": "2020-01-18",
"count": 1
},
{
"date": "2020-01-22",
"count": 3
},
{
"date": "2020-01-23",
"count": 1
},
{
"date": "2020-01-25",
"count": 1
},
{
"date": "2020-01-31",
"count": 1
},
{
"date": "2020-02-01",
"count": 1
},
{
"date": "2020-02-04",
"count": 1
},
{
"date": "2020-02-05",
"count": 1
},
{
"date": "2020-02-08",
"count": 1
},
{
"date": "2020-02-09",
"count": 1
},
{
"date": "2020-02-12",
"count": 1
},
{
"date": "2020-02-13",
"count": 1
},
{
"date": "2020-02-14",
"count": 1
},
{
"date": "2020-02-24",
"count": 2
},
{
"date": "2020-03-04",
"count": 1
},
{
"date": "2020-03-07",
"count": 1
},
{
"date": "2020-03-09",
"count": 1
},
{
"date": "2020-03-10",
"count": 1
},
{
"date": "2020-03-11",
"count": 1
},
{
"date": "2020-03-16",
"count": 1
},
{
"date": "2020-03-24",
"count": 1
},
{
"date": "2020-03-25",
"count": 1
},
{
"date": "2020-03-29",
"count": 1
},
{
"date": "2020-03-30",
"count": 2
},
{
"date": "2020-04-03",
"count": 1
},
{
"date": "2020-04-06",
"count": 1
},
{
"date": "2020-04-07",
"count": 1
},
{
"date": "2020-04-09",
"count": 1
},
{
"date": "2020-04-11",
"count": 2
},
{
"date": "2020-04-13",
"count": 2
},
{
"date": "2020-04-15",
"count": 1
},
{
"date": "2020-04-22",
"count": 2
},
{
"date": "2020-04-26",
"count": 1
},
{
"date": "2020-04-27",
"count": 2
},
{
"date": "2020-04-28",
"count": 1
},
{
"date": "2020-05-01",
"count": 1
},
{
"date": "2020-05-04",
"count": 1
},
{
"date": "2020-05-09",
"count": 1
},
{
"date": "2020-05-14",
"count": 1
},
{
"date": "2020-05-24",
"count": 1
},
{
"date": "2020-05-29",
"count": 1
},
{
"date": "2020-05-30",
"count": 1
},
{
"date": "2020-06-03",
"count": 1
},
{
"date": "2020-06-04",
"count": 1
},
{
"date": "2020-06-05",
"count": 1
},
{
"date": "2020-06-10",
"count": 1
},
{
"date": "2020-06-12",
"count": 1
},
{
"date": "2020-06-13",
"count": 1
},
{
"date": "2020-06-16",
"count": 3
},
{
"date": "2020-06-24",
"count": 1
},
{
"date": "2020-06-29",
"count": 4
},
{
"date": "2020-06-30",
"count": 1
},
{
"date": "2020-07-02",
"count": 1
},
{
"date": "2020-07-09",
"count": 1
},
{
"date": "2020-07-10",
"count": 1
},
{
"date": "2020-07-11",
"count": 1
},
{
"date": "2020-07-15",
"count": 1
},
{
"date": "2020-07-20",
"count": 1
},
{
"date": "2020-07-21",
"count": 1
},
{
"date": "2020-08-11",
"count": 1
},
{
"date": "2020-08-14",
"count": 1
},
{
"date": "2020-08-19",
"count": 1
},
{
"date": "2020-09-02",
"count": 1
},
{
"date": "2020-09-05",
"count": 1
},
{
"date": "2020-09-07",
"count": 1
},
{
"date": "2020-09-20",
"count": 1
},
{
"date": "2020-09-23",
"count": 1
},
{
"date": "2020-09-24",
"count": 1
},
{
"date": "2020-10-02",
"count": 1
},
{
"date": "2020-10-04",
"count": 3
},
{
"date": "2020-10-05",
"count": 2
},
{
"date": "2020-10-06",
"count": 1
},
{
"date": "2020-10-12",
"count": 1
},
{
"date": "2020-10-20",
"count": 1
},
{
"date": "2020-10-22",
"count": 5
},
{
"date": "2020-10-25",
"count": 1
},
{
"date": "2020-10-27",
"count": 1
},
{
"date": "2020-10-28",
"count": 1
},
{
"date": "2020-11-12",
"count": 1
},
{
"date": "2020-11-13",
"count": 1
},
{
"date": "2020-11-14",
"count": 1
},
{
"date": "2020-11-20",
"count": 1
},
{
"date": "2020-11-21",
"count": 1
},
{
"date": "2020-12-04",
"count": 1
},
{
"date": "2020-12-17",
"count": 1
},
{
"date": "2020-12-23",
"count": 1
},
{
"date": "2020-12-30",
"count": 1
},
{
"date": "2020-12-31",
"count": 1
},
{
"date": "2021-01-04",
"count": 1
},
{
"date": "2021-01-08",
"count": 1
},
{
"date": "2021-01-13",
"count": 1
},
{
"date": "2021-01-22",
"count": 2
},
{
"date": "2021-01-26",
"count": 1
},
{
"date": "2021-01-28",
"count": 1
},
{
"date": "2021-02-05",
"count": 1
},
{
"date": "2021-02-06",
"count": 1
},
{
"date": "2021-02-08",
"count": 2
},
{
"date": "2021-02-09",
"count": 1
},
{
"date": "2021-02-15",
"count": 1
},
{
"date": "2021-03-02",
"count": 1
},
{
"date": "2021-03-07",
"count": 1
},
{
"date": "2021-03-21",
"count": 1
},
{
"date": "2021-03-28",
"count": 1
},
{
"date": "2021-03-29",
"count": 1
},
{
"date": "2021-03-31",
"count": 1
},
{
"date": "2021-04-03",
"count": 1
},
{
"date": "2021-04-04",
"count": 1
},
{
"date": "2021-04-05",
"count": 1
},
{
"date": "2021-04-15",
"count": 1
},
{
"date": "2021-04-19",
"count": 1
},
{
"date": "2021-04-23",
"count": 1
},
{
"date": "2021-04-28",
"count": 1
},
{
"date": "2021-04-30",
"count": 1
},
{
"date": "2021-05-04",
"count": 1
},
{
"date": "2021-05-18",
"count": 2
},
{
"date": "2021-05-19",
"count": 1
},
{
"date": "2021-05-21",
"count": 2
},
{
"date": "2021-05-22",
"count": 1
},
{
"date": "2021-06-01",
"count": 1
},
{
"date": "2021-06-03",
"count": 1
},
{
"date": "2021-06-20",
"count": 1
},
{
"date": "2021-06-21",
"count": 1
},
{
"date": "2021-06-24",
"count": 1
},
{
"date": "2021-06-25",
"count": 1
},
{
"date": "2021-06-29",
"count": 1
},
{
"date": "2021-07-03",
"count": 1
},
{
"date": "2021-07-19",
"count": 1
},
{
"date": "2021-07-21",
"count": 1
},
{
"date": "2021-07-27",
"count": 1
},
{
"date": "2021-07-29",
"count": 1
},
{
"date": "2021-08-10",
"count": 1
},
{
"date": "2021-08-14",
"count": 1
},
{
"date": "2021-08-17",
"count": 1
},
{
"date": "2021-08-18",
"count": 1
},
{
"date": "2021-08-20",
"count": 1
},
{
"date": "2021-08-23",
"count": 1
},
{
"date": "2021-09-01",
"count": 1
},
{
"date": "2021-09-18",
"count": 1
},
{
"date": "2021-09-19",
"count": 1
},
{
"date": "2021-10-04",
"count": 1
},
{
"date": "2021-10-14",
"count": 1
},
{
"date": "2021-10-22",
"count": 1
},
{
"date": "2021-10-23",
"count": 1
},
{
"date": "2021-10-25",
"count": 1
},
{
"date": "2021-11-02",
"count": 1
},
{
"date": "2021-11-03",
"count": 1
},
{
"date": "2021-11-10",
"count": 1
},
{
"date": "2021-11-13",
"count": 1
},
{
"date": "2021-11-15",
"count": 1
},
{
"date": "2021-11-22",
"count": 2
},
{
"date": "2021-12-01",
"count": 1
},
{
"date": "2021-12-06",
"count": 1
},
{
"date": "2021-12-07",
"count": 1
},
{
"date": "2021-12-17",
"count": 1
},
{
"date": "2021-12-23",
"count": 2
},
{
"date": "2021-12-24",
"count": 1
},
{
"date": "2021-12-28",
"count": 1
},
{
"date": "2021-12-30",
"count": 1
},
{
"date": "2022-01-01",
"count": 1
},
{
"date": "2022-01-06",
"count": 1
},
{
"date": "2022-01-08",
"count": 1
},
{
"date": "2022-01-29",
"count": 1
},
{
"date": "2022-02-08",
"count": 1
},
{
"date": "2022-02-09",
"count": 1
},
{
"date": "2022-02-13",
"count": 1
},
{
"date": "2022-02-15",
"count": 1
},
{
"date": "2022-02-17",
"count": 1
},
{
"date": "2022-02-21",
"count": 1
},
{
"date": "2022-02-25",
"count": 2
},
{
"date": "2022-03-04",
"count": 1
},
{
"date": "2022-03-15",
"count": 1
},
{
"date": "2022-03-16",
"count": 1
},
{
"date": "2022-03-19",
"count": 2
},
{
"date": "2022-04-02",
"count": 1
},
{
"date": "2022-04-11",
"count": 1
},
{
"date": "2022-04-14",
"count": 1
},
{
"date": "2022-04-22",
"count": 1
},
{
"date": "2022-04-26",
"count": 1
},
{
"date": "2022-05-16",
"count": 1
},
{
"date": "2022-05-18",
"count": 1
},
{
"date": "2022-06-02",
"count": 1
},
{
"date": "2022-06-08",
"count": 1
},
{
"date": "2022-06-09",
"count": 1
},
{
"date": "2022-06-10",
"count": 1
},
{
"date": "2022-06-16",
"count": 1
},
{
"date": "2022-06-22",
"count": 1
},
{
"date": "2022-07-01",
"count": 1
},
{
"date": "2022-07-17",
"count": 1
},
{
"date": "2022-08-02",
"count": 2
},
{
"date": "2022-08-07",
"count": 1
},
{
"date": "2022-08-11",
"count": 1
},
{
"date": "2022-08-12",
"count": 1
},
{
"date": "2022-08-14",
"count": 1
},
{
"date": "2022-08-15",
"count": 1
},
{
"date": "2022-08-20",
"count": 1
},
{
"date": "2022-08-21",
"count": 1
},
{
"date": "2022-08-25",
"count": 1
},
{
"date": "2022-08-28",
"count": 1
},
{
"date": "2022-08-31",
"count": 1
},
{
"date": "2022-09-03",
"count": 1
},
{
"date": "2022-09-05",
"count": 1
},
{
"date": "2022-09-26",
"count": 1
},
{
"date": "2022-11-01",
"count": 1
},
{
"date": "2022-11-03",
"count": 1
},
{
"date": "2022-11-05",
"count": 1
},
{
"date": "2022-11-28",
"count": 1
},
{
"date": "2022-12-01",
"count": 1
},
{
"date": "2022-12-08",
"count": 1
},
{
"date": "2022-12-27",
"count": 1
},
{
"date": "2022-12-29",
"count": 2
},
{
"date": "2022-12-31",
"count": 1
},
{
"date": "2023-01-24",
"count": 1
},
{
"date": "2023-01-27",
"count": 2
},
{
"date": "2023-02-14",
"count": 1
},
{
"date": "2023-03-02",
"count": 1
},
{
"date": "2023-03-07",
"count": 1
},
{
"date": "2023-03-18",
"count": 1
},
{
"date": "2023-04-05",
"count": 1
},
{
"date": "2023-04-08",
"count": 1
},
{
"date": "2023-04-23",
"count": 1
},
{
"date": "2023-05-04",
"count": 1
},
{
"date": "2023-05-13",
"count": 1
},
{
"date": "2023-05-18",
"count": 1
},
{
"date": "2023-05-26",
"count": 1
},
{
"date": "2023-06-10",
"count": 1
},
{
"date": "2023-06-17",
"count": 1
},
{
"date": "2023-06-28",
"count": 1
},
{
"date": "2023-07-04",
"count": 1
},
{
"date": "2023-07-06",
"count": 1
},
{
"date": "2023-07-13",
"count": 1
},
{
"date": "2023-07-15",
"count": 1
},
{
"date": "2023-07-18",
"count": 1
},
{
"date": "2023-07-19",
"count": 1
},
{
"date": "2023-07-21",
"count": 1
},
{
"date": "2023-07-22",
"count": 1
},
{
"date": "2023-08-02",
"count": 1
},
{
"date": "2023-08-04",
"count": 1
},
{
"date": "2023-08-10",
"count": 1
},
{
"date": "2023-08-17",
"count": 1
},
{
"date": "2023-08-18",
"count": 1
},
{
"date": "2023-09-01",
"count": 1
},
{
"date": "2023-09-08",
"count": 1
},
{
"date": "2023-09-11",
"count": 1
},
{
"date": "2023-09-20",
"count": 1
},
{
"date": "2023-10-16",
"count": 1
},
{
"date": "2023-10-20",
"count": 1
},
{
"date": "2023-11-03",
"count": 1
},
{
"date": "2023-11-17",
"count": 1
},
{
"date": "2023-11-27",
"count": 2
},
{
"date": "2023-12-06",
"count": 1
},
{
"date": "2023-12-08",
"count": 1
},
{
"date": "2023-12-12",
"count": 1
},
{
"date": "2023-12-18",
"count": 1
},
{
"date": "2024-01-05",
"count": 1
},
{
"date": "2024-01-10",
"count": 2
},
{
"date": "2024-01-14",
"count": 1
},
{
"date": "2024-01-26",
"count": 1
},
{
"date": "2024-02-02",
"count": 1
},
{
"date": "2024-02-07",
"count": 2
},
{
"date": "2024-02-16",
"count": 1
},
{
"date": "2024-02-20",
"count": 1
},
{
"date": "2024-04-04",
"count": 1
},
{
"date": "2024-04-21",
"count": 1
},
{
"date": "2024-04-25",
"count": 1
},
{
"date": "2024-05-02",
"count": 1
},
{
"date": "2024-05-03",
"count": 1
},
{
"date": "2024-05-22",
"count": 1
},
{
"date": "2024-05-26",
"count": 1
},
{
"date": "2024-05-29",
"count": 1
},
{
"date": "2024-06-12",
"count": 1
},
{
"date": "2024-06-22",
"count": 1
},
{
"date": "2024-06-25",
"count": 1
},
{
"date": "2024-06-26",
"count": 1
},
{
"date": "2024-07-02",
"count": 1
},
{
"date": "2024-07-13",
"count": 1
},
{
"date": "2024-07-27",
"count": 1
},
{
"date": "2024-08-02",
"count": 1
},
{
"date": "2024-08-10",
"count": 1
},
{
"date": "2024-08-13",
"count": 2
},
{
"date": "2024-09-02",
"count": 1
},
{
"date": "2024-09-05",
"count": 1
},
{
"date": "2024-09-19",
"count": 1
},
{
"date": "2024-09-28",
"count": 1
},
{
"date": "2024-10-02",
"count": 1
},
{
"date": "2024-10-04",
"count": 1
},
{
"date": "2024-10-10",
"count": 1
},
{
"date": "2024-10-20",
"count": 1
},
{
"date": "2024-11-06",
"count": 1
},
{
"date": "2024-11-10",
"count": 1
},
{
"date": "2024-11-17",
"count": 1
},
{
"date": "2024-11-27",
"count": 1
},
{
"date": "2024-12-01",
"count": 1
},
{
"date": "2024-12-04",
"count": 1
},
{
"date": "2024-12-13",
"count": 1
},
{
"date": "2024-12-21",
"count": 1
},
{
"date": "2024-12-27",
"count": 1
},
{
"date": "2025-01-10",
"count": 2
},
{
"date": "2025-01-29",
"count": 1
},
{
"date": "2025-02-01",
"count": 1
},
{
"date": "2025-02-10",
"count": 1
},
{
"date": "2025-02-15",
"count": 1
},
{
"date": "2025-02-26",
"count": 1
},
{
"date": "2025-03-10",
"count": 1
},
{
"date": "2025-03-30",
"count": 1
},
{
"date": "2025-04-26",
"count": 1
},
{
"date": "2025-04-27",
"count": 1
},
{
"date": "2025-05-29",
"count": 1
},
{
"date": "2025-06-19",
"count": 1
},
{
"date": "2025-06-24",
"count": 1
},
{
"date": "2025-07-12",
"count": 1
},
{
"date": "2025-07-30",
"count": 1
},
{
"date": "2025-08-02",
"count": 1
},
{
"date": "2025-08-03",
"count": 1
},
{
"date": "2025-08-04",
"count": 1
},
{
"date": "2025-08-07",
"count": 1
},
{
"date": "2025-08-16",
"count": 1
},
{
"date": "2025-08-22",
"count": 1
},
{
"date": "2025-08-25",
"count": 1
},
{
"date": "2025-09-27",
"count": 1
},
{
"date": "2025-10-22",
"count": 1
},
{
"date": "2025-10-23",
"count": 1
},
{
"date": "2025-11-05",
"count": 1
},
{
"date": "2025-11-26",
"count": 5
},
{
"date": "2025-12-03",
"count": 1
},
{
"date": "2025-12-14",
"count": 2
},
{
"date": "2025-12-22",
"count": 1
},
{
"date": "2026-01-09",
"count": 1
},
{
"date": "2026-02-04",
"count": 1
},
{
"date": "2026-04-15",
"count": 1
},
{
"date": "2026-05-23",
"count": 1
},
{
"date": "2026-05-31",
"count": 1
},
{
"date": "2026-06-21",
"count": 1
},
{
"date": "2026-07-03",
"count": 1
},
{
"date": "2026-07-06",
"count": 1
},
{
"date": "2026-07-18",
"count": 1
},
{
"date": "2026-07-19",
"count": 1
}
],
"complete": false,
"collected": 1000,
"total_stars": 1849
},
"open_issues_and_prs": 43
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [
"voluptuous/py.typed"
],
"toolchain_manifests": [],
"largest_source_bytes": 69597,
"source_files_sampled": 12,
"oversized_source_files": 1,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"pyproject.toml",
"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": 9,
"merged_prs": 231,
"open_issues": 34,
"closed_ratio": 0.866,
"closed_issues": 219,
"closed_unmerged_prs": 55
},
"bus_factor": 2,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "alecthomas",
"commits": 180,
"avatar_url": "https://avatars.githubusercontent.com/u/41767?v=4"
},
{
"type": "User",
"login": "tusharmakkar08",
"commits": 65,
"avatar_url": "https://avatars.githubusercontent.com/u/2357025?v=4"
},
{
"type": "User",
"login": "spacegaier",
"commits": 29,
"avatar_url": "https://avatars.githubusercontent.com/u/114137?v=4"
},
{
"type": "User",
"login": "svisser",
"commits": 27,
"avatar_url": "https://avatars.githubusercontent.com/u/723226?v=4"
},
{
"type": "User",
"login": "antoni-szych-rtbhouse",
"commits": 9,
"avatar_url": "https://avatars.githubusercontent.com/u/84847001?v=4"
},
{
"type": "User",
"login": "cdce8p",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/30130371?v=4"
},
{
"type": "User",
"login": "epenet",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/6771947?v=4"
},
{
"type": "User",
"login": "sirfz",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/4741099?v=4"
},
{
"type": "User",
"login": "cjw296",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/632049?v=4"
},
{
"type": "User",
"login": "jd",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/2644?v=4"
}
],
"contributors_sampled": 84,
"top_contributor_share": 0.394
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"tests.yml"
],
"has_docs_dir": false,
"linter_configs": [
"tox.ini"
],
"has_editorconfig": false,
"has_linter_config": true,
"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": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 3,
"reason": "8 out of 24 merged PRs checked by a CI test -- score normalized to 3",
"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": 8,
"reason": "Found 24/30 approved changesets -- score normalized to 8",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 17 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": 10,
"reason": "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": 6,
"reason": "7 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 6",
"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": "44593ce7c330faf9418252c4b5448f4736144a7f",
"ran_at": "2026-07-22T01:41:42Z",
"aggregate_score": 5.3,
"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": "2026-07-11T01:17:16Z",
"oldest_open_prs": [
{
"number": 527,
"created_at": "2025-03-08T17:26:45Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 528,
"created_at": "2025-04-28T00:11:03Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 532,
"created_at": "2025-08-31T08:26:56Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 536,
"created_at": "2026-01-12T03:45:26Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 540,
"created_at": "2026-06-24T10:30:47Z",
"last_comment_at": "2026-07-15T08:16:36Z",
"last_comment_author": "gaoflow"
},
{
"number": 545,
"created_at": "2026-07-04T14:27:31Z",
"last_comment_at": "2026-07-05T11:45:26Z",
"last_comment_author": "uttam12331"
},
{
"number": 547,
"created_at": "2026-07-05T06:27:13Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 548,
"created_at": "2026-07-06T00:55:20Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 549,
"created_at": "2026-07-19T04:08:19Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-07-11T01:16:47Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 73,
"created_at": "2014-06-02T14:39:43Z",
"last_comment_at": "2026-07-05T10:42:44Z",
"last_comment_author": "aleksandr-kotlyar"
},
{
"number": 87,
"created_at": "2014-08-12T18:30:06Z",
"last_comment_at": "2014-08-19T10:18:10Z",
"last_comment_author": "minimal"
},
{
"number": 103,
"created_at": "2014-11-18T15:59:06Z",
"last_comment_at": "2015-12-17T06:29:25Z",
"last_comment_author": "alecthomas"
},
{
"number": 115,
"created_at": "2015-03-07T00:16:10Z",
"last_comment_at": "2024-05-23T19:58:37Z",
"last_comment_author": "bcoca"
},
{
"number": 126,
"created_at": "2015-08-24T16:22:52Z",
"last_comment_at": "2017-09-01T04:56:19Z",
"last_comment_author": "dbaber"
},
{
"number": 142,
"created_at": "2015-12-28T18:32:30Z",
"last_comment_at": "2019-06-20T23:23:11Z",
"last_comment_author": "alecthomas"
},
{
"number": 171,
"created_at": "2016-04-24T09:08:41Z",
"last_comment_at": "2016-09-23T10:05:23Z",
"last_comment_author": "tusharmakkar08"
},
{
"number": 193,
"created_at": "2016-08-15T09:19:59Z",
"last_comment_at": "2016-08-15T16:48:57Z",
"last_comment_author": "mtvx"
},
{
"number": 196,
"created_at": "2016-08-17T22:59:05Z",
"last_comment_at": "2016-09-25T06:06:44Z",
"last_comment_author": "alecthomas"
},
{
"number": 222,
"created_at": "2016-09-28T11:48:55Z",
"last_comment_at": "2016-09-28T13:28:18Z",
"last_comment_author": "tusharmakkar08"
},
{
"number": 239,
"created_at": "2016-11-04T21:28:29Z",
"last_comment_at": "2017-09-30T04:52:40Z",
"last_comment_author": "alecthomas"
},
{
"number": 245,
"created_at": "2016-11-12T10:41:04Z",
"last_comment_at": "2017-06-24T09:14:54Z",
"last_comment_author": "sureshsarda"
},
{
"number": 251,
"created_at": "2016-11-30T15:37:43Z",
"last_comment_at": "2019-01-14T19:38:34Z",
"last_comment_author": "rmorshea"
},
{
"number": 277,
"created_at": "2017-04-10T17:44:21Z",
"last_comment_at": "2017-04-13T12:46:08Z",
"last_comment_author": "tusharmakkar08"
},
{
"number": 281,
"created_at": "2017-04-18T21:22:13Z",
"last_comment_at": "2018-08-30T16:38:49Z",
"last_comment_author": "bruce-szalwinski"
},
{
"number": 299,
"created_at": "2017-07-26T18:45:14Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 301,
"created_at": "2017-08-15T21:30:30Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 302,
"created_at": "2017-09-01T10:50:17Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 335,
"created_at": "2018-03-15T11:23:10Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 336,
"created_at": "2018-05-07T13:04:07Z",
"last_comment_at": "2018-05-09T23:13:26Z",
"last_comment_author": "alecthomas"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/alecthomas/voluptuous",
"host": "github.com",
"name": "voluptuous",
"owner": "alecthomas"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"security": 53,
"vitality": 58,
"community": 67,
"governance": 76,
"engineering": 68
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 58,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 56,
"inputs": {
"commits_last_year": 11,
"human_commit_share": 1,
"days_since_last_push": 3,
"active_weeks_last_year": 6
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 3 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 3
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "6/52 weeks with commits",
"points": 4.2,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 6
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "11 commits in the last year",
"points": 9.7,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 11
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "7 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 6",
"points": 6,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "moderate",
"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": 62,
"inputs": {
"releases_count": 13,
"latest_release_tag": "0.16.0",
"releases_from_tags": false,
"days_since_latest_release": 215,
"mean_days_between_releases": 151
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "13 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 13
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 215 days ago",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "release_recency",
"params": {
"days": 215
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~151 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 151
}
}
],
"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": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 11,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 11 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 11
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 67,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "good",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 81,
"inputs": {
"forks": 234,
"stars": 1849,
"watchers": 32,
"growth_state": "organic",
"growth_factor_pct": 100
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "1,849 stars",
"points": 53,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 1849
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "234 forks",
"points": 19.7,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 234
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "32 watchers",
"points": 8.3,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 32
}
}
],
"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
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "good",
"name": "Sustainability & Governance",
"value": 76,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "moderate",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 62,
"inputs": {
"bus_factor": 2,
"contributors_sampled": 84,
"top_contributor_share": 0.394
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "2 contributor(s) cover half of all commits",
"points": 25.2,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 2
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 39% of commits",
"points": 13.6,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 39
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "84 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 84
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 17 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 83,
"inputs": {
"merged_prs": 231,
"open_issues": 34,
"closed_issues": 219,
"issue_closed_ratio": 0.866,
"closed_unmerged_prs": 55
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "87% of issues closed",
"points": 40.5,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 87
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "231/286 decided PRs merged",
"points": 30.9,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 231,
"decided": 286
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 24/30 approved changesets -- score normalized to 8",
"points": 12,
"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": 72,
"inputs": {
"followers": 1431,
"owner_type": "User",
"is_verified": null,
"owner_login": "alecthomas",
"public_repos": 176,
"account_age_days": 6422
},
"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,431 followers of alecthomas",
"points": 22.7,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 1431,
"login": "alecthomas"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "176 public repos, account ~17 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 176
}
},
{
"code": "account_age_years",
"params": {
"years": 17
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 91,
"inputs": {
"packages": [
"voluptuous"
],
"ecosystems": "pypi",
"any_deprecated": false,
"min_days_since_publish": 215
},
"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 215 days ago",
"points": 26,
"status": "partial",
"details": [
{
"code": "publish_recency",
"params": {
"days": 215
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "51 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 51
}
}
],
"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": 68,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"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": "tox.ini",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "tox.ini"
}
}
],
"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": "8 out of 24 merged PRs checked by a CI test -- score normalized to 3",
"points": 6,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": "https://pypi.org/project/voluptuous",
"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://pypi.org/project/voluptuous",
"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": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 53,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 53,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 5.3
},
"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": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "8 out of 24 merged PRs checked by a CI test -- score normalized to 3",
"points": 0.8,
"status": "partial",
"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 24/30 approved changesets -- score normalized to 8",
"points": 6,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 17 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": "update tool detected",
"points": 7.5,
"status": "met",
"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": "7 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 6",
"points": 4.5,
"status": "partial",
"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": 16
},
"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": "at_risk",
"name": "AI Readiness",
"value": 47,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 37,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.69,
"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": "69 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 36.8,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 69,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 46,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [
"voluptuous/py.typed"
],
"agent_commit_share": 0.01,
"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": "tox.ini",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "tox.ini"
}
}
],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "voluptuous/py.typed",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "voluptuous/py.typed"
}
}
],
"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": "1 of the last 100 commits agent-authored or agent-credited",
"points": 2,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 1,
"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": "good",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 77,
"inputs": {
"primary_language": "Python",
"largest_source_bytes": 69597,
"source_files_sampled": 12,
"oversized_source_files": 1
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Python with type-check config (voluptuous/py.typed)",
"points": 27,
"status": "partial",
"details": [
{
"code": "typecheck_config_language",
"params": {
"files": "voluptuous/py.typed",
"language": "Python"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "1/12 source files over 60KB",
"points": 50.4,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 12,
"oversized": 1
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"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": [],
"report_type": "repository",
"generated_at": "2026-07-22T01:42:06.254490Z",
"schema_version": "0.26.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/a/alecthomas/voluptuous.svg",
"full_name": "alecthomas/voluptuous",
"license_state": "standard",
"license_spdx": "BSD-3-Clause"
}