From ae71e89326948517dce65dced0b080c7f98c61e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20P=C3=A9rez?= Date: Thu, 19 Feb 2015 15:01:44 +0100 Subject: [PATCH] Add 'playlist' to the search endpoint documentation --- spotipy/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spotipy/client.py b/spotipy/client.py index c783eba..685e15a 100644 --- a/spotipy/client.py +++ b/spotipy/client.py @@ -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)