-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper.py
16 lines (14 loc) · 1.11 KB
/
helper.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import time
from color import Color
def froze() -> 'None':
time.sleep(2.5)
def BANNER() -> 'None':
print()
print(f"{Color.B_GREEN}------------ ------------ ---- ---- ------------ -------- ---- ---- ---- ----" )
print(f"{Color.B_RED}************ ************ **** **** ************ ********** ***** **** ***** ****" )
print(f"{Color.B_YELLOW}---- ---- ---- ---- --- ---- ---- ------ ---- ------ ----" )
print(f"{Color.B_BLUE}************ ************ ************ *** *** *** ************ ************" )
print(f"{Color.B_GREEN}------------ ------------ ------------ --- --- --- ------------ ------------" )
print(f"{Color.B_PURPLE} ***** ***** **** **** *** **** **** **** ****** **** ******" )
print(f"{Color.B_CYAN}------------ ------------ ---- ---- ------------ ---------- ---- ----- ---- -----" )
print(f"{Color.B_WHITE}************ ************ **** **** ************ ******** **** **** **** ****{Color.OFF}" )