Spotify-Lite 一个轻量级的,单文件,零依赖的Spotify包装器,可以轻松地将其放入任何Python 2.x或3.x项目中。 快速开始 将spotify.py复制到项目中的任何位置。 获取API包装器的实例: import spotify client_id = "my-client-id" client_secret = "top-secret" # optional but required when registering a user via authorization code flow redirect_uri = "http://localhost:1337" api = spotify . SpotifyAPI ( client_id , client_secret , redirect_uri ) 获得用户许可和完整授权: url = api . o