From 68cea35fdebcda3458f08409401ad107358e3d79 Mon Sep 17 00:00:00 2001 From: logykk Date: Wed, 27 Oct 2021 23:03:33 +1300 Subject: [PATCH] Updated documentation --- CHANGELOG.md | 6 ++++++ README.md | 5 +++-- zspotify/const.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f93e54e..c7001d48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ ## **Changelog:** +**v2.4 (27 Oct 20212):** +- Added realtime downloading support to avoid account suspensions. +- Fix for downloading by artist. +- Replace audio conversion method for better quality. +- Fix bug when automatically setting audio bitrate. + **v2.3 (25 Oct 2021):** - Moved changelog to seperate file. - Added argument parsing in search function (query results limit and query result types). diff --git a/README.md b/README.md index 444581cd..24bba2f5 100644 --- a/README.md +++ b/README.md @@ -74,8 +74,9 @@ Create and run a container from the image: **There have been 2-3 reports from users who received account bans from Spotify for using this tool**. -We are working on making it less likely for your account to get banned, please be patient. -We suggest you wait till this fix has been made to avoid ban, or if you are in a hurry, make sure to not use your primary account. +We recommend using ZSpotify with a burner account. +Alternatively, there is a configuration option labled ```DOWNLOAD_REAL_TIME```, this limits the download speed to the duration of the song being downloaded thus not appearing suspicious to Spotify. +This option is much slower and is only recommended for premium users who wish to download songs in 320kbps without buying premium on a burner account. **Use ZSpotify at your own risk**, the developers of ZSpotify are not responsible if your account gets banned. diff --git a/zspotify/const.py b/zspotify/const.py index 4da5d9b7..1ec7594a 100644 --- a/zspotify/const.py +++ b/zspotify/const.py @@ -130,5 +130,5 @@ CONFIG_DEFAULT_SETTINGS = { 'OVERRIDE_AUTO_WAIT': False, 'CHUNK_SIZE': 50000, 'SPLIT_ALBUM_DISCS': False, - 'DOWNLOAD_REAL_TIME': True + 'DOWNLOAD_REAL_TIME': False }