The Github API uses paging on the returned JSON results, so if you have a significant number of starred repositories, you may only get a smaller number returned and therefore downloaded that you have actually starred (still public only).
Thanks for the tool!
The Github API uses paging on the returned JSON results, so if you have a significant number of starred repositories, you may only get a smaller number returned and therefore downloaded that you have actually starred (still public only).
https://developer.github.com/v3/#pagination
http://stackoverflow.com/questions/14057478/github-api-issue-listing-starred-repos
https://api.github.com/users/{username}/starred?page=X&per_page=Y
where X is the number of the page (defaults to 1), and Y is the page size (max 100).
Thanks for the tool!