PyGitHub:获取存储库的提交总数

PyGitHub: Get Total number of commits for a repository

我正在尝试使用 Python GitHub.

获取每个存储库的提交总数

代码:

 from github import Github
 git = Github("token")
 org = git.get_organization('organization')

 for repo in org.get_repos():
        repository_commit_date = repo.get_commit(sha='master')
        stats_ = repository_commit_date.stats
        print(stats_.total)

代码 returns 其他内容,它与存储库的实际提交次数不匹配。有人可以帮我解决这个问题吗?

我希望输出如下所示:

输出:

 Repository Name: hello-world
 Number of commits: 62

经过一些谷歌搜索后,我能够获得 GitHub 存储库的提交总数。

from github import Github
g = Github("username","password")
for repo in g.get_user().get_repos():
    print(repo.name, repo.get_commits().totalCount)

有关更多信息,请在此处搜索:https://github.com/PyGithub/PyGithub