python-scripts/scripts/Lyrics Scraper/LyricsScraper.py
2022-10-14 23:43:07 +03:00

22 lines
654 B
Python

import requests
from bs4 import BeautifulSoup
def get_lyrics(artist, song):
song_url = 'http://www.azlyrics.com/lyrics/' + artist + '/' + song + '.html'
response = requests.get(song_url)
soup = BeautifulSoup(response.content, 'html.parser')
try:
lyrics = soup.find(
'div', class_='col-xs-12 col-lg-8 text-center').find_all('div')[5].text
print(lyrics)
except AttributeError:
print("Please make sure you have entered the correct name!")
artist = input("Enter the name of the artist/band: ").strip().lower()
song = input("Enter the name of the song: ").strip().lower()
get_lyrics(artist, song)