March 2018
Beginner to intermediate
422 pages
10h 33m
English
Now that we have a playlist and a Player class that can play audio, playing audio is simply about updating the current track index and calling the play method.
Accordingly, let's add an attribute, as follows (see code 5.04—view.py):
current_track_index = 0
Furthermore, the Play button should act as a toggle between the play and stop functions. The Python itertools module provides the cycle method, which is a very convenient way to toggle between two or more values.
Accordingly, import the itertools module and define a new attribute, as follows (see code 5.04—view.py):
toggle_play_stop = itertools.cycle(["play","stop"])
Now, every time we call next(toggle_play_stop), the value returned toggles between the ...
Read now
Unlock full access