Jason Gray
Jason Gray
That's what ratings are for. If Pandora plays a song that you think doesn't fit with your station ban it and it won't play on that station. The flip side...
No need to search the playlist returns a musicId for each song it's just a mater of using that to remove and add the songs. The big question really is...
Should just be a matter of this: ``` python class Pandora: .... def add_seed(self, station_id, musicid): self.json_call('station.addMusic', {'stationToken': station_id, 'musicToken': musicid}) def remove_seed(self, station_id, musicid): self.json_call('station.deleteMusic', {'stationToken': station_id, 'musicToken': musicid})...
It would also be nice to use the musicId with an entry in the treeview right click menu to create a new station from the selected song.
In the Pandora web interface this feature is implemented like this:   They also implement the new station from song seed thing I...
My thought is to pretty much copy what Pandora is doing and make a pop out dialog. Something like this maybe? 
> I imagined it just simply being a drop down menu, I suppose that doesn't scale to hundreds of stations but I'm not sure thats a problem? I thought the...
> We could reuse parts of the station dialog as a selector. +1 That would work I bet. You'd just have to remove/not show the station you're moving the seed...
I think this would add a lot to the station management capabilities of Pithos.
@hackel, I've got a PR in for required stuff from the Pandora API standpoint. @TingPing is the UI wizard. If you want this feature included you'll have to either wait...