mirror of
				https://github.com/searxng/searxng.git
				synced 2025-11-04 03:27:06 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			951 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			951 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):
 | 
						|
    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
 |