PyGithub 是一个 Python 库,封装了 Github V3 API 的各种操作。
示例代码:
from github import Github # First create a Github instance: g = Github("user", "password") # Then play with your Github objects: for repo in g.get_user().get_repos(): print repo.name