te4gh0st.py 1.1 KB

1234567891011121314151617181920212223
  1. #!/usr/bin/python3
  2. from colorama import Fore, Back, Style, init
  3. init(autoreset=True)
  4. logo = '''
  5. $$\ $$\ $$\ $$\ $$$$$$\ $$\
  6. $$ | $$ | $$ | $$ | $$$ __$$\ $$ |
  7. $$$$$$\ $$$$$$\ $$ | $$ | $$$$$$\ $$$$$$$\ $$$$\ $$ | $$$$$$$\ $$$$$$\
  8. \_$$ _| $$ __$$\ $$$$$$$$ |$$ __$$\ $$ __$$\ $$\$$\$$ |$$ _____|\_$$ _|
  9. $$ | $$$$$$$$ |\_____$$ |$$ / $$ |$$ | $$ |$$ \$$$$ |\$$$$$$\ $$ |
  10. $$ |$$\ $$ ____| $$ |$$ | $$ |$$ | $$ |$$ |\$$$ | \____$$\ $$ |$$\
  11. \$$$$ |\$$$$$$$\ $$ |\$$$$$$$ |$$ | $$ |\$$$$$$ /$$$$$$$ | \$$$$ |
  12. \____/ \_______| \__| \____$$ |\__| \__| \______/ \_______/ \____/
  13. $$\ $$ |
  14. \$$$$$$ |
  15. \______/
  16. '''
  17. print(Fore.RED + logo)
  18. print(Fore.RED + ''.center(78, '-'))
  19. print(Back.BLACK + Fore.WHITE + 'Welcome'.center(78))
  20. print(Fore.RED + ''.center(78, '-'))