Python wrapper for the github v3 api
Project description
Pygithub3
Pygithub3 is a wrapper to the Github API v3, written in Python.
It has been developed with extensibility in mind, because the API is in a beta state, trying to achieve a very loosly coupled software.
It should be very easy to extend to support new requests and resources, because each of them are managed by itself.
Fast install
pip install pygithub3
Fast example
from pygithub3 import Github gh = Github(login='copitux', password='password') copitux = gh.users.get() kennethreitz = gh.users.get('kennethreitz') copitux_repos = gh.repos.list().all() kennethreitz_repos = gh.repos.list('kennethreitz').all()
Achievements
TODO
Oauth authorization API (service?)
Proxy methods into resources (e.g copitux.followers)
Contribute
Fork the repository
Write a test to cover new feature or to reproduce bug
Code with pep8 rules
Add yourself to AUTHORS
Pull request it to develop branch
Tests
Run make init to install test requirements and nosetests to run tests.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.