config.py 235 B

12345678
  1. from pathlib import Path
  2. import tempfile
  3. playlist_folder_template = "{artist} - {title}"
  4. track_filename_template = "{number} {artist} - {title}.mp3"
  5. music_folder = r"D:\music"
  6. tmp_folder = Path(tempfile.gettempdir()) / "!!downloader"