gpt4 book ai didi

python - 使用 Spotipy 库时,currently_playing 不起作用

转载 作者:行者123 更新时间:2023-12-01 09:33:49 25 4
gpt4 key购买 nike

我正在尝试使用spotipy Spotify python库访问用户当前正在播放的音乐。

import json
import spotipy
import spotipy.util as util
from spotipy.oauth2 import SpotifyClientCredentials

cid = "xxx"
csecret = "xxx"
redirectURI = "xxx"
username = "xxx"

client_credentials_manager = SpotifyClientCredentials(client_id=cid, client_secret=csecret)
sp = spotipy.Spotify(client_credentials_manager=client_credentials_manager)

scope = 'user-read-currently-playing'
token = util.prompt_for_user_token(username, scope, cid, csecret, redirectURI)

if token:
sp = spotipy.Spotify(auth=token)
else:
print("Can't get token for", username)

current_track = sp.current_user_playing_track()
print(json.dumps(current_track, sort_keys=False, indent=4))

我还尝试过使用sp.currently_playing()。我可以访问其他数据,例如 sp.current_user_saved_tracks(limit=3, offset=0)。使用我目前拥有的,它总是错误地说AttributeError:“Spotify”对象没有属性“current_user_playing_track”。我已经探索过使用 Node,但我真的想坚持使用 Python。

最佳答案

您正在尝试使用最新发布版本中尚未包含的功能。

您可以看到on PyPI当前版本于 2017 年 1 月 5 日发布,但您可以看到 on Github您要调用的函数是在 2017 年 5 月 13 日添加的。

Issue #270Issue #211都询问何时将新版本推送到 PyPI(此外,版本编号存在一些奇怪的问题。)

无论如何,正如 #211 所说:

If you're running into issues still, you can install the package directly from the github repo.

pip install git+https://github.com/plamere/spotipy.git --upgrade

关于python - 使用 Spotipy 库时,currently_playing 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49712100/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com