0

这有点奇怪。我尝试了 readthedocs 中的一种方法,但它只是说存在属性错误。

AttributeError: 'Spotify' object has no attribute 'devices'

代码如下:

import spotipy.util as util 
import spotipy
(token left out for security reasons)
sp = spotipy.client.Spotify(auth=token)
sp.trace = True
sp.trace_out = True

print(sp.devices())
4

1 回答 1

1

这很奇怪。

原来是pip安装的版本,虽然说是最新版本,其实不是。

从 Github 下载最新版本,并将其放在我的项目工作区中。效果很好!

于 2017-09-26T10:32:25.013 回答