Reprompt when no input given

This commit is contained in:
Jared Rossberg 2021-10-23 17:17:04 -06:00
parent 630752cfa6
commit 509dbb1e45
2 changed files with 9 additions and 3 deletions

View File

@ -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)

View File

@ -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()