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
- classmethod initColors()[source]¶
Initialize the terminal for color support by colorama.
- Return type:
- classmethod deinitColors()[source]¶
Uninitialize the terminal for color support by colorama.
- Return type:
- classmethod fatalExit(returnCode=0)[source]¶
Exit the terminal application by uninitializing color support and returning a fatal exit code.
- Return type:
- classmethod exit(returnCode=0)[source]¶
Exit the terminal application by uninitializing color support and returning an exit code.
- Return type:
- classmethod versionCheck(version)[source]¶
Check if the used Python interpreter fulfills the minimum version requirements.
- Return type:
- classmethod printNotImplementedError(ex)[source]¶
Prints a not-implemented exception of type
NotImplementedError
.- Return type:
- static GetTerminalSize()[source]¶
Returns the terminal size as tuple (width, height) for Windows, Mac OS (Darwin), Linux, cygwin (Windows), MinGW32/64 (Windows).
- __GetTerminalSizeOnWindows()¶
Returns the current terminal window’s size for Windows.