61 lines
2.8 KiB
Python
61 lines
2.8 KiB
Python
from colorama import Fore, Style, init
|
|
import platform
|
|
import os
|
|
from datetime import datetime
|
|
|
|
# 初始化 colorama
|
|
init()
|
|
|
|
def clear_screen():
|
|
"""清除屏幕"""
|
|
if platform.system() == "Windows":
|
|
os.system("cls")
|
|
else:
|
|
os.system("clear")
|
|
|
|
def print_logo():
|
|
"""打印专业的商业软件界面"""
|
|
clear_screen()
|
|
|
|
# 获取当前年份
|
|
current_year = datetime.now().year
|
|
|
|
print(f"{Fore.CYAN}")
|
|
print(f"""
|
|
|
|
{Fore.WHITE} ███╗ ██╗ ██████╗ ███████╗ ██████╗ ██╗ ██╗
|
|
████╗ ██║██╔═══██╗██╔════╝██╔═══██╗██║ ██║
|
|
██╔██╗ ██║██║ ██║███████╗██║ ██║██║ ██║
|
|
██║╚██╗██║██║ ██║╚════██║██║▄▄ ██║██║ ██║
|
|
██║ ╚████║╚██████╔╝███████║╚██████╔╝███████╗██║
|
|
╚═╝ ╚═══╝ ╚═════╝ ╚══════╝ ╚══▀▀═╝ ╚══════╝╚═╝{Fore.CYAN}
|
|
|
|
{Fore.YELLOW}CURSOR PROFESSIONAL TOOLS - ENTERPRISE EDITION V8.0.1{Fore.CYAN}
|
|
|
|
════════════════════════════════════════════════════════════════════════════
|
|
|
|
{Fore.WHITE}官方认证{Fore.CYAN} │ NOSQLI AUTHORIZED DISTRIBUTOR
|
|
{Fore.WHITE}商务咨询{Fore.CYAN} │ WeChat: behikcigar
|
|
{Fore.WHITE}更新通道{Fore.CYAN} │ https://cursorapi.nosqli.com/admin/api.program/down
|
|
|
|
════════════════════════════════════════════════════════════════════════════
|
|
|
|
{Fore.WHITE}[PREMIUM FEATURES | 尊享特权]{Fore.CYAN}
|
|
|
|
🚀 Advanced AI Engine │ 高级智能引擎加速
|
|
🔥 Unlimited Usage │ 企业级无限使用权限
|
|
💫 Premium Support │ 尊享技术支持服务
|
|
🌐 Proxy Required │ 需要开启代理服务
|
|
|
|
════════════════════════════════════════════════════════════════════════════
|
|
|
|
{Fore.YELLOW}Copyright © {current_year} NOSQLI. All Rights Reserved.{Fore.CYAN}
|
|
|
|
""")
|
|
|
|
print(f"{Style.RESET_ALL}")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print_logo()
|