Skip to content

xmartlabs/gh-top-repos-users

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gh-top-repos-users

It downloads the contributors of the top 5000 repos (by star count).

Run locally

With Python 3 and pip:

pip install -r requirements.txt

Then run:

GH_TOKEN=YOUR_TOKEN scrapy crawl topreposusers -o output/output.json

With Docker

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