Metadata-Version: 1.1
Name: qprompt
Version: 0.6.0
Summary: Library for quick CLI user prompts, input, and menus.
Home-page: https://github.com/jeffrimko/Qprompt
Author: Jeff Rimko
Author-email: jeffrimko@gmail.com
License: MIT
Description: Introduction
        ============
        
        This project provides a Python 2.7/3.x library that allows the user to
        quickly create CLI prompts for user input. The main features are the
        following:
        
        -  Simple multi-entry menus.
        
        -  Prompt for yes/no response.
        
        -  Prompt for integer response.
        
        -  Prompt for float response.
        
        -  Optional default value.
        
        -  Optional validity check.
        
        -  Should work on any platform without additional dependencies.
        
        Status
        ======
        
        Currently, this project is in the **development release** stage. While
        this project is suitable for use, please note that there may be
        incompatibilities in new releases.
        
        Requirements
        ============
        
        Qprompt should run on any Python 2.7/3.x interpreter without additional
        dependencies.
        
        Installation
        ============
        
        Qprompt can be installed with pip using the following command:
        ``pip install qprompt``
        
        Additional, Qprompt can be installed from source by running:
        ``python setup.py install``
        
        Usage
        =====
        
        The following are basic examples of Qprompt (all examples can be found
        `here <https://github.com/jeffrimko/Qprompt/tree/master/examples>`__):
        
        -  `examples/ask\_1.py <https://github.com/jeffrimko/Qprompt/blob/master/examples/ask_1.py>`__
           - Basic info prompting.
        
        -  `examples/menu\_1.py <https://github.com/jeffrimko/Qprompt/blob/master/examples/menu_1.py>`__
           - Basic menu usage.
        
        -  `examples/display\_1.py <https://github.com/jeffrimko/Qprompt/blob/master/examples/display_1.py>`__
           - Basic display functions.
        
        -  `examples/status\_1.py <https://github.com/jeffrimko/Qprompt/blob/master/examples/status_1.py>`__
           - Basic status function usage.
        
        Documentation
        =============
        
        The full documentation for this project can be found `here on Read the
        Docs <http://qprompt.readthedocs.io/en/latest/>`__.
        
        Similar
        =======
        
        The following projects are similar and may be worth checking out:
        
        -  `cliask <https://github.com/Sleft/cliask>`__
        
        -  `Promptly <https://github.com/aventurella/promptly>`__
        
        -  `prompter <https://github.com/tylerdave/prompter>`__
        
        -  `python-inquirer <https://github.com/magmax/python-inquirer>`__
        
Keywords: cli menu prompt input user library
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
