Metadata-Version: 1.1
Name: SelectMenu
Version: 1.0.0b2
Summary: SelectMenu is the input form to choose from menu by arrow keys.
Home-page: UNKNOWN
Author: Hayato Tominaga
Author-email: takemehighermore@gmail.com
License: MIT License
Description: SelectMenu
        ==========
        
        |forthebadge|
        
        .. figure:: demo.gif
           :alt: demo
        
           demo
        
        📄 Overview
        ---------------------------
        
        **SelectMenu** is the input form to **choose from menu** by arrow keys.
        
        SelectMenu powered by
        `**python-prompt-toolkit** <https://github.com/jonathanslenders/python-prompt-toolkit>`__.
        
        ✏️ Usage
        ---------------
        
        .. code:: python
        
            >>> from selectmenu import SelectMenu
            >>> menu = SelectMenu()
            >>> menu.add_choices(
            ...    ["Python", "Ruby", "Javascript", "HTML", "CSS"])
            >>> result = menu.select("What language do you like?")
            What language do you like? (Use arrow keys)
             > Python
               Ruby
               Javascript
               HTML
               CSS
            >>> print result
            Python
        
        📥 Installation
        --------------------------
        
        ::
        
            $ git clone git@github.com:alice1017/SelectMenu.git
            $ cd SelectMenu
            $ python setup.py build install
        
        or
        
        ::
        
            $ pip install SelectMenu
        
        👀 Contribution
        -------------------
        
        1. Forks on `Github <https://github.com/alice1017/SelectMenu>`__
        2. Find a bug? Send a pull request to get it merged and published.
        
        .. |forthebadge| image:: http://forthebadge.com/images/badges/made-with-python.svg
           :target: http://forthebadge.com
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
