Spaces:
Running
Running
Update requirements
Browse files- requirements.txt +5 -2
requirements.txt
CHANGED
@@ -3,8 +3,11 @@ uvicorn[standard]
|
|
3 |
pandas
|
4 |
numpy
|
5 |
scikit-learn
|
|
|
|
|
|
|
|
|
|
|
6 |
python-dotenv # Optional, if you use environment variables
|
7 |
matplotlib # For visualizations if needed
|
8 |
-
requests # For external API calls
|
9 |
-
pillow # For image handling
|
10 |
plotly # Optional for interactive visualizations
|
|
|
3 |
pandas
|
4 |
numpy
|
5 |
scikit-learn
|
6 |
+
requests # For external API calls
|
7 |
+
yt-dlp # For downloading YouTube audio
|
8 |
+
mutagen # For audio metadata (ID3 tags)
|
9 |
+
pillow # For image handling (needed by mutagen for cover art)
|
10 |
+
# Optional below
|
11 |
python-dotenv # Optional, if you use environment variables
|
12 |
matplotlib # For visualizations if needed
|
|
|
|
|
13 |
plotly # Optional for interactive visualizations
|