mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 09:13:53 +00:00
* Fixed scripts in examples directory that didn't work, deleted any redundant examples. * Added examples for methods related to audiobooks, shows and episodes * Updated changelog --------- Co-authored-by: Stéphane Bruckert <stephane.bruckert@gmail.com>
22 lines
461 B
Python
22 lines
461 B
Python
# Replaces all tracks in a playlist
|
|
|
|
import pprint
|
|
import sys
|
|
|
|
import spotipy
|
|
from spotipy.oauth2 import SpotifyOAuth
|
|
|
|
if len(sys.argv) > 2:
|
|
playlist_id = sys.argv[1]
|
|
track_ids = sys.argv[2:]
|
|
else:
|
|
print(f"Usage: {sys.argv[0]} playlist_id track_id ...")
|
|
sys.exit()
|
|
|
|
scope = 'playlist-modify-public'
|
|
|
|
sp = spotipy.Spotify(auth_manager=SpotifyOAuth(scope=scope))
|
|
|
|
results = sp.playlist_replace_items(playlist_id, track_ids)
|
|
pprint.pprint(results)
|