Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markphamm/spotify_app
https://github.com/markphamm/spotify_app
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/markphamm/spotify_app
- Owner: MarkPhamm
- License: other
- Created: 2024-04-02T14:50:43.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-05-07T14:43:40.000Z (9 months ago)
- Last Synced: 2024-05-07T23:29:08.780Z (9 months ago)
- Language: Jupyter Notebook
- Size: 7.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spotify Song Recommendation Webpage
This Flask-based web application provides song recommendations based on user preferences using the Spotify API.
## Features
- User-friendly interface to input artist and output song recommendations based on artist information.
- Utilizes the Spotify API to fetch song data and provide tailored recommendations.
- Responsive design with HTML and CSS for seamless user experience.## Prerequisites
- Python 3.x installed on your system.
- Flask library installed (`pip install Flask`).
- [Spotify Developer Account](https://developer.spotify.com/) to access the Spotify API.## Installation
1. Clone this repository to your local machine:
```bash
git clone https://github.com/MarkPhamm/spotify_app
```2. Navigate to the project directory:
```bash
cd spotify_app
```3. Create a `.env` file in the project directory and add your Spotify API credentials:
```
CLIENT_ID=your_client_id
CLIENT_SECRET=your_client_secret
```Replace `your_client_id` and `your_client_secret` with your actual Spotify API credentials obtained from your Spotify Developer Account.
4. Install the required dependencies:
```bash
pip install -r requirements.txt
```5. Run the Flask server:
```bash
python app.py
```