Metadata-Version: 2.1
Name: PyGithub
Version: 1.57
Summary: Use the full Github API v3
Home-page: https://github.com/pygithub/pygithub
Author: Vincent Jacques
Author-email: vincent@vincent-jacques.net
Project-URL: Documentation, http://pygithub.readthedocs.io/en/latest/
Project-URL: Source, https://github.com/pygithub/pygithub
Project-URL: Tracker, https://github.com/pygithub/pygithub/issues
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 :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development
Requires-Python: >=3.7
Provides-Extra: integrations
License-File: COPYING
License-File: COPYING.LESSER

(Very short) Tutorial
=====================

First create a Github instance::

    from github import Github

    # using username and password
    g = Github("user", "password")

    # or using an access token
    g = Github("access_token")

Then play with your Github objects::

    for repo in g.get_user().get_repos():
        print(repo.name)
        repo.edit(has_wiki=False)

Reference documentation
=======================

See http://pygithub.readthedocs.io/en/latest/
