logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 7b6e5b5d144df8e9a9ac0deda09b95fc0293fef5
parent: 565db911a4ab98227d7d04f57974ffffa8bef402
Author: asciimoo <asciimoo@gmail.com>
Date:   Sun, 20 Oct 2013 00:52:32 +0200

[enh] soundcloud playlists

Diffstat:

Msearx/engines/soundcloud.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/searx/engines/soundcloud.py b/searx/engines/soundcloud.py @@ -16,7 +16,7 @@ def response(resp): results = [] search_res = loads(resp.text) for result in search_res.get('collection', []): - if result['kind'] == 'track': + if result['kind'] in ('track', 'playlist'): title = result['title'] content = result['description'] results.append({'url': result['permalink_url'], 'title': title, 'content': content})