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('