A Spotify downloader needing only a python interpreter and ffmpeg.
Go to file
Footsiefat 3b00dee972
Merge pull request #115 from el-gringo-alto/generate_settings
Generate settings when running for the first time
2021-10-25 17:20:33 +13:00
.github/workflows Create pylint.yml 2021-10-24 15:35:42 +13:00
zspotify Merge pull request #115 from el-gringo-alto/generate_settings 2021-10-25 17:20:33 +13:00
.gitignore tryna fix merge conflicts the lazy way for PR #115 2021-10-25 17:20:08 +13:00
CHANGELOG.md CHANGELOG.md has been created and a link to view the CONTRIBUTING.md file has been added. 2021-10-24 14:23:26 +02:00
CONTRIBUTING.md change docker dir from src to zspotify 2021-10-25 14:59:40 +13:00
Dockerfile change docker dir from src to zspotify 2021-10-25 14:59:40 +13:00
LICENSE Licence under GPLv3 2021-10-22 20:02:45 +13:00
README.md change docker dir from src to zspotify 2021-10-25 14:59:40 +13:00
requirements.txt splitted zspotify.py file into mutiple files 2021-10-23 21:06:37 +05:30

README.md

Stars Forks Size

ZSpotify

A Spotify downloader needing only a python interpreter and ffmpeg.

Discord Server - Matrix Server - Gitea Mirror - Main Site

Requirements:

Binaries

- Python 3.9 or greater
- ffmpeg*
- Git**

Python packages:

- pip install -r requirements.txt

*ffmpeg can be installed via apt for Debian-based distros or by downloading the binaries from ffmpeg.org and placing them in your %PATH% in Windows. Mac users can install it with Homebrew by running brew install ffmpeg.

**Git can be installed via apt for Debian-based distros or by downloading the binaries from git-scm.com for Windows.

Command line usage:

Basic usage:
  python zspotify                                      Loads search prompt to find then download a specific track, album or playlist
  python zspotify <track/album/playlist/episode url>   Downloads the track, album, playlist or podcast episode specified as a command line argument
  python zspotify <artist url>                         Downloads all albums by specified artist

Extra command line options:
  -p, --playlist       Downloads a saved playlist from your account
  -ls, --liked-songs   Downloads all the liked songs from your account

Options that can be configured in zs_config.json:
  ROOT_PATH           Change this path if you don't like the default directory where ZSpotify saves the music
  ROOT_PODCAST_PATH   Change this path if you don't like the default directory where ZSpotify saves the podcasts

  SKIP_EXISTING_FILES Set this to false if you want ZSpotify to overwrite files with the same name rather than skipping the song

  MUSIC_FORMAT        Can be "mp3" or "ogg", mp3 is required for track metadata however ogg is slightly higher quality as it is not transcoded.

  FORCE_PREMIUM       Set this to true if ZSpotify isn't automatically detecting that you are using a premium account

  ANTI_BAN_WAIT_TIME  Change this setting if the time waited between bulk downloads is too high or low
  OVERRIDE_AUTO_WAIT  Change this to true if you want to completely disable the wait between songs for faster downloads with the risk of instability

Docker Usage

Build the docker image from the Dockerfile:
  docker build -t zspotify .
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

Will my account get banned if I use this tool?

Currently no user has reported their account getting banned after using ZSpotify. This isn't to say you won't get banned as it is technically against Spotify's TOS. Use ZSpotify at your own risk, the developers of ZSpotify are not responsible if your account gets banned.

What do I do if I see "Your session has been terminated"?

If you see this, don't worry! Just try logging back in. If you see the incorrect username or password error, reset your password and you should be able to log back in and continue using Spotify.

Contributing

Please refer to CONTRIBUTING

Changelog

Please refer to CHANGELOG