mirror of
https://github.com/THIS-IS-NOT-A-BACKUP/zspotify.git
synced 2024-11-26 09:53:17 +01:00
Merge pull request #81 from jaredrossberg/main
Reprompt when no input given
This commit is contained in:
commit
d637942d23
@ -61,7 +61,9 @@ def client() -> None:
|
||||
download_episode(episode)
|
||||
|
||||
else:
|
||||
search_text = input('Enter search or URL: ')
|
||||
search_text = ''
|
||||
while len(search_text) == 0:
|
||||
search_text = input('Enter search or URL: ')
|
||||
|
||||
track_id, album_id, playlist_id, episode_id, show_id, artist_id = regex_input_for_urls(search_text)
|
||||
|
||||
@ -149,7 +151,9 @@ def search(search_term):
|
||||
if len(tracks) + len(albums) + len(playlists) == 0:
|
||||
print('NO RESULTS FOUND - EXITING...')
|
||||
else:
|
||||
selection = str(input('SELECT ITEM(S) BY S.NO: '))
|
||||
selection = ''
|
||||
while len(selection) == 0:
|
||||
selection = str(input('SELECT ITEM(S) BY S.NO: '))
|
||||
inputs = split_input(selection)
|
||||
for pos in inputs:
|
||||
position = int(pos)
|
||||
|
@ -43,7 +43,9 @@ class ZSpotify:
|
||||
except RuntimeError:
|
||||
pass
|
||||
while True:
|
||||
user_name = input('Username: ')
|
||||
user_name = ''
|
||||
while len(user_name) == 0:
|
||||
user_name = input('Username: ')
|
||||
password = getpass()
|
||||
try:
|
||||
cls.SESSION = Session.Builder().user_pass(user_name, password).create()
|
||||
|
Loading…
Reference in New Issue
Block a user