mirror of
https://github.com/THIS-IS-NOT-A-BACKUP/zspotify.git
synced 2024-11-29 19:24:34 +01:00
Fixed issues with playlist downloading
This commit is contained in:
parent
c11998351b
commit
31baf3feae
@ -68,6 +68,9 @@ Create and run a container from the image:
|
||||
docker run --rm -v "$PWD/ZSpotify Music:/ZSpotify Music" -v "$PWD/ZSpotify Podcasts:/ZSpotify Podcasts" -it zspotify
|
||||
```
|
||||
|
||||
### Google Colab
|
||||
There is a community maintained repo for Google Colab at [Ori5000/zspotifycolab](https://github.com/Ori5000/zspotifycolab) designed to make it easier to add songs to Google Drive or orther cloud services.
|
||||
|
||||
### Will my account get banned if I use this tool?
|
||||
|
||||
~~Currently no user has reported their account getting banned after using ZSpotify.~~
|
||||
|
@ -76,7 +76,7 @@ def download_from_user_playlist():
|
||||
playlist_choices = input('ID(s): ').split('-')
|
||||
|
||||
if len(playlist_choices) == 1:
|
||||
download_playlist(playlists, playlist_choices[0])
|
||||
download_playlist(playlists[0])
|
||||
else:
|
||||
start = int(playlist_choices[0])
|
||||
end = int(playlist_choices[1]) + 1
|
||||
|
Loading…
Reference in New Issue
Block a user