Results 41 comments of Tim Rae

I wrote some code for this in my repo [spotify-to-tidal](https://github.com/spotify2tidal/spotify_to_tidal): ```python def _remove_indices_from_playlist(playlist: tidalapi.UserPlaylist, indices: List[int]): headers = {'If-None-Match': playlist._etag} index_string = ",".join(map(str, indices)) playlist.request.request('DELETE', (playlist._base_url + '/items/%s') % (playlist.id,...