Metadata-Version: 2.1
Name: inputconsole
Version: 0.0.1
Summary: A console for Python that will keep all output above the input line without interrupting the input line.
Home-page: UNKNOWN
Author: Nathan Fiscaletti
License: UNKNOWN
Description: # InputConsole
        
        A console for Python that will keep all output above the input line without interrupting the input line.
        
        ## Install
        
        ```shell
        $ pip3 install inputconsole
        ```
        
        ## Example
        
        ```py
        from inputconsole import InputConsole
        
        # Create the console
        console = InputConsole()
        
        # Register a command
        def help(args):
            console.write("I don't want to help you {0}.\n".format(args[0]))
        console.register_command('help', help)
        
        # Start listening for input on a new thread
        # Input line will always stay at the bottom
        console.listen_for_input()
        
        # Generate random output to keep the output thread active.
        def steady_flow():
            num = 0
            while True:
                console.write("this is an output message: {0}\n".format(num))
                time.sleep(2)
                num += 1
        t = Thread(target=steady_flow)
        t.start()
        t.join()
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
