【问题标题】:Spotipy - how do I get songs from a playlist starting at a given index?Spotipy - 如何从给定索引开始的播放列表中获取歌曲?
【发布时间】:2019-12-22 04:26:06
【问题描述】:

我已经阅读了文档中关于 offset 参数的内容;但是,我不知道如何使用它。到目前为止,这是我的代码。不幸的是,仅从播放列表中检索到前 100 首歌曲。如何更改索引以便从播放列表中检索更多歌曲?

import os, re, shutil

import spotipy
import spotipy.util as util
import time

# Parameters
username      = 'REDACTED'
client_id     = 'REDACTED'
client_secret = 'REDACTED'
redirect_uri  = 'http://localhost/'
scope         = 'user-library-read'
playlist      = '17gneMykp6L6O5R70wm0gE'


def show_tracks(tracks):
    for i, item in enumerate(tracks['items']):
        track = item['track']
        myName = re.sub('[^A-Za-z0-9\ ]+', '', track['name'])
        dirName = "/Users/pschorn/Songs/" + myName + ".app"
        if os.path.exists(dirName):
            continue
            #shutil.rmtree(dirName)
        os.mkdir(dirName)
        os.mkdir(dirName + "/Contents")
        with open(dirName + "/Contents/PkgInfo", "w+") as f:
            f.write("APPL????")
        os.mkdir(dirName + "/Contents/MacOS")
        with open(dirName + "/Contents/MacOS/" + myName, "w+") as f:
            f.write("#!/bin/bash\n")
            f.write("osascript -e \'tell application \"Spotify\" to play track \"{}\"\'".format(track['uri']))
        os.lchmod(dirName + "/Contents/MacOS/" + myName, 0o777)

        myName = re.sub('\ ', '\\ ', myName)
        # I've installed a third-party command-line utility that
        # allows me to set the icon for applications.
        # If there's a way to do this from python, let me know.
        os.system(
            '/usr/local/bin/fileicon set /Users/pschorn/Songs/' + myName + '.app /Users/pschorn/Code/PyCharmSupport/Icon.icns')





token = util.prompt_for_user_token(username, scope, client_id, client_secret, redirect_uri)

if token:
    sp = spotipy.Spotify(auth=token)
    results = sp.user_playlist(username, playlist, fields="tracks,next")
    tracks = results['tracks', offset=100]
    show_tracks(tracks)

else:
    print("Can't get token for", username)

编辑:我已经知道如何返回从给定索引开始的歌曲,而且远不止于此。您可以查看我的代码here!它检索所有用户播放列表中的所有歌曲,并为每个可以打开播放歌曲的应用程序制作一个应用程序。这样做的目的是让您可以直接从 Spotlight 搜索中播放您的 Spotify 歌曲!

【问题讨论】:

    标签: python pycharm spotipy


    【解决方案1】:

    我编写的这个自定义类扩展了 Spotipy 库提供的功能,它有一个处理偏移量的包装函数。

    def user_playlist_tracks_full(spotify, user, playlist_id=None, fields=None, market=None):
        """ Get full details of the tracks of a playlist owned by a user.
            Parameters:
                - spotify - spotipy instance
                - user - the id of the user
                - playlist_id - the id of the playlist
                - fields - which fields to return
                - market - an ISO 3166-1 alpha-2 country code.
        """
    
        # first run through also retrieves total no of songs in library
        response = spotify.user_playlist_tracks(user, playlist_id, fields=fields, limit=100, market=market)
        results = response["items"]
    
        # subsequently runs until it hits the user-defined limit or has read all songs in the library
        while len(results) < response["total"]:
            response = spotify.user_playlist_tracks(
                user, playlist_id, fields=fields, limit=100, offset=len(results), market=market
            )
            results.extend(response["items"])
    
        return results
    

    这段代码可能足以说明你必须做什么,每次循环并更改偏移量。

    完整的类是in a standalone gist that should work,在这个例子中我只是用spotify替换了self

    【讨论】:

      猜你喜欢
      • 2017-09-09
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2012-05-15
      • 1970-01-01
      • 2016-07-03
      • 1970-01-01
      • 2022-06-28
      相关资源
      最近更新 更多