我正在使用numpy和Spotipy来检索我的播放列表。这是我有问题的代码
def get_features_for_playlist(uri):
playlist_id = uri.split(':')[2]
results = sp.user_playlist(username, playlist_id)
它不断给我错误
NameError: name 'sp' is not defined
有人可以帮帮我吗。我尝试搜索详细文档,但显示的是我在此处使用的相同代码。
最佳答案
确保您写:
sp = spotipy.Spotify()