Spaces:
Runtime error
Runtime error
DataNerd2021
commited on
Commit
•
f813921
1
Parent(s):
6befa81
add requirements file
Browse files- app.py +1 -4
- requirements.txt +4 -0
app.py
CHANGED
@@ -198,10 +198,7 @@ with st.expander('Song Recommendations'):
|
|
198 |
result_df = result_df.reset_index()
|
199 |
final_df = final_df.reset_index()
|
200 |
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
# create new field to calculate likeness for song metrics
|
206 |
|
207 |
final_df['acousticness'] = round(final_df['acousticness'].astype(float), 3)
|
|
|
198 |
result_df = result_df.reset_index()
|
199 |
final_df = final_df.reset_index()
|
200 |
|
201 |
+
|
|
|
|
|
|
|
202 |
# create new field to calculate likeness for song metrics
|
203 |
|
204 |
final_df['acousticness'] = round(final_df['acousticness'].astype(float), 3)
|
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
plotly
|
2 |
+
pandas
|
3 |
+
streamlit
|
4 |
+
spotipy
|