python 通过github3.py api删除存储库。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 通过github3.py api删除存储库。相关的知识,希望对你有一定的参考价值。

import github3

gh = github3.login(token='your access token')

for repo in gh.iter_user_repos(login='maxtortime'):
    choice = str(input(repo.name + ' '))

    if choice == 'd':
        repo.delete()
    else:
        continue

以上是关于python 通过github3.py api删除存储库。的主要内容,如果未能解决你的问题,请参考以下文章

尝试通过 API 删除 gmail 邮件时出现 401 错误

为啥 Google 删除了运行 Python 3.7 的 App Engine 的 Image API?

百度云删除文件API接口探索

为啥 Selenium Python API 文档被部分删除了?

用于休息 api 的 Python 删除请求(在 gae 上)

Python - youtube.playlistItems().delete() 不适用于 [已删除的视频] (YouTube API v3)