Mercurial > repos > bcclaywell > argo_navis
view 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 |
line wrap: on
line source
Metadata-Version: 1.1 Name: PyGithub Version: 1.25.2 Summary: Use the full Github API v3 Home-page: http://jacquev6.github.com/PyGithub Author: Vincent Jacques Author-email: vincent@vincent-jacques.net License: UNKNOWN Description: (Very short) Tutorial ===================== First create a Github instance:: from github import Github g = Github("user", "password") Then play with your Github objects:: for repo in g.get_user().get_repos(): print repo.name repo.edit(has_wiki=False) You can also create a Github instance with an OAuth token:: g = Github(token) Or without authentication:: g = Github() Reference documentation ======================= See http://jacquev6.github.com/PyGithub Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Web Environment Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL) Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 2 Classifier: Programming Language :: Python :: 2.5 Classifier: Programming Language :: Python :: 2.6 Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.2 Classifier: Programming Language :: Python :: 3.3 Classifier: Topic :: Software Development