-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsp_utils.py
86 lines (67 loc) · 2.68 KB
/
sp_utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import os
import spotipy
from utils import chunkated
def authorize_spotify(username=None):
if not username:
username = os.environ["SPOTIFY_USERNAME"]
client_id = os.environ["SPOTIFY_CLIENT_ID"]
client_secret = os.environ["SPOTIFY_CLIENT_SECRET"]
redirect_uri = os.environ["SPOTIFY_REDIRECT_URI"]
scopes = [
"playlist-read-private",
"playlist-read-collaborative",
"playlist-modify-public",
"playlist-modify-private",
"user-library-read",
]
token = spotipy.util.prompt_for_user_token(
username=username,
scope=" ".join(scopes),
client_id=client_id,
client_secret=client_secret,
redirect_uri=redirect_uri,
)
return token, username
def get_playlist_tracks(sp, playlist_id, fields):
"""Get the tracks from a playlist.
Args:
sp (spotipy.Spotify): the Spotify session.
playlist_id (str): the playlist id to get the tracks from.
fields (str): the data fields that will be fetched for each track.
Returns:
list[dict]: list of tracks with all their data fields.
"""
all_tracks = []
count = 0
while True:
tracks = sp.playlist_tracks(
playlist_id=playlist_id, limit=100, offset=count, fields=f"{fields},total"
)
all_tracks.extend(tracks["items"])
count += len(tracks["items"])
total = tracks["total"]
if count >= total:
break
return all_tracks
def add_tracks(sp, username, playlist_id, track_ids):
"""Add a list of tracks to a specified playlist. The user must have edit access to that playlist.
Args:
sp (spotipy.Spotify): spotipy.Spotify session.
username (str): the username of the owner of the playlist to which the tracks will be added.
playlist_id (str): the id of the playlist to which the tracks will be added.
track_ids (list[str]): the list of track ids that will be added to the playlist.
"""
CHUNK_SIZE = 100
for ids_chunks in chunkated(track_ids, CHUNK_SIZE):
sp.user_playlist_add_tracks(username, playlist_id, ids_chunks)
def delete_tracks(sp, playlist_id, tracks):
"""Remove tracks from a playlist. The user must have edit access to that playlist.
Args:
sp (spotipy.Spotify): spotipy.Spotify session.
playlist_id (str): id of the playlist from which the tracks will be deleted.
tracks (list[str]): list of track ids that will be deleted from the playlist.
"""
track_ids = [*set([t["track"]["id"] for t in tracks])]
CHUNK_SIZE = 100
for ids_chunk in chunkated(track_ids, CHUNK_SIZE):
sp.playlist_remove_all_occurrences_of_items(playlist_id, ids_chunk)