An open API service indexing awesome lists of open source software.

https://github.com/prouserr/lyrics-finder

Website built with Flask and python that find lyrics based on user query or by quick selecting a track from the Hot Tracks list.
https://github.com/prouserr/lyrics-finder

beautifulsoup4 flask javascript python

Last synced: about 2 months ago
JSON representation

Website built with Flask and python that find lyrics based on user query or by quick selecting a track from the Hot Tracks list.

Awesome Lists containing this project

README

          

# Lyrics-Finder 🌐
Find your next favortie lyrics without hassle or just see what's Hot from Hot Tracks list.

# Features 🎇
1. Fetches tha latest hot tracks
2. Gets any song lyrics giving the song title and artist name
3. By clicking on a hot track you get the lyrics corresponding to that track

# Installation 💻
Clone the repo:
```sh
git clone https://github.com/PROuserR/Lyrics-Finder
```

Create a new virtual environment:
```sh
python -m venv .venv
```

Activate the virtual environment:
```sh
. .venv/Scripts/activate
```

Install the requirements:
```sh
pip install -r requirements.txt
```

# Running 🚀
To launch the website simply run the app.py script inside src directory:

```sh
python app.py
```

# More Inforamtion 📑
Check out my article where I explain how to build this website.
[Click here](https://www.codeproject.com/Tips/5369928/From-a-Few-Lines-of-Code-to-Building-a-Whole-Funct)