| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
11年前发布

GitHub的Python开发包:githubpy

githubpy是专门为GitHub API编写的Python SDK。根据GitHub的API文档说明,就可以轻松调用API。

例如,获取issues列表的API说明如下:

GET /repos/:owner/:repo/issues

参数:

milestone:Integer Milestone number none for Issues with no Milestone.

state:open, closed, default: open

...

 

调用代码:

gh = GitHub(username='your-login-username', password='your-password')  r = gh.repos('michaelliao')('githubpy').issues.get(state='open', assignee='michaelliao')

项目主页:http://www.open-open.com/lib/view/home/1350614359992

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1350614359992.html
Git 版本控制系统 Github