mirror of
https://github.com/yeongpin/cursor-free-vip.git
synced 2025-08-03 04:57:36 +08:00
25 lines
1.5 KiB
Python
25 lines
1.5 KiB
Python
from colorama import Fore, Style, init
|
|
# 初始化 colorama
|
|
init()
|
|
|
|
CURSOR_LOGO = f"""
|
|
{Fore.CYAN}
|
|
██████╗██╗ ██╗██████╗ ███████╗ ██████╗ ██████╗ ██████╗ ██████╗ ██████╗
|
|
██╔════╝██║ ██║██╔══██╗██╔════╝██╔═══██╗██╔══██╗ ██╔══██╗██╔══██╗██╔═══██╗
|
|
██║ ██║ ██║██████╔╝███████╗██║ ██║██████╔╝ ██████╔╝██████╔╝██║ ██║
|
|
██║ ██║ ██║██╔══██╗╚════██║██║ ██║██╔══██╗ ██╔═══╝ ██╔══██╗██║ ██║
|
|
╚██████╗╚██████╔╝██║ ██║███████║╚██████╔╝██║ ██║ ██║ ██║ ██║╚██████╔╝
|
|
╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝
|
|
{Fore.YELLOW}
|
|
Pro Version Activator
|
|
{Fore.GREEN}
|
|
Author: Pin Studios | yeongpin
|
|
{Style.RESET_ALL}
|
|
"""
|
|
|
|
def print_logo():
|
|
print(CURSOR_LOGO)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print_logo() |