-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.py
32 lines (30 loc) · 984 Bytes
/
constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
SPOTIFY_SCOPES = [
"ugc-image-upload",
"user-read-playback-state",
"user-modify-playback-state",
"user-read-currently-playing",
"app-remote-control",
"streaming",
"playlist-read-private",
"playlist-read-collaborative",
"playlist-modify-private",
"playlist-modify-public",
"user-follow-modify",
"user-follow-read",
"user-read-playback-position",
"user-top-read",
"user-read-recently-played",
"user-library-modify",
"user-library-read",
"user-read-email",
"user-read-private",
]
TRACK_ID_DB_FILE_NAME = 'track_id_db.yaml'
TRACK_ID_DB_OVERRIDES_FILE_NAME = 'track_id_db_overrides.yaml'
MISSING_TRACKS_FILE_NAME = 'missing_tracks.yaml'
SYNC_REPORT_FILE_NAME_PREFIX = 'sync_report_'
CUSTOM_TRACKS_FILE_NAME = 'custom_tracks.yaml'
SPOTIFY_PLAYLIST_PREFIXES = ['FLOW', 'SET', 'COL']
SPOTIFY_PLAYLISTS = ['floatation', 'Toiletmuziek', 'waveyliq', 'KEYSORT']
# SPOTIFY_PLAYLIST_PREFIXES = []
# SPOTIFY_PLAYLISTS = ['SET_2024-08-24_HIGH-TEA-AFTER-DARK']