def PlayPause(self): if PLAYER.is_stopped(): QUEUE.play() else: PLAYER.toggle_pause()
def Play(self): QUEUE.play()