huathedev commited on
Commit
4cccc8a
·
1 Parent(s): 5554bdf

Update pages/01_Recommend_from_Song🎤.py

Browse files
pages/01_Recommend_from_Song🎤.py CHANGED
@@ -28,6 +28,7 @@ Input a song title and the app will return recommendations as well as the featur
28
 
29
  Data is obtained using the Python library [Spotipy](https://spotipy.readthedocs.io/en/2.18.0/) that uses [Spotify Web API.](https://developer.spotify.com/documentation/web-api/)
30
 
 
31
  """
32
  song = st.text_input("Enter a song title", value="Somebody Else")
33
  search = sp.search(q="track:" + song, type="track")
 
28
 
29
  Data is obtained using the Python library [Spotipy](https://spotipy.readthedocs.io/en/2.18.0/) that uses [Spotify Web API.](https://developer.spotify.com/documentation/web-api/)
30
 
31
+ Update: I am having issues with the Spotify API when hosting the app here on HuggingFace Spaces. To see this page working, check out the updated app on [Streamlit Cloud](https://huayuansong-findsong-introduction-48cdz6.streamlit.app/Recommend_from_Song%F0%9F%8E%A4)
32
  """
33
  song = st.text_input("Enter a song title", value="Somebody Else")
34
  search = sp.search(q="track:" + song, type="track")