Skip to main content

Console helper tools for CLIs

Project description

dt-console

dt-console is a Python library to simplify CLI input and output for your python apps/scripts. It has been tested in Windows and Linux.

Features include:

  • ConsoleHelper - manage window and cursor control
    • Set console window title
    • Show/Hide console window, set fg/bg colors
    • Set cursor style, location, ...
    • Routines to print and colorize output text
  • ConsoleInputHelper - Keyboard input prompts with validation and timeouts.
  • MessageBox - GUI messsagebox (alert, confirm, input, password)
  • ProgressBar - Display visual progress on screen via configurable progress bar
  • Spinner - Display visual progress on screen via configuable spinner control

Package donumentation can be found here.

Installation

Download source code from githup via git

git clone https://github.com/JavaWiz1/dt-console.git

Note, when downloading source, Poetry was used as the package manager. Poetry handles creating the virtual environment and all dependent packages installs with proper versions.

To setup virtual environment with required production AND dev (sphinx) dependencies:

poetry install

with ONLY production packages (no sphinx):

poetry install --without dev

use the package manager pip to install dt-console.

pip install dt-console [--user]

Usage

A demo cli has been included to show how these modules can be used. The demo selectively displays each control (console tools, input prompt, messagebox, ProgressBar and Spinner) and source is provided to review for implementation details.

See dt_tools.cli.dt_console_demos.py for detailed demo examples (runnable demo)

To run the demo type:

python -m dt_tools.cli.dt_console_demos

# or if via source (and poetry)
poetry run python -m dt_tools.cli.dt_console_demos

Developer package documentation contains details on all classes and supporting code (i.e. constant namespaces and enums) use for method calls. Docs can be found here.

Main classes/modules Overview

ConsoleHelper

ConsoleHelper provides methods for managing the console windows.

    from dt_tools.console.console_helper import ConsoleHelper
    import time

    console.clear_screen(cursor_home=True)
 
    console_size = console.get_console_size()
    row, col = console.cursor_current_position()
    print(f'Console size: {console_size}, cur pos: {row},{col}')
 
    console.print_at(row=3, col=5, msg="Here we are at row 3, column 5", eol='\n\n')
    time.sleep(.5)
 
    blue = console.cwrap('blue', cc.CBLUE)
    brown = console.cwrap('brown', cc.CBEIGE)
    green = console.cwrap('green', cc.CGREEN)
    text = f"The {blue} skies and the {brown} bear look wonderful in the {green} forest!"
    print(text)
 
    row, col = console.cursor_current_position()
    print(f'         at ({row},{col})', flush=True)
    time.sleep(2)
    console.print_at(row,col,'Finished')

ConsoleInputHelper

ConsoleInputHelper provides a customizable input prompt.

    from dt_tools.console.console_helper import ConsoleInputHelper

    console_input = ConsoleInputHelper()

    resp = console_input.get_input_with_timeout(prompt='Do you want to continue (y/n) > ', 
                                                valid_responses=console_input.YES_NO_RESPONSE, 
                                                default='y', 
                                                timeout_secs=5)
    print(f'  returns: {resp}')

MessageBox

Message box implements Alert, Confirmation, Input Prompt, Password Prompt message boxes.

    import dt_tools.console.msgbox as msgbox

    resp = msgbox.alert(text='This is an alert box', title='ALERT no timeout')
    print(f'  mxgbox returns: {resp}')

    resp = msgbox.alert(text='This is an alert box', title='ALERT w/Timeout', timeout=3000)
    print(f'  mxgbox returns: {resp}')

ProgressBar

ProgressBar is an easy to use, customizable console ProgressBar which displays percentage complete and elapsed time.

    from dt_tools.console.progress_bar import ProgressBar
    import time

    print('Progress bar...')
    pbar = ProgressBar(caption="Test bar 1", bar_length=40, max_increments=50, show_elapsed=False)
    for incr in range(1,51):
        pbar.display_progress(incr, f'incr [{incr}]')
        time.sleep(.15)    

    print('\nProgress bar with elapsed time...')
    pbar = ProgressBar(caption="Test bar 2", bar_length=40, max_increments=50, show_elapsed=True)
    for incr in range(1,51):
        pbar.display_progress(incr, f'incr [{incr}]')
        time.sleep(.15)

Spinner

Spinner is an easy to use, customizable console Spinner control which displays spinning icon and elapsed time.

    from dt_tools.console.spinner import Spinner, SpinnerType
    import time

    # Example to display all spinner types for approx 5 sec. apiece
    for spinner_type in SpinnerType:
        spinner = Spinner(caption=spinner_type, spinner=spinner_type, show_elapsed=True)
        spinner.start_spinner()
        
        # Do long task...
        for cnt in range(1,20):
            time.sleep(.25)

        spinner.stop_spinner()

License

MIT

The MessageBox code was derived from:
PyMsgBox - BSD for PyMsgBox (see source for msgbox.py)

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

dt_console-0.1.25.tar.gz (23.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dt_console-0.1.25-py3-none-any.whl (28.5 kB view details)

Uploaded Python 3

File details

Details for the file dt_console-0.1.25.tar.gz.

File metadata

  • Download URL: dt_console-0.1.25.tar.gz
  • Upload date:
  • Size: 23.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.4 CPython/3.11.9 Windows/10

File hashes

Hashes for dt_console-0.1.25.tar.gz
Algorithm Hash digest
SHA256 ba9f9b26d73e7470a9ba47ba3a1ac601e23cd6b8631395ed4259742231865992
MD5 7e02656e0920f9d4389efb40b27df387
BLAKE2b-256 f2860dfc1b2a0f53e42dbdfa6c4c43d72e757492048903d2e453f5a87c80b061

See more details on using hashes here.

File details

Details for the file dt_console-0.1.25-py3-none-any.whl.

File metadata

  • Download URL: dt_console-0.1.25-py3-none-any.whl
  • Upload date:
  • Size: 28.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.4 CPython/3.11.9 Windows/10

File hashes

Hashes for dt_console-0.1.25-py3-none-any.whl
Algorithm Hash digest
SHA256 5a6c9a408069c3b90f7bcca00659f4b356c6e927fb9f060a52f289e204c188d9
MD5 3866d5a3b51d8b0b30caca701fe333da
BLAKE2b-256 6aae43646b1baceab4d64ff412f1e3c3604f12ff0510f6b3b8c2f1eb4ecf5cfb

See more details on using hashes here.

Supported by

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