Metadata-Version: 2.0
Name: PyGithub-ReadOnly
Version: 1.34.post3
Summary: This fork of PyGithub provides support for read-only deploy keys
Home-page: https://github.com/kbarnes3/PyGithub
Author: Kevin Barnes
Author-email: kbarnes3@gmail.com
License: UNKNOWN
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: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development
Requires-Dist: pyjwt

(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://pygithub.github.io/PyGithub/v1/index.html

