mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 18:00:15 +00:00
Very brittle command-line frontend
This commit is contained in:
@@ -3,8 +3,12 @@
|
||||
# Need to confirm this and if so, remove the calls
|
||||
# to `spotify._get_id` in below methods.
|
||||
|
||||
from spotdl.authorize.services import AuthorizeSpotify
|
||||
|
||||
class SpotifyHelpers:
|
||||
def __init__(self, spotify):
|
||||
def __init__(self, spotify=None):
|
||||
if spotify is None:
|
||||
spotify = AuthorizeSpotify()
|
||||
self.spotify = spotify
|
||||
|
||||
def prompt_for_user_playlist(self, username):
|
||||
|
||||
Reference in New Issue
Block a user