mirror of
https://github.com/ThatNotEasy/PlayReadyProxy-API.git
synced 2026-04-05 03:59:18 +00:00
26 lines
2.0 KiB
Python
26 lines
2.0 KiB
Python
import pyfiglet
|
|
import random, os
|
|
from colorama import Fore, Back, Style, init
|
|
|
|
init(autoreset=True)
|
|
|
|
def clear_terminal():
|
|
os.system('cls' if os.name == 'nt' else 'clear')
|
|
|
|
def banners():
|
|
clear_terminal()
|
|
banners = """
|
|
██████╗ ██████╗ ██████╗ ███████╗ ██████╗██████╗ ██╗ ██╗██████╗ ████████╗ ██████╗ ██████╗
|
|
██╔══██╗██╔══██╗ ██╔══██╗██╔════╝██╔════╝██╔══██╗╚██╗ ██╔╝██╔══██╗╚══██╔══╝██╔═══██╗██╔══██╗
|
|
██████╔╝██████╔╝█████╗██║ ██║█████╗ ██║ ██████╔╝ ╚████╔╝ ██████╔╝ ██║ ██║ ██║██████╔╝
|
|
██╔═══╝ ██╔══██╗╚════╝██║ ██║██╔══╝ ██║ ██╔══██╗ ╚██╔╝ ██╔═══╝ ██║ ██║ ██║██╔══██╗
|
|
██║ ██║ ██║ ██████╔╝███████╗╚██████╗██║ ██║ ██║ ██║ ██║ ╚██████╔╝██║ ██║
|
|
╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝
|
|
Author: GITHUB.COM/THATNOTEASY
|
|
"""
|
|
# Split the banner into lines
|
|
banner_lines = banners.split('\n')
|
|
colors = [Fore.RED, Fore.GREEN, Fore.YELLOW, Fore.BLUE, Fore.CYAN, Fore.MAGENTA]
|
|
for line in banner_lines:
|
|
random_color = random.choice(colors)
|
|
print(random_color + line) |