From 4eb80e51c586626ccc9303c98173f3142a65f8a6 Mon Sep 17 00:00:00 2001 From: Matthew Iverson Date: Sun, 24 Nov 2024 10:53:36 -0500 Subject: [PATCH] Upload files to "Assets" --- Assets/ascii_text_prompts.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Assets/ascii_text_prompts.py diff --git a/Assets/ascii_text_prompts.py b/Assets/ascii_text_prompts.py new file mode 100644 index 0000000..384c56d --- /dev/null +++ b/Assets/ascii_text_prompts.py @@ -0,0 +1,29 @@ +import os +from colorama import Fore, Style + +full_ascii_art = f""" +{Fore.RED}{Style.BRIGHT} +┏┓┏┏ • ┏┓ ┓ ┏┓ • ┳┓ ┓ ┓ +┃┃╋╋┏┓┏┓┏┓┓┏┏┓ ┃ ┓┏┣┓┏┓┏┓ ┃┃┏┓┏┓┏┓┏┓╋┓┏┓┏┓┏ ┣┫┓┏┏┫┏┫┓┏ +┗┛┛┛┗ ┛┗┛┗┗┛┗ ┗┛┗┫┗┛┗ ┛ ┗┛┣┛┗ ┛ ┗┻┗┗┗┛┛┗┛ ┻┛┗┻┗┻┗┻┗┫ + ┛ ┛ ┛ +{Style.RESET_ALL}""" + +ascii_art = f""" +{Fore.RED}{Style.BRIGHT} +┏┓┏┓┏┓ ┳┓┳┳┳┓┳┓┓┏ +┃┃┃ ┃┃ ┣┫┃┃┃┃┃┃┗┫ +┗┛┗┛┗┛ ┻┛┗┛┻┛┻┛┗┛ +{Style.RESET_ALL}""" + +infinitei = f""" +Created By: +{Fore.MAGENTA} +██╗███╗ ██╗███████╗██╗███╗ ██╗██╗████████╗██████╗ ██╗ +██║████╗ ██║██╔════╝██║████╗ ██║██║╚══██╔══╝╚════██╗██║ +██║██╔██╗ ██║█████╗ ██║██╔██╗ ██║██║ ██║ █████╔╝██║ +██║██║╚██╗██║██╔══╝ ██║██║╚██╗██║██║ ██║ ╚═══██╗██║ +██║██║ ╚████║██║ ██║██║ ╚████║██║ ██║ ██████╔╝██║ +╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ +{Style.RESET_ALL} +""" \ No newline at end of file