geenral fix

This commit is contained in:
feder-cr 2024-08-05 01:09:50 +01:00
parent fddfe5bb9c
commit 8a042217cb
4 changed files with 44 additions and 20 deletions

View file

@ -66,3 +66,17 @@ def chromeBrowserOptions():
else:
options.add_argument("--incognito")
return options
def printred(text):
# Codice colore ANSI per il rosso
RED = "\033[91m"
RESET = "\033[0m"
# Stampa il testo in rosso
print(f"{RED}{text}{RESET}")
def printyellow(text):
# Codice colore ANSI per il giallo
YELLOW = "\033[93m"
RESET = "\033[0m"
# Stampa il testo in giallo
print(f"{YELLOW}{text}{RESET}")