使用Python中的PyGithub API存档Github存储库

时间:2018-12-05 13:38:02

标签: python github pygithub

在存储库设置中,可以选择在Web界面上归档Github存储库。

但是如何使用PyGithub API做到呢?

1 个答案:

答案 0 :(得分:0)

没有直接的API函数调用来将Github存储库归档在 PyGithub 中。

但是可以通过 repo.edit()

完成
# Get the repo can also be done for user.get_repo()
repo = org.get_repo("repo_name")

# Archive the repo
repo.edit(archived=True)