https://github.com/bdunnette/derby-name-scrapers
https://github.com/bdunnette/derby-name-scrapers
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bdunnette/derby-name-scrapers
- Owner: bdunnette
- Created: 2026-04-20T20:05:36.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-06-08T12:55:03.000Z (13 days ago)
- Last Synced: 2026-06-08T14:25:41.239Z (12 days ago)
- Language: Python
- Size: 478 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Derby Name Scraper
Scrapes roller derby names from:
-
-
Then saves deduplicated names to CSV.
For `rollerderbyroster.com`, the scraper automatically iterates alphabet pages (`?ini=A` through `?ini=Z`) to fetch all names.
## Setup (uv)
```powershell
uv sync
```
## Run
```powershell
uv run python scrape_derby_names.py
```
Default output is `data/derby_names.csv`.
To customize output path:
```powershell
uv run python scrape_derby_names.py --output data/names.csv
```
To override sources, pass one or more `--url` flags:
```powershell
uv run python scrape_derby_names.py --url https://www.derbyrollcall.com/everyone --url https://rollerderbyroster.com/view-names/
```