""" Application constants """ APP_NAME: str = "spotify_playlists_additions_notifications" VENDOR_NAME: str = 'spotify' ENV_PROD: str = 'prod' ENV_DEV: str = 'dev' TOP_PLAYLIST_THRESHOLD: int = 250 SPOTIFY_URI_PREFIX: str = 'spotify:playlist:' SPOTIFY_TRACK_PREFIX: str = 'spotify:track:' SPOTIFY_GLOBAL_MARKET: str = 'global' APOLLO_GLOBAL_MARKET: str = '_gl' REDIS_KEY_TTL: int = 86400 # 24 hours REDIS_LOCK_TTL: int = 900 # 15 min BLACKLIST_TTL: int = 10800 # 3 hours MESSAGE_TEMPLATE = \ '🔥 {artist_name} - {track_name} has been added to {playlist_name} ' \ 'at position {position} on Spotify {country_flag}'