Single-page tool that streams repository owner emails from the explicit GitHub search queries you supply (one per line). No scoring, no filtering heuristics – every repository returned by GitHub for your queries is processed and any commit/public emails discovered are emitted.
- Explicit queries only (textarea, one GitHub search query per line)
- Streams all repositories returned for each query (up to your specified per‑query cap)
- Live streaming updates (queries_received, query_start, lead_added, progress, finished, no_email, query_empty, error)
- Writes
leads.csv(also downloadable at /leads.csv)
git clone <repository-url>
cd github-leads-scraper
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
echo "GITHUB_TOKEN=your_token_here" > .env # optional but recommended
python web_ui/app.pyOpen http://127.0.0.1:5001 and paste queries (one per line) then Start.
electron stars:>20 in:description
desktop stars:>30
blender addon stars:>15
unity plugin stars:>25
"upgrade" stars:>40 language:typescript
Tips:
- Use stars thresholds (stars:>20) to surface active repos
- Add language: or in:description constraints to focus
- Everything returned by GitHub for your queries will stream; refine queries for relevance
POST /scrape/customers
{
"token": "<optional PAT>",
"max_repos_per_query": 30,
"queries_raw": "electron stars:>20 in:description\ndesktop stars:>30"
}Response is streamed NDJSON (one JSON object per line).
Download final CSV: GET /leads.csv
email, github_username, name, repository, repo_description, repo_stars, repo_language, company, bio
- No scoring or filtering: every repo returned is inspected
- Commit author emails (excluding obvious generic/noreply) are collected (first valid email per repo owner)
- Falls back to the owner's public profile email if no commit email found
- Duplicate emails are skipped (first occurrence kept)
- Provide focused queries; broad queries produce large volumes quickly
- Use a GitHub token to avoid low rate limits
leads.csvis git-ignored (avoid committing emails)
MIT