""" Application constants """ APPLE_MUSIC_SERVICE: int = 6 APP_NAME: str = "apple_playlists_additions_notifications" VENDOR_NAME: str = 'apple' ENV_PROD: str = 'prod' ENV_DEV: str = 'dev' TOP_PLAYLIST_THRESHOLD: int = 250 APOLLO_GLOBAL_MARKET: str = '_gl' GLOBAL_MARKET: str = 'global' GLOBAL_MARKET_ID: int = 14 US_MARKET: str = 'us' US_MARKET_ID: int = 4 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 Apple Music {country_flag}'