Files
Spoofy/libs/PrettyOutput.py
2022-09-20 12:03:01 -07:00

18 lines
575 B
Python

from colorama import Fore, Back, Style
from colorama import init as color_init
def output_good(line):
print (Fore.GREEN + Style.BRIGHT + "[+]" + Style.RESET_ALL, line)
def output_indifferent(line):
print (Fore.BLUE + Style.BRIGHT + "[*]" + Style.RESET_ALL, line)
def output_error(line):
print (Fore.RED + Style.BRIGHT + "[-] !!! " + Style.NORMAL, line, Style.BRIGHT + "!!!")
def output_bad(line):
print (Fore.RED + Style.BRIGHT + "[-]" + Style.RESET_ALL, line)
def output_info(line):
print (Fore.WHITE + Style.BRIGHT + "[*]" + Style.RESET_ALL, line)