Terminal

class pyTooling.TerminalUI.Terminal[source]

Bases: object

Foreground = {'BLUE': '\x1b[94m', 'CYAN': '\x1b[96m', 'DARK_BLUE': '\x1b[34m', 'DARK_CYAN': '\x1b[36m', 'DARK_GRAY': '\x1b[90m', 'DARK_GREEN': '\x1b[32m', 'DARK_RED': '\x1b[31m', 'DARK_YELLOW': '\x1b[33m', 'ERROR': '\x1b[91m', 'GRAY': '\x1b[37m', 'GREEN': '\x1b[92m', 'HEADLINE': '\x1b[95m', 'MAGENTA': '\x1b[95m', 'NOCOLOR': '\x1b[39m', 'RED': '\x1b[91m', 'WARNING': '\x1b[93m', 'WHITE': '\x1b[97m', 'YELLOW': '\x1b[93m'}

Terminal colors

_width: int = None

Terminal width in characters

_height: int = None

Terminal height in characters

classmethod initColors()[source]

Initialize the terminal for color support by colorama.

Return type:

None

classmethod deinitColors()[source]

Uninitialize the terminal for color support by colorama.

Return type:

None

classmethod fatalExit(returnCode=0)[source]

Exit the terminal application by uninitializing color support and returning a fatal exit code.

Return type:

NoReturn

classmethod exit(returnCode=0)[source]

Exit the terminal application by uninitializing color support and returning an exit code.

Return type:

NoReturn

classmethod versionCheck(version)[source]

Check if the used Python interpreter fulfills the minimum version requirements.

Return type:

None

classmethod printException(ex)[source]

Prints an exception of type Exception.

Return type:

NoReturn

classmethod printNotImplementedError(ex)[source]

Prints a not-implemented exception of type NotImplementedError.

Return type:

NoReturn

property Width: int

Returns the current terminal window’s width.

Return type:

int

property Height: int

Returns the current terminal window’s height.

Return type:

int

static GetTerminalSize()[source]

Returns the terminal size as tuple (width, height) for Windows, Mac OS (Darwin), Linux, cygwin (Windows), MinGW32/64 (Windows).

Return type:

Tuple[int, int]

__GetTerminalSizeOnWindows()

Returns the current terminal window’s size for Windows.

Return type:

Tuple[int, int]

__GetTerminalSizeOnLinux()

Returns the current terminal window’s size for Linux.

Return type:

Tuple[int, int]