Created
June 20, 2015 09:50
-
-
Save plamere/2fa839150815f040450d to your computer and use it in GitHub Desktop.
An example of using PBL to create a cynical radio station where every 4th song is by Sia or Katy Perry
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pbl import * | |
gold = Concatenate([ArtistTopTracks('Sia'), ArtistTopTracks('Katy Perry')]) | |
norm = PlaylistSource("Today's Top Hits") | |
radio = Alternate([norm, norm, norm, Shuffler(gold)]) | |
radio = PlaylistSave(radio, 'cynical radio', 'plamere', max_size=40) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment