-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro.py
More file actions
31 lines (31 loc) · 4.93 KB
/
Copy pathintro.py
File metadata and controls
31 lines (31 loc) · 4.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from colorama import init, Fore, Style
init(autoreset=True)
def intro():
print(
f"{Fore.CYAN}╭─────────────────────────────────────────────────────────────────╮{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Style.BRIGHT}{Fore.BLUE}██████╗ ██████╗ ██████╗██╗ ██╗██████╗ █████╗{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Style.BRIGHT}{Fore.BLUE}██╔══██╗██╔═══██╗██╔════╝██║ ██║██╔══██╗██╔══██╗{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Style.BRIGHT}{Fore.BLUE}██║ ██║██║ ██║██║ ██║ ██║██████╔╝███████║{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Style.BRIGHT}{Fore.BLUE}██║ ██║██║ ██║██║ ██║ ██║██╔══██╗██╔══██║{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Style.BRIGHT}{Fore.BLUE}██████╔╝╚██████╔╝╚██████╗╚██████╔╝██║ ██║██║ ██║{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Style.BRIGHT}{Fore.BLUE}╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Style.BRIGHT}{Fore.YELLOW}Smart Document Processing & Analysis Tool{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}├─────────────────────────────────────────────────────────────────┤{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Style.BRIGHT}{Fore.GREEN}Welcome to Docura v1.0.0{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} Transform, analyze, and process documents with intelligence {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
# f"{Fore.CYAN}│{Style.RESET_ALL} {Style.BRIGHT}Quick Start:{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
# f"{Fore.CYAN}│{Style.RESET_ALL} {Fore.MAGENTA}•{Style.RESET_ALL} {Fore.WHITE}docura analyze document.pdf{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
# f"{Fore.CYAN}│{Style.RESET_ALL} {Fore.MAGENTA}•{Style.RESET_ALL} {Fore.WHITE}docura convert file.docx --format markdown{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
# f"{Fore.CYAN}│{Style.RESET_ALL} {Fore.MAGENTA}•{Style.RESET_ALL} {Fore.WHITE}docura extract data.pdf --type tables{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
# f"{Fore.CYAN}│{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} Visit '{Fore.LIGHTCYAN_EX}/{Style.RESET_ALL}' endpoint for information {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} Visit {Fore.LIGHTCYAN_EX}https://tinyurl.com/docura-ai{Style.RESET_ALL} for documentation {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}│{Style.RESET_ALL} {Fore.CYAN}│{Style.RESET_ALL}\n"
f"{Fore.CYAN}╰─────────────────────────────────────────────────────────────────╯{Style.RESET_ALL}"
)
intro()