赞
踩
PyGitHub
PyGitHub is a Python library to access the GitHub API v3 and Github Enterprise API v3.
This library enables you to manage GitHub resources such as repositories, user profiles, and organizations in your Python applications.
Install
$pip installPyGithub
Simple Demo
from github import Github
# First create a Github instance:
# using username and password
g = Github("user", "password")
# or using an access token
g = Github("access_token")
# Github
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。