PyGithub - Github 的 Python 客户端开发包


LGPL
跨平台
Python

软件简介

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