simple_backend.py
0 → 100644
+58
−0
Loading
This commit introduces a minimal Flask backend that: - Reads song data from a specified CSV file on startup. - Generates a unique ID for each song. - Converts song attributes (TITLE, ARTIST, GENRE, YEAR) to a structured format. - Exposes all song data via a GET request to the '/api/songs' endpoint as JSON. - Includes basic error handling for file not found and CSV processing issues.