"""Costants for models.""" SOS_PLACEMENTS = ( 'labelid', 'storeid', 'streams', 'playlist_link', 'track_title', 'upc', 'isrc', 'artist', 'artist_id', 'date_added') STORES = { 'APPLE_MUSIC': '1', 'SPOTIFY': '286'} SPOTIFY_PLAYLIST_API_MAX_TRIES = 1 STREAMS_METRICS = ( 'streams_from_passive_discovery', 'streams_from_active_discovery', 'streams_from_collection', 'overall_number_of_streams', 'overall_number_of_spotify_streams', 'skips', 'saves') SOS_METRICS = ('date',) + STREAMS_METRICS WEEK_PERIOD = 'W' MONTH_PERIOD = 'M' YEAR_PERIOD = 'Y' SPOTIFY_PLAYLISTS = { 'unknown': { 'playlist_title': 'Spotify Personalized Playlist' }, 'discoverWeekly': { 'playlist_title': 'Discover Weekly', 'display_link': 'https://support.spotify.com/us/using_spotify/' 'playlists/discover-weekly/', 'image': 'https://cdn.theorchard.io/web-icons/discoverWeekly.png' }, 'dailyMix': { 'playlist_title': 'Daily Mix', 'display_link': 'https://support.spotify.com/us/using_spotify/playlists/daily-mix', 'image': 'https://cdn.theorchard.io/web-icons/dailyMix.png' }, 'releaseRadar': { 'playlist_title': 'Release Radar', 'display_link': 'https://support.spotify.com/us/article/release-radar/', 'image': 'https://cdn.theorchard.io/web-icons/releaseRadar.png' }, 'yearInMusic': { 'playlist_title': 'Year In Music', 'display_link': 'https://www.spotify.com', 'image': 'https://cdn.theorchard.io/web-icons/yearInMusic.png' }, 'totga2017': { 'playlist_title': 'The Ones That Got Away', 'display_link': 'https://www.spotify.com', 'image': 'https://cdn.theorchard.io/web-icons/totga2017.png' }, 'timeCapsule': { 'playlist_title': 'Time Capsule', 'display_link': 'https://www.spotify.com', 'image': 'https://cdn.theorchard.io/web-icons/timeCapsule.png' }, 'tastebreakers2018': { 'playlist_title': 'Tastebreakers 2018', 'display_link': 'https://www.spotify.com', 'image': 'https://cdn.theorchard.io/web-icons/tastebreakers2018.png' }, 'summerJams': { 'playlist_title': 'Summer Rewind', 'display_link': 'https://www.spotify.com/rewind/', 'image': 'https://cdn.theorchard.io/web-icons/summerJams.png' }, 'yourTopSongs2017': { 'playlist_title': 'Your Top Songs 2017', 'display_link': 'https://www.spotify.com', 'image': 'https://cdn.theorchard.io/web-icons/yourTopSongs2017.png' }, 'yourTopSongs2018': { 'playlist_title': 'Your Top Songs 2018', 'display_link': 'https://www.spotify.com', 'image': 'https://cdn.theorchard.io/web-icons/yourTopSongs2018.png' }, 'yourTopSongs2019': { 'playlist_title': 'Your Top Songs 2019', 'display_link': 'https://www.spotify.com', }, 'yourTopSongs2020': { 'playlist_title': 'Your Top Songs 2020', 'display_link': 'https://www.spotify.com', } }