commit aa0f8f3c15866450e530607a64288bf0e3dc4530 Author: Pulguer Gonzalo Date: Mon Dec 20 17:11:44 2021 -0300 first commit diff --git a/main.py b/main.py new file mode 100644 index 0000000..8a88fde --- /dev/null +++ b/main.py @@ -0,0 +1,63 @@ +from bs4 import BeautifulSoup +import requests +from requests import get +import webbrowser + +def getLink(): + artist = input('Name of the artist/band: ') + title = input('Name of the song: ') + base_start = 'https://www.azlyrics.com/lyrics/' + artist = artist.lower() + artist = artist.replace(' ', '') + artist = artist.replace('-', '') + title = title.lower() + title = title.replace(' ', '') + link = base_start + artist + '/' + title + '.html' + return(link) + +def getLyrics(link): + w = requests.get(link) + soup = BeautifulSoup(w.text, 'html.parser') + lyr = soup.find_all('div', class_=False) + let = str(lyr) + return(let) + +def parsero(lyrics): + let = lyrics + let = let.replace('
', ' ') + let = let.replace('', '') + let = let.replace('', '') + let = let.replace('
', '') + let = let.replace('
,', '') + let = let.replace('', '') + let = let.replace('
', '') + let = let.replace('
', '') + let = let.replace('
', '') + let = let.replace('', '') + return(let[1:-1]) + +while True: + song_url = getLink() + lyrics_ori = getLyrics(song_url) + fin = parsero(lyrics_ori) + print(fin) + print('\n') + vali = '' + while True: + res = input("What's the move? (s to search/q to quit): ") + try: + if res == 'q' or res == 's': + vali = res + break + else: + print("I didn't give u that option dude") + except: + print('What?') + if vali == 'q': + print('See u!') + break + elif vali == 's': + continue + else: + print('Something went wrong') + break