from apollo_messages_views.constants.base import EventType MESSAGE_TYPE_TO_TOPIC = { EventType.TOP_CHART_ENTRY.value: "chart_additions", EventType.TOP_CHART_EXIT.value: "chart_removals", EventType.TOP_CHART_MOVE.value: "chart_major_moves", EventType.TOP_PLAYLIST_ENTRY.value: "playlist_additions", EventType.STARRED_PLAYLIST_ENTRY.value: "starred_playlist_additions", EventType.STARRED_PLAYLIST_UPDATE.value: "playlist_update", EventType.TOP_PLAYLIST_EXIT.value: "playlist_removals", EventType.STARRED_PLAYLIST_EXIT.value: "starred_playlist_removals", EventType.TOP_PLAYLIST_MAJOR_MOVE.value: "playlist_major_moves", EventType.STARRED_PLAYLIST_MAJOR_MOVE.value: "starred_playlist_major_moves", EventType.TOP_CHART_UPDATE.value: "chart_update" }