Metadata-Version: 2.1
Name: githubAPy
Version: 0.4
Summary: Python wrapper to easily communicate with the GitHub API
Home-page: https://github.com/techytushar/githubAPy
Author: Tushar Mittal
Author-email: chiragmittal.mittal@gmail.com
License: GNU General Public License v3 (GPLv3)
Description: Python package to easily use the GitHub API.
        
        ### Installation
        Install using `pip3 install githubAPy`
        
        ### Usage
        * Import the class
        `from githubAPy import gapy`
        * Create an object and pass the GitHub Access Token
        `a = gapy('<access_token_here>')`
        
        Multiple actions are supported
        
        * `a.me` return your information in dict (JSON) format.
        * `a.user('<username>')` return the information of a user.
        * `a.create_fork('<owner>', '<repository>')` create a fork of the specified repository and returns url of the forked repository if fork successfully created else raises an error.
        * `a.update_with_upstream('<owner>', '<repository>')`  updates your forked repository master with the upstream master. Returns `True` if updated successfully else raises an error.
        
        More feature to be added in later versions.
        
Keywords: github api python wrapper
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
