Metadata-Version: 1.1
Name: gitlo
Version: 1.0
Summary: A Command Line Interface for accessing Github api.
Home-page: https://github.com/SiddharthShringi/Gitlo
Author: Siddharth Shringi
Author-email: siddharthshrigi@gmail.com
License: UNKNOWN
Description: # Gitlo
        A Command Line Interface made in Python. It's simple tool that helps you to access Github API.
        I used Python library ```Click``` to make this application.
        
        
        # How to get it
        ```bash
         $ pip install gitlo 
        ```
        
        # Examples
        
        ## Get user info
        Use the ``` gitlo user <username> ``` command to get information of user.
        ```bash
        $ gitlo user siddharthshringi
        Name: Siddharth Shringi, Repos: 16, Bio: Python Developer | ML Enthusiast
        ```
        
        ## Get repository list of user
        Use the ```gitlo repos <username>``` command to get repository list.
        ```bash
        $ gitlo repos siddharthshringi
        blacksamsung.github.io
        create-your-own-adventure
        data
        diary_of_programming_puzzles
        django-rest-framework
        Gitpy
        hello-world
        hello_world
        markdown-here
        my-first-blog
        my-first-contact-app
        recipes
        reflections
        siddharthshringi.github.io
        Song-App
        ThinkStats2
        ```
        
        ## Get language percentage in each repository
        Use the ```gitlo languages <username> <reponame>``` command to get language information in repository.
        ```bash
        $ gitlo languages siddharthshringi Song-App
        Python: 59.84%
        HTML: 32.96%
        CSS: 7.2%
        ```
        
        # License
        
        MIT licensed. See the bundled [LICENSE](https://github.com/SiddharthShringi/Gitlo/blob/master/LICENSE) file for more details.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
