Metadata-Version: 1.1
Name: gitsuggest
Version: 0.0.2
Summary: A tool to suggest github repositories based on the repositories you have shown interest in.
Home-page: https://github.com/csurfer/gitsuggest
Author: Vishwas B Sharma
Author-email: sharma.vishwas88@gmail.com
License: MIT
Description: gitsuggest
        ===========
        
        |Licence|
        
        A tool to suggest github repositories based on the repositories you have shown
        interest in.
        
        |Demo|
        
        Setup
        -----
        
        Using pip
        ~~~~~~~~~
        
        .. code:: bash
        
            pip install gitsuggest
        
        Directly from the repository
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code:: bash
        
            git clone https://github.com/csurfer/gitsuggest.git
            python gitsuggest/setup.py install
        
        Usage
        -----
        
        As a command
        ~~~~~~~~~~~~
        
        .. code:: bash
        
            # For help with usage
            gitsuggest --help
        
            # With both username and password in command
            gitsuggest <username> --password <password>
        
            # With just username in command to provide password secretly
            gitsuggest <username>
        
        As a module
        ~~~~~~~~~~~
        
        .. code:: python
        
            from gitsuggest import GitSuggest
        
            gs = GitSuggest(<username>, <password>)
        
            # To get an iterator over suggested repositories.
            gs.get_suggested_repositories()
        
        Contributing
        ------------
        
        Bug Reports and Feature Requests
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        Please use `issue tracker`_ for reporting bugs or feature requests.
        
        Development
        ~~~~~~~~~~~
        
        Pull requests are most welcome.
        
        .. _issue tracker: https://github.com/csurfer/gitsuggest/issues
        
        .. |Licence| image:: https://img.shields.io/badge/license-MIT-blue.svg
           :target: https://raw.githubusercontent.com/csurfer/gitsuggest/master/LICENSE
        
        .. |Demo| image:: http://i.imgur.com/WSWseQN.gif
Keywords: github repository suggestion
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
