Merge pull request #202 from lorenzofar/master

Added recently played endpoint
This commit is contained in:
Paul Lamere 2017-09-17 11:34:55 -04:00 committed by GitHub
commit cd6475f65c
1 changed files with 8 additions and 0 deletions

View File

@ -673,6 +673,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.