GitHub Trending Scraper
Scrape the GitHub Trending page and extract repository names, languages, descriptions, and URLs into a structured JSONL table.
Scrape the GitHub Trending page and extract repository names, languages, descriptions, and URLs into a structured JSONL table.
The GitHub Trending Scraper reads the GitHub Trending page and turns it into a clean, queryable table instead of a list you have to scroll. It fetches the trending HTML, extracts each repo row, and parses the name, primary language, description, and URL into JSONL. Run it daily to spot repos that are gaining attention, feed the table into a dashboard, or hand it to a downstream step that ranks and filters what is worth a closer look. You can inspect the fetch and the row parse in visual workflows before you schedule it.
fetch-trending, tool) retrieves the trending HTML for the chosen language and window.extract-rows, tool) isolates each repository row from that page.parse-rows, script) writes name, language, description, and URL as JSONL.The artifacts below are illustrative. They show the JSONL shape, not a completed run.
trending.jsonl| name | language | description | url |
|---|---|---|---|
| example/sample-repo | Go | An illustrative CLI used to show the row shape. | https://github.com/example/sample-repo |
| example/another-repo | Python | A second illustrative row, not captured from a live trending page. | https://github.com/example/another-repo |
Yes. Pass a language-specific trending URL (for example, https://github.com/trending/python) and the scraper extracts only the repos on that page.
GitHub Trending shifts daily, so a daily run captures the full churn. Running more often mostly duplicates the previous output.
The scraper pulls the fields GitHub shows on the trending page, which include the repo name, language, description, and URL but not the exact star count.
A single fetch per run is well under any rate limit. For frequent runs, space them out and avoid hammering the page from one IP.
Get a personalized demo
A 30-minute walkthrough. We map the platform to your stack and answer pricing and deployment questions for your environment.