Add print helpers
This commit is contained in:
parent
d8f46a9806
commit
187326509a
14
print_helpers.py
Normal file
14
print_helpers.py
Normal file
@ -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")
|
Loading…
Reference in New Issue
Block a user