mirror of https://github.com/searxng/searxng.git
32 lines
971 B
Python
32 lines
971 B
Python
from json import loads
|
|
from urllib import urlencode
|
|
|
|
categories = ['music']
|
|
|
|
guest_client_id = 'b45b1aa10f1ac2941910a7f0d10f8e28'
|
|
url = 'https://api.soundcloud.com/'
|
|
search_url = url + 'search?{query}&facet=model&limit=20&offset={offset}&linked_partitioning=1&client_id='+guest_client_id # noqa
|
|
|
|
paging = True
|
|
|
|
|
|
def request(query, params):
|
|
offset = (params['pageno'] - 1) * 20
|
|
params['url'] = search_url.format(query=urlencode({'q': query}),
|
|
offset=offset)
|
|
return params
|
|
|
|
|
|
def response(resp):
|
|
global base_url
|
|
results = []
|
|
search_res = loads(resp.text)
|
|
for result in search_res.get('collection', []):
|
|
if result['kind'] in ('track', 'playlist'):
|
|
title = result['title']
|
|
content = result['description']
|
|
results.append({'url': result['permalink_url'],
|
|
'title': title,
|
|
'content': content})
|
|
return results
|