-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.py
22 lines (20 loc) · 974 Bytes
/
constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from colorama import Fore
VERBOSE = f"{Fore.YELLOW}VERBOSE:{Fore.RESET}"
ERROR = f"{Fore.RED}ERROR:{Fore.RESET}"
RENAMED = f"{Fore.BLUE}RENAMED:{Fore.RESET}"
WRONGFILESIZE = f"{Fore.RED}WRONG FILESIZE:{Fore.RESET}"
NOTWHITELISTED = f"SKIPPING {Fore.RED}NOT WHITELISTED{Fore.RESET}:"
BLACKLISTED = f"SKIPPING {Fore.RED}BLACKLISTED{Fore.RESET}:"
SKIPPINGOK = f"SKIPPING {Fore.GREEN}OK{Fore.RESET}:"
SKIPPINGCORRUPT = f"SKIPPING {Fore.RED}CORRUPT{Fore.RESET}:"
SKIPPINGNOTFOUND = f"SKIPPING {Fore.MAGENTA}NOT FOUND{Fore.RESET}:"
SKIPPINGUNPROCESSED = f"SKIPPING {Fore.CYAN}UNPROCESSED{Fore.RESET}:"
MATCHED = f"{Fore.GREEN}MATCHED:{Fore.RESET}"
NOTFOUND = f"{Fore.MAGENTA}NOT FOUND:{Fore.RESET}"
OK = f"{Fore.GREEN}OK:{Fore.RESET}"
CORRUPT = f"{Fore.RED}CORRUPT:{Fore.RESET}"
SKIPPING = f"{Fore.WHITE}SKIPPING:{Fore.RESET}"
IGNORED = f"{Fore.MAGENTA}IGNORED:{Fore.RESET}"
ADDED = f"{Fore.GREEN}ADDED:{Fore.RESET}"
REMOVED = f"{Fore.GREEN}REMOVED:{Fore.RESET}"
INFO = "INFO:"