Mercurial > repos > bcclaywell > argo_navis
comparison venv/lib/python2.7/site-packages/PyGithub-1.25.2-py2.7.egg-info/PKG-INFO @ 0:d67268158946 draft
planemo upload commit a3f181f5f126803c654b3a66dd4e83a48f7e203b
author | bcclaywell |
---|---|
date | Mon, 12 Oct 2015 17:43:33 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d67268158946 |
---|---|
1 Metadata-Version: 1.1 | |
2 Name: PyGithub | |
3 Version: 1.25.2 | |
4 Summary: Use the full Github API v3 | |
5 Home-page: http://jacquev6.github.com/PyGithub | |
6 Author: Vincent Jacques | |
7 Author-email: vincent@vincent-jacques.net | |
8 License: UNKNOWN | |
9 Description: (Very short) Tutorial | |
10 ===================== | |
11 | |
12 First create a Github instance:: | |
13 | |
14 from github import Github | |
15 | |
16 g = Github("user", "password") | |
17 | |
18 Then play with your Github objects:: | |
19 | |
20 for repo in g.get_user().get_repos(): | |
21 print repo.name | |
22 repo.edit(has_wiki=False) | |
23 | |
24 You can also create a Github instance with an OAuth token:: | |
25 | |
26 g = Github(token) | |
27 | |
28 Or without authentication:: | |
29 | |
30 g = Github() | |
31 | |
32 Reference documentation | |
33 ======================= | |
34 | |
35 See http://jacquev6.github.com/PyGithub | |
36 Platform: UNKNOWN | |
37 Classifier: Development Status :: 5 - Production/Stable | |
38 Classifier: Environment :: Web Environment | |
39 Classifier: Intended Audience :: Developers | |
40 Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL) | |
41 Classifier: Operating System :: OS Independent | |
42 Classifier: Programming Language :: Python | |
43 Classifier: Programming Language :: Python :: 2 | |
44 Classifier: Programming Language :: Python :: 2.5 | |
45 Classifier: Programming Language :: Python :: 2.6 | |
46 Classifier: Programming Language :: Python :: 2.7 | |
47 Classifier: Programming Language :: Python :: 3 | |
48 Classifier: Programming Language :: Python :: 3.2 | |
49 Classifier: Programming Language :: Python :: 3.3 | |
50 Classifier: Topic :: Software Development |