-
Notifications
You must be signed in to change notification settings - Fork 0
/
art.py
18 lines (14 loc) · 1.63 KB
/
art.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# banner.py
from colorama import Fore, init
# Initialize colorama for Windows compatibility (if you're using Windows)
init(autoreset=True)
def display_banner():
print(f'''
{Fore.GREEN} ██████╗██╗ ██╗ ██████╗██╗ ██╗██╗ ██╗ ████████╗ ██████╗ ██████╗ ██╗
{Fore.GREEN}██╔════╝██║ ██║██╔════╝██║ ██╔╝╚██╗ ██╔╝ ╚══██╔══╝██╔═══██╗██╔═══██╗██║
{Fore.GREEN}██║ ██║ ██║██║ █████╔╝ ╚████╔╝ █████╗ ██║ ██║ ██║██║ ██║██║
{Fore.GREEN}██║ ██║ ██║██║ ██╔═██╗ ╚██╔╝ ╚════╝ ██║ ██║ ██║██║ ██║██║
{Fore.GREEN}╚██████╗███████╗██║╚██████╗██║ ██╗ ██║ ██║ ╚██████╔╝╚██████╔╝███████╗
{Fore.GREEN} ╚═════╝╚══════╝╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝\n\n
{Fore.RED}TELEGRAM: https://t.me/chen_lisal {Fore.RED}GITHUB: https://github.com/clicky4u
{Fore.BLUE}ctrl + z = Stopping process\n\n''')