from enum import Enum class Provider(Enum): Spotify = 'Spotify' YouTube = 'YouTube' Name = 'Track Name' Unknown = 'Unknown'