mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-06 19:25:34 +00:00

+ use getters instead of constants in settings classes + refactor previous references + move get_xdg_config_dir() from settings.py to app.utils.xdg_utils.py
51 lines
1.2 KiB
Python
51 lines
1.2 KiB
Python
import os
|
|
|
|
from app.settings import TCOLOR, Release, FLASKVARS, Paths, FromFlags
|
|
from app.utils.network import get_ip
|
|
|
|
|
|
def log_startup_info():
|
|
lines = "------------------------------"
|
|
# clears terminal 👇
|
|
os.system("cls" if os.name == "nt" else "echo -e \\\\033c")
|
|
|
|
print(lines)
|
|
print(f"{TCOLOR.HEADER}SwingMusic {Release.APP_VERSION} {TCOLOR.ENDC}")
|
|
|
|
adresses = [FLASKVARS.FLASK_HOST]
|
|
|
|
if FLASKVARS.FLASK_HOST == "0.0.0.0":
|
|
adresses = ["localhost", get_ip()]
|
|
|
|
print("Started app on:")
|
|
for address in adresses:
|
|
# noinspection HttpUrlsUsage
|
|
print(
|
|
f"➤ {TCOLOR.OKGREEN}http://{address}:{FLASKVARS.FLASK_PORT}{TCOLOR.ENDC}"
|
|
)
|
|
|
|
print(lines)
|
|
print("\n")
|
|
|
|
to_print = [
|
|
[
|
|
"Extract featured artists from titles",
|
|
FromFlags.EXTRACT_FEAT
|
|
],
|
|
[
|
|
"Remove prod. from titles",
|
|
FromFlags.REMOVE_PROD
|
|
]
|
|
]
|
|
|
|
for item in to_print:
|
|
print(
|
|
f"{item[0]}: {TCOLOR.FAIL}{item[1]}{TCOLOR.ENDC}"
|
|
)
|
|
|
|
print(
|
|
f"{TCOLOR.YELLOW}Data folder: {Paths.get_app_dir()}{TCOLOR.ENDC}"
|
|
)
|
|
|
|
print("\n")
|