예제 #1
0
def print_info(string, space=0, file=None, alternate_color=False):
    terminal.printing(
        string,
        terminal.MSG_TYPE.INFO,
        terminal.BCOLORS.INFO,
        space,
        file,
        alternate_color,
    )
예제 #2
0
def print_prompt(string, space=0, file=None):
    terminal.printing(string, terminal.MSG_TYPE.NULL, terminal.BCOLORS.PROMPT,
                      space, file)
예제 #3
0
def print_error(string, space=0, file=None):
    terminal.printing(string, terminal.MSG_TYPE.ERROR, terminal.BCOLORS.ERROR,
                      space, file)
예제 #4
0
def print_warning(string, space=0, file=None):
    terminal.printing(string, terminal.MSG_TYPE.WARNING,
                      terminal.BCOLORS.WARNING, space, file)
예제 #5
0
def print_new_line():
    terminal.printing("", terminal.MSG_TYPE.NULL, terminal.BCOLORS.INFO, 0,
                      None, False)