a simple proof of concept, work in progress FastAPI application with a React frontend based on an idea by one of my friends.
- Allows the user to search the MusixMatch API for a list of songs that contain the certain word(s) in their lyrics
- Allow the user to add a Spotify playlist featuring those songs into their account
- Clone the repository
- Install the dependencies
$ pip install -r requirements.txt
$ pip install virtualenv
$ virtualenv venv
$ .\venv\Scripts\activate.bat
$ source env/bin/activate
- Populate the .env file
# the API key you've acquired from MusixMatch
MUSIXMATCH_APIKEY=
$ hypercorn main:app
$ cd lyricsearch
$ npm start