I' trying get all user's repositories by using PyGithub. For clarity the user: https://github.com/mbostock has 53 public repos.
my code:
import github
con = github.Github(mylogin, pass)
u = g.get_user('mbostock').get_repos('all')
and I get 53, It's correct number but, I have noticed that among all received repos I can't find some user's Pinned repositories, for example d3/d3, although that user also make big contribution on this repo.
If somebody know github api, and way of receiving all user's contributed repos, please help.