如何获得GitHub存储库的贡献者总数?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何获得GitHub存储库的贡献者总数?相关的知识,希望对你有一定的参考价值。

如何获取GitHub存储库的贡献者总数?由于分页,API使得它变得非常困难。

这是我到目前为止使用Python尝试的:

contributors = "https://api.github.com/repos/JetBrains/kotlin-web-site/contributors"
x = requests.get(contributors)
y = json.loads(x.text)
len(y) # maximum 30 because of pagination
答案

作为最后的手段,你可以从GitHub HTML page(需要lxml.html lib)中获取所需的价值:

import requests
from lxml import html

r = requests.get('https://github.com/JetBrains/kotlin-web-site')
xpath = '//span[contains(@class, "num") and following-sibling::text()[normalize-space()="contributors"]]/text()'
contributors_number = int(html.fromstring(r.text).xpath(xpath)[0].strip())
print(contributors_number)
# 338

以上是关于如何获得GitHub存储库的贡献者总数?的主要内容,如果未能解决你的问题,请参考以下文章

如何获取 BigQuery 中给定存储库的 GitHub 星总数?

GitHub - 如何在共享服务器上克隆存储库而不授予我所有存储库的访问权限

如何保留我贡献的远程存储库的更新克隆(VSCode)? [复制]

Github 添加其他人的 SSH 密钥将授予对所有存储库的访问权限?

创建 github 存储库的“副本”

更改 Git/GitHub 存储库的作者姓名和电子邮件,为所有提交保留时间戳