It downloads the contributors of the top 5000 repos (by star count).
With Python 3 and pip:
pip install -r requirements.txt
Then run:
GH_TOKEN=YOUR_TOKEN scrapy crawl topreposusers -o output/output.json
docker build -t gh-top-repos-users .
docker run \
--rm \
-v $PWD/output:/usr/src/app/output \
-e "GH_TOKEN=YOUR_TOKEN" \
-t \
-i \
gh-top-repos-users