Metadata-Version: 1.0
Name: pygithub3
Version: 0.3
Summary: Python wrapper for the github v3 api
Home-page: https://github.com/copitux/python-github3
Author: David Medina
Author-email: davidmedina9@gmail.com
License: ISC
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.
        
        `Pygithub3 docs <http://pygithub3.rtfd.org>`_
        
        `Github API v3 docs <http://developer.github.com/v3/>`_
        
        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
        -------------
        
        - The core
        - `Users service <http://developer.github.com/v3/users/>`_
        - `Repos service <http://developer.github.com/v3/repos/>`_
        - `Gists service <http://developer.github.com/v3/gists/>`_
        
        TODO
        -----
        
        - Services: Git Data, Issues, Orgs, Pull Requests, Events
        - Oauth authorization API (service?)
        - Proxy methods into resources (e.g copitux.followers())
        
        Contribute
        -----------
        
        1. Fork the `repository <https://github.com/copitux/python-github3>`_
        2. Write a test to cover new feature or to reproduce bug
        3. Code with `pep8 <http://www.python.org/dev/peps/pep-0008/>`_ rules
        4. Add you to ``AUTHORS``
        5. Pull request it
        
        **Note**: I use `nose <http://readthedocs.org/docs/nose/en/latest/>`_ test environment,
        with `mock <http://www.voidspace.org.uk/python/mock/>`_ ``pip install nose mock``
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
