I am using following code to get the number of contributors of a repository
from github import Github
g = Github("*****github Access token****")
repo = g.get_repo('mui-org/material-ui')
contributors_count = repo.get_contributors().totalCount
It is giving number of contributors as 443, however, the correct number of contributors on the github website is 1077.
Can some one tell why am I getting different values?
Also, is there any other function in PyGithub to get correct number of contributors?