Start/Resume Playback
me.player.start_playback(PlayerStartPlaybackParams**kwargs)
PUT/me/player/play
Start a new context or resume current playback on the user's active device. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.
Parameters
Start/Resume Playback
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.me.player.start_playback()