Metadata-Version: 1.1
Name: SimpleQuestions
Version: 1.0
Summary: Add a function to ask Yes/No questions
Home-page: https://gitlab.com/remyj38/simplequestions
Author: Rémy Jacquin
Author-email: remy@remyj.fr
License: GPLv3
Description: SimpleQuestion
        ==============
        
        This is a simple python module to ask a yes/no question to the user
        
        Installation
        ------------
        
        Use pip command to install it:
        
        .. code:: bash
        
            pip install simplequestions
        
        Usage
        -----
        
        .. code:: python
        
            from simplequestions import question
        
            answer = question('Do you like it ?', 'n')
        
        API description
        ---------------
        
        ``simplequestions.question(text, default='y')``
        
          Ask a question to the user
          
          Parameters:
        
          :text: The question to the user
          :default: Default answer ('y' or 'n')
        
Keywords: yes no questions
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
