给定一个分叉的存储库,如何使用 github3.py 来查找它从中分叉的父存储库或上游存储库? 这对于请求来说相当容易,但我无法弄清楚如何在 github3.py 中做到这一点。
有要求:
for repo in gh.repositories_by(username): # github3.py provides a user's repos
if repo.fork: # we only care about forked repos
assert 'parent' not in repo.as_dict() # can't find parent using github3.py
repo_info = requests.get(repo.url).json() # try with requests instead
assert 'parent' in repo_info, repo_info # can find parent using requests
print(f'{repo_info["url"]} was forked from {repo_info["parent"]["url"]}')
# https://github.com/username/repo was forked from
# https://github.com/parent/repo
此用例类似于如何在 github 中找到用户贡献的所有公共存储库? 但我们还需要检查用户存储库从中分叉的父/上游存储库。
文档显示它存储为 repo.parent,但是,它仅在Repository
对象上可用。 repositories_by
返回ShortRepository
对象。
这看起来像:
for short_repo in gh.repositories_by(username):
repo = short_repo.refresh()
if repo.fork:
parent = repo.parent