mirror of
https://github.com/c0de-archive/spotipy.git
synced 2024-11-14 02:57:27 +00:00
Added recently played endpoint
This commit is contained in:
parent
7499d8e511
commit
e1ca998b3a
@ -668,6 +668,14 @@ class Spotify(object):
|
||||
return self._get('me/top/tracks', time_range=time_range, limit=limit,
|
||||
offset=offset)
|
||||
|
||||
def current_user_recently_played(self, limit=50):
|
||||
''' Get the current user's recently played tracks
|
||||
|
||||
Parameters:
|
||||
- limit - the number of entities to return
|
||||
'''
|
||||
return self._get('me/player/recently-played', limit=limit)
|
||||
|
||||
def current_user_saved_albums_add(self, albums=[]):
|
||||
''' Add one or more albums to the current user's
|
||||
"Your Music" library.
|
||||
|
Loading…
Reference in New Issue
Block a user