- 授权协议: Apache
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: http://michaelliao.github.com/githubpy/
- 软件文档: http://michaelliao.github.com/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')
你必须知道的495个C语言问题
Steve Summit / 孙云、朱群英 / 人民邮电出版社 / 2009-2 / 45.00元
“本书是Summit以及C FAQ在线列表的许多参与者多年心血的结晶,是C语言界最为珍贵的财富之一。我向所有C语言程序员推荐本书。” ——Francis Glassborow,著名C/C++专家,ACCU(C/C++用户协会)前主席 “本书清晰阐明了Kernighan与Ritchie《The C programming Language》一书中许多简略的地方,而且精彩地总结了C语言编程......一起来看看 《你必须知道的495个C语言问题》 这本书的介绍吧!
