我正在使用 Spotipy 通过搜索歌曲标题来检索曲目。我不知道如何获取查询的 status_codes,以便我可以使我的应用程序更加安全。有任何想法吗?
这是一个代码片段:
sp = spotipy.Spotify()
results = sp.search(q=title, type='track')
#Want to check if status code of the sp.search command is 200 or something else.
#How?
trackListing = results['tracks']['items']