Change Playlist Details
playlists.update(strplaylist_id, PlaylistUpdateParams**kwargs)
PUT/playlists/{playlist_id}
Change a playlist's name and public/private state. (The user must, of course, own the playlist.)
Parameters
Change Playlist Details
import os
from spotted import Spotted
client = Spotted(
access_token=os.environ.get("SPOTIFY_ACCESS_TOKEN"), # This is the default and can be omitted
)
client.playlists.update(
playlist_id="3cEYpjA9oz9GiPac4AsH4n",
)