irs/irs/config.py
2017-01-27 00:20:13 -08:00

27 lines
673 B
Python

from os.path import expanduser
CONFIG = dict(
# To autostart rhythmbox with a new song:
# default_flags = '-c rhythmbox %(loc)s',
# To make choosing of links default:
# default_flags = '-l',
# To place all playlist songs into one folder:
# default_flags = '-of',
default_flags = '',
# These are necessary to download Spotify playlists
client_id = '',
client_secret = '',
# For a custom directory. Note that `~` will not work as a shortcut.
directory = str(expanduser("~")) + "/Music",
# If you want numbered file names
numbered_file_names = True,
# Downloaded file names
download_file_names = False,
)