Python Command Line tool to get total stargazers count of GitHub Repository of any user.
pip install starcount
- Open Terminal
- Run
starcount -h
for help
starcount -u <user_name> -t <stars_count_threshold_per_repo> -n <num_repo_to_show> -a <auth_token>
starcount -u starkblaze01 -t 10 -n 12
- t: to get repositories having num stars above threshold
- n: to show limited number of repository
- a: GitHub OAuth token
- Number of API calls request is limited to 60/hr without auth token. With OAuth token it is 5000/hr. Know more about it here.
- Authentication using password is not used for this package because it will be depricated soon and not recommended. You can get your OAuth token from here in case you hit your request limit.
Click here