通常,spotipy
需要跟踪ID作为要传递的参数,以便返回曲目名称。
说我有两个列表,不从Spotify API获得:
艺术家
[u'Moses Sumney', u'Cherry Glazerr', u'Danny Brown', u'NxWorries']
和他们各自的歌曲:
轨道
[u'Lonely World', u"Told You I'd Be With the Guys", u'Really Doe [ft. Kendrick Lamar, Ab-Soul, and Earl Sweatshirt]', u'Lyk Dis']
是否有可能以相反的方式进行并获取跟踪ID?
答案 0 :(得分:6)
Spotipy.search()就是你要找的。 p>
import spotipy
sp = spotipy.Spotify()
artist= 'Moses Sumney'
track= 'Lonely World'
track_id = sp.search(q='artist:' + artist + ' track:' + track, type='track')
这将返回与查询匹配的歌曲列表,具体取决于搜索的精确程度取决于返回的结果数量。