Skip to main content

A console for Python that will keep all output above the input line without interrupting the input line.

Project description

InputConsole

InputConsole is a console for Python that will keep all output above the input line without interrupting the input line.

$ pip3 install inputconsole

PyPI version Downloads GitHub issues GitHub license

Demo

Example

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)

# Set unknown command handler, Return 'True' for command handled or
# 'False' for command not handled.
def unknown_command_handler(command):
    console.write("Unknown command: " + command)
    return True
console.set_unknown_command_handler(unknown_command_handler)

# 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()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

inputconsole-1.0.1.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

inputconsole-1.0.1-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page