在存储库设置中,可以选择在Web界面上归档Github存储库。
但是如何使用PyGithub API做到呢?
答案 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)