You have read the documentation provided here
After installing the application, you need to do a bunch of configuration, including specifying
You can also familiarize yourself with the OAuth protocol and everything you need and how to get them.
If you only need access to the specific github API, I would advise you to take a look at PyGithub
Authentication is as simple as doing g = Github( token ) , where is the token from oauth.
Reading repositories is as follows
for repo in g.get_user().get_repos(): print repo.name repo.edit( has_wiki = False )
Related question: The most suitable python library for Github API v3
source share