From 187326509aed1670de153f930e5450d5041583dc Mon Sep 17 00:00:00 2001 From: Lucas Noki Date: Sat, 25 Jul 2020 04:50:06 +0200 Subject: [PATCH] Add print helpers --- print_helpers.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 print_helpers.py diff --git a/print_helpers.py b/print_helpers.py new file mode 100644 index 0000000..de0c70c --- /dev/null +++ b/print_helpers.py @@ -0,0 +1,14 @@ +def print_fail(text): + print("\033[91m" + "[-] " + text + "\033[0m") + + +def print_gr(text): + print("\033[92m" + "[+] " + text + "\033[0m") + + +def print_warn(text): + print("\033[93m" + "[*] " + text + "\033[0m") + + +def print_blue(text): + print("\033[94m" + "[+] " + text + "\033[0m")