initial commit

This commit is contained in:
nathom 2021-03-22 09:21:27 -07:00
commit 3b6c1dc0bd
30 changed files with 6233 additions and 0 deletions

14
qobuz_dl/color.py Normal file
View file

@ -0,0 +1,14 @@
from colorama import Fore, Style, init
init(autoreset=True)
DF = Style.NORMAL
BG = Style.BRIGHT
RESET = Style.RESET_ALL
OFF = Style.DIM
RED = Fore.RED
BLUE = Fore.BLUE
GREEN = Fore.GREEN
YELLOW = Fore.YELLOW
CYAN = Fore.CYAN
MAGENTA = Fore.MAGENTA