Metadata-Version: 2.1
Name: get_input
Version: 0.0.1
Summary: This package allows program to get data iput of a specific type without giving errors
Home-page: https://github.com/yoptgyo/get_input
Author: Prashant Sengar
Author-email: prashantsengar5@hotmail.com
License: UNKNOWN
Description: https://github.com/yoptgyo/get_input
        Author: Prashant Sengar
        Author email: prashantsengar5@hotmail.com
        
        # get_input
        Python module to take input of a defined data type from user
        
        
        # How to use
        
        
        ```python
        
        import get_input
        
        return_value = get_input.input(prompt, data_type)
        ```
        
        
        
        
        ## Data types which can be used:
        
          -'int' for integer
          -'str' for string
        
          -'float' for float values
          
          
        
        
        # Example code
        
        `integer_value = get_input.input("Please enter a number: ", 'int')`
        
        
        
        ```python
        
        >>> Please enter a number: hello
        
        >>> Please enter an integer value.
        
        >>> Please enter a number: 5.0
        
        >>> Please enter an integer value.
        
        >>> Please enter a number: 5
        
        >>>
        
        ```
        
        
        
        --It will ask the user to enter an integer value and will wait till an integer value is returned--
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
