Repository Analysis

vinta/awesome-python

An opinionated list of Python frameworks, libraries, tools, and resources

12.6 Low AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of vinta/awesome-python, a Python project with 308,015 GitHub stars. SynthScan v2.0 examined 8,651 lines of code across 26 source files, recording 118 pattern matches distributed across 8 syntactic categories. The overall adjusted score of 12.6 places this repository in the Low AI signal band.

The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).

12.6
Adjusted Score
12.6
Raw Score
100%
Time Factor
2026-07-08
Last Push
308.0K
Stars
Python
Language
8.7K
Lines of Code
26
Files
118
Pattern Hits
2026-07-14
Scan Date
0.00
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.

Severity Breakdown

Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.

CRITICAL 0HIGH 0MEDIUM 21LOW 97

Directory Score Breakdown

This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.

Pattern Findings

The scanner identified 118 distinct pattern matches across 8 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.

Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.

Hyper-Verbose Identifiers84 hits · 58 pts
SeverityFileLineSnippetContext
LOWwebsite/build.py192def category_meta_description(name: str, entry_count: int, description: str, parent_name: str | None = None) -> str:CODE
LOWwebsite/build.py242def build_sponsorship_json_ld() -> dict:CODE
LOWwebsite/build.py347def link_llms_category_index_to_canonical_pages(markdown: str, categories: Sequence[ParsedSection]) -> str:CODE
LOWwebsite/build.py401def annotate_entries_with_stars(CODE
LOWwebsite/readme_parser.py124def _extract_description_children(nodes: list[SyntaxTreeNode]) -> list[SyntaxTreeNode]:CODE
LOWwebsite/readme_parser.py170def _extract_description_html(inline: SyntaxTreeNode, first_link: SyntaxTreeNode) -> str:CODE
LOWwebsite/tests/test_fetch_github_stars.py54 def test_multiple_repos_use_aliases(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py63 def test_skips_repos_with_quotes_in_name(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py67 def test_skips_only_bad_repos(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py72 def test_skips_graphql_injection_in_owner(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py76 def test_skips_graphql_injection_in_name(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py80 def test_skips_owner_starting_with_hyphen(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py84 def test_skips_owner_starting_with_dot(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py88 def test_skips_repo_starting_with_dot(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py92 def test_allows_repo_with_dots_and_underscores(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py96 def test_allows_hyphenated_owner(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py100 def test_skips_owner_with_underscore(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py106 def test_parses_star_count_and_owner(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py14 def test_extracts_owner_repo_from_github_url(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py36 def test_creates_directory_and_writes_json(self, tmp_path, monkeypatch):CODE
LOWwebsite/tests/test_fetch_github_stars.py124 def test_handles_missing_owner(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py141 def test_extracts_last_commit_at(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py153 def test_missing_default_branch_ref(self):CODE
LOWwebsite/tests/test_fetch_github_stars.py163 def test_skips_fetch_when_cache_is_fresh(self, tmp_path, monkeypatch, capsys):CODE
LOWwebsite/tests/test_fetch_github_stars.py203 def test_fetches_when_cache_is_stale(self, tmp_path, monkeypatch, capsys):CODE
LOWwebsite/tests/test_build.py134 def test_build_creates_homepage_and_category_pages(self, tmp_path):CODE
LOWwebsite/tests/test_build.py945 def test_returns_empty_when_missing(self, tmp_path):STRING
LOWwebsite/tests/test_build.py956 def test_returns_empty_on_corrupt_json(self, tmp_path):STRING
LOWwebsite/tests/test_build.py985 def test_sorts_by_stars_descending(self):STRING
LOWwebsite/tests/test_build.py994 def test_equal_stars_sorted_alphabetically(self):STRING
LOWwebsite/tests/test_build.py1002 def test_no_stars_go_to_bottom(self):STRING
LOWwebsite/tests/test_build.py1010 def test_no_stars_sorted_alphabetically(self):STRING
LOWwebsite/tests/test_build.py1018 def test_builtin_between_starred_and_unstarred(self):STRING
LOWwebsite/tests/test_build.py1034 def test_github_repo_returns_none(self):STRING
LOWwebsite/tests/test_build.py1049 def test_github_non_repo_returns_none(self):STRING
LOWwebsite/tests/test_build.py1166 def test_appends_star_count_to_bullet(self):STRING
LOWwebsite/tests/test_build.py1171 def test_uses_first_github_link(self):STRING
LOWwebsite/tests/test_build.py1179 def test_skips_entries_without_star_data(self):STRING
LOWwebsite/tests/test_build.py1183 def test_skips_non_github_links(self):STRING
LOWwebsite/tests/test_build.py1188 def test_skips_non_bullet_lines(self):STRING
LOWwebsite/tests/test_build.py1193 def test_handles_indented_bullets(self):STRING
LOWwebsite/tests/test_build.py1198 def test_preserves_lines_without_trailing_newline(self):STRING
LOWwebsite/tests/test_build.py176 def test_build_creates_root_discovery_files(self, tmp_path):STRING
LOWwebsite/tests/test_build.py229 def test_build_creates_category_pages_with_metadata_and_links(self, tmp_path):STRING
LOWwebsite/tests/test_build.py296 def test_build_creates_llms_text_alternate_without_sponsors(self, tmp_path):STRING
LOWwebsite/tests/test_build.py364 def test_build_cleans_stale_output(self, tmp_path):STRING
LOWwebsite/tests/test_build.py388 def test_build_with_stars_sorts_by_stars(self, tmp_path):STRING
LOWwebsite/tests/test_build.py432 def test_build_fails_when_group_and_category_slug_collide(self, tmp_path):STRING
LOWwebsite/tests/test_build.py452 def test_index_contains_aligned_homepage_metadata(self, tmp_path):STRING
LOWwebsite/tests/test_build.py489 def test_index_contains_homepage_json_ld(self, tmp_path):STRING
LOWwebsite/tests/test_build.py538 def test_category_page_contains_json_ld(self, tmp_path):STRING
LOWwebsite/tests/test_build.py599 def test_group_page_falls_back_to_default_description_in_json_ld(self, tmp_path):STRING
LOWwebsite/tests/test_build.py632 def test_build_creates_subcategory_pages(self, tmp_path):STRING
LOWwebsite/tests/test_build.py667 def test_subcategory_page_shows_breadcrumb(self, tmp_path):STRING
LOWwebsite/tests/test_build.py725 def test_sponsorship_page_contains_json_ld(self, tmp_path):STRING
LOWwebsite/tests/test_build.py770 def test_index_embeds_filter_urls_json(self, tmp_path):STRING
LOWwebsite/tests/test_build.py810 def test_filter_urls_json_escapes_closing_script_tag(self, tmp_path):STRING
LOWwebsite/tests/test_build.py839 def test_build_creates_group_pages(self, tmp_path):STRING
LOWwebsite/tests/test_build.py879 def test_tag_buttons_have_data_url(self, tmp_path):STRING
LOWwebsite/tests/test_build.py1083 def test_duplicate_entry_merged(self):STRING
24 more matches not shown…
Decorative Section Separators16 hits · 29 pts
SeverityFileLineSnippetContext
MEDIUMwebsite/tests/test_build.py60# ---------------------------------------------------------------------------COMMENT
MEDIUMwebsite/tests/test_build.py62# ---------------------------------------------------------------------------COMMENT
MEDIUMwebsite/tests/test_build.py84# ---------------------------------------------------------------------------COMMENT
MEDIUMwebsite/tests/test_build.py86# ---------------------------------------------------------------------------COMMENT
MEDIUMwebsite/tests/test_build.py939# ---------------------------------------------------------------------------STRING
MEDIUMwebsite/tests/test_build.py941# ---------------------------------------------------------------------------STRING
MEDIUMwebsite/tests/test_build.py963# ---------------------------------------------------------------------------STRING
MEDIUMwebsite/tests/test_build.py965# ---------------------------------------------------------------------------STRING
MEDIUMwebsite/tests/test_build.py1028# ---------------------------------------------------------------------------STRING
MEDIUMwebsite/tests/test_build.py1030# ---------------------------------------------------------------------------STRING
MEDIUMwebsite/tests/test_build.py1053# ---------------------------------------------------------------------------STRING
MEDIUMwebsite/tests/test_build.py1055# ---------------------------------------------------------------------------STRING
MEDIUMwebsite/tests/test_build.py1160# ---------------------------------------------------------------------------STRING
MEDIUMwebsite/tests/test_build.py1162# ---------------------------------------------------------------------------STRING
MEDIUMwebsite/tests/test_build.py911# ---------------------------------------------------------------------------STRING
MEDIUMwebsite/tests/test_build.py913# ---------------------------------------------------------------------------STRING
Deep Nesting9 hits · 9 pts
SeverityFileLineSnippetContext
LOWwebsite/build.py457CODE
LOWwebsite/build.py511CODE
LOWwebsite/readme_parser.py186CODE
LOWwebsite/readme_parser.py308CODE
LOWwebsite/readme_parser.py436CODE
LOWwebsite/fetch_github_stars.py96CODE
LOWwebsite/tests/test_build.py37CODE
LOWwebsite/tests/test_readme_parser.py462CODE
LOWwebsite/tests/test_readme_parser.py473CODE
Modern AI Meta-Vocabulary3 hits · 6 pts
SeverityFileLineSnippetContext
MEDIUMREADME.md142 - [ag2](https://github.com/ag2ai/ag2) - An open-source AgentOS for multi-agent orchestration and building agentic AI sCODE
MEDIUMREADME.md143 - [autogen](https://github.com/microsoft/autogen) - A programming framework for building agentic AI applications.CODE
MEDIUMREADME.md154 - [promptise](https://github.com/promptise-com/foundry) - A framework for building end-to-end production-ready agenticCODE
Excessive Try-Catch Wrapping2 hits · 4 pts
SeverityFileLineSnippetContext
MEDIUMwebsite/fetch_github_stars.py100 print("Error: GITHUB_TOKEN environment variable is required.", file=sys.stderr)CODE
MEDIUMwebsite/fetch_github_stars.py155 print("Error: Invalid GITHUB_TOKEN.", file=sys.stderr)CODE
Fake / Example Data2 hits · 2 pts
SeverityFileLineSnippetContext
LOWwebsite/tests/test_fetch_github_stars.py195 monkeypatch.setenv("GITHUB_TOKEN", "fake-token")CODE
LOWwebsite/tests/test_fetch_github_stars.py236 monkeypatch.setenv("GITHUB_TOKEN", "fake-token")CODE
Unused Imports1 hit · 1 pts
SeverityFileLineSnippetContext
LOWwebsite/readme_parser.py3CODE
Redundant / Tautological Comments1 hit · 0 pts
SeverityFileLineSnippetContext
LOWwebsite/tests/test_readme_parser.py512 # Check if inline text starts with '[' but has no link nodeSTRING