Rename application documents

This commit is contained in:
nathom 2021-03-25 12:12:15 -07:00
parent ca58ec0827
commit 7a234bc17e
3 changed files with 10 additions and 28 deletions

View file

@ -4,13 +4,13 @@ from pathlib import Path
import click
import mutagen.id3 as id3
APPNAME = "music-dl"
APPNAME = "streamrip"
CACHE_DIR = click.get_app_dir(APPNAME)
CONFIG_DIR = click.get_app_dir(APPNAME)
CONFIG_PATH = os.path.join(CONFIG_DIR, "config.yaml")
LOG_DIR = click.get_app_dir(APPNAME)
DB_PATH = os.path.join(LOG_DIR, "music-dl.db")
DB_PATH = os.path.join(LOG_DIR, "downloads.db")
DOWNLOADS_DIR = os.path.join(Path.home(), "Music Downloads")