Merge pull request #43 from JMPerez/patch-1

Add 'playlist' to the search endpoint documentation
This commit is contained in:
Paul Lamere 2015-02-19 10:28:53 -05:00
commit 31894b8087
1 changed files with 2 additions and 2 deletions

View File

@ -264,8 +264,8 @@ class Spotify(object):
- q - the search query
- limit - the number of items to return
- offset - the index of the first item to return
- type - the type of item to return. One of 'artist', 'album'
or 'track'
- type - the type of item to return. One of 'artist', 'album',
'track' or 'playlist'
'''
return self._get('search', q=q, limit=limit, offset=offset, type=type)