Files
gitea 6c292a5678 Tag: 1.25
Intermediate commits (oldest → newest):
- New command added that sets logging level dymnamically
- of course fix needed
- Fix
- refactor: comment out unused AutoIndex import and related code
- Add auth to ytdlp
- Modified spotipy for auth
- Fixes after reinstall
- fixx
- Add musician fixes
- Fix in default config
- How to setup radio
2025-10-30 16:59:20 +01:00

14 lines
279 B
Python

import os
from pathlib import Path
__all__ = ["VERSION"]
VERSION = "8.9.0"
if os.getenv("XDG_CACHE_HOME") is not None:
SAVE_PATH = os.getenv("XDG_CACHE_HOME") + "/spotifydl"
else:
SAVE_PATH = str(Path.home()) + "/.cache/spotifydl"
DOWNLOAD_LIST = "download_list.log"