#!/usr/bin/env python3 import azl import letras while True: web = '' val = '' artist = input('Name of the artist/band: ') title = input('Name of the song: ') song_url = azl.getLink(artist, title) un_lyr = azl.getLyrics(song_url) fin = azl.parsero(un_lyr) if fin == '
': fin = "Sorry I couldn't find that song :(" print('\n<------------------------------------------------------------->') if fin != "Sorry I couldn't find that song :(": print(fin) else: song_url = letras.getLink(artist, title) un_lyr = letras.getLyrics(song_url) fin = letras.parsero(un_lyr) letra = fin.split('©', 1) fin_lyr = letra[0] l = fin_lyr.split('\n') for x in l: if len(x) > 0: if x[0] == ' ': x = x.replace(' ', '\n', 1) print(x) while True: print('<------------------------------------------------------------->') res = input("What's the move? (s to search for another song/q to quit): ") if res == 's' or res == 'q': val = res break else: print("what's wrong w u mate?") continue if val == 's': continue elif val == 'q': print('see u') break else: print('SOMETHING WENT HORRIBLY WRONG GOTTA GO') break