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.
- Host: GitHub
- URL: https://github.com/prouserr/lyrics-finder
- Owner: PROuserR
- Created: 2023-10-03T11:53:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-01T14:17:45.000Z (about 1 year ago)
- Last Synced: 2025-07-03T00:36:55.051Z (12 months ago)
- Topics: beautifulsoup4, flask, javascript, python
- Language: Python
- Homepage:
- Size: 1.5 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)