mirror of
				https://github.com/searxng/searxng.git
				synced 2025-10-30 18:22:31 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| ## Mixcloud (Music)
 | |
| #
 | |
| # @website     https://http://www.mixcloud.com/
 | |
| # @provide-api yes (http://www.mixcloud.com/developers/
 | |
| #
 | |
| # @using-api   yes
 | |
| # @results     JSON
 | |
| # @stable      yes
 | |
| # @parse       url, title, content, embedded, publishedDate
 | |
| 
 | |
| from json import loads
 | |
| from urllib import urlencode
 | |
| from dateutil import parser
 | |
| 
 | |
| # engine dependent config
 | |
| categories = ['music']
 | |
| paging = True
 | |
| 
 | |
| # search-url
 | |
| url = 'http://api.mixcloud.com/'
 | |
| search_url = url + 'search/?{query}&type=cloudcast&limit=10&offset={offset}'
 | |
| 
 | |
| embedded_url = '<iframe scrolling="no" frameborder="0" allowTransparency="true" ' +\
 | |
|     'data-src="https://www.mixcloud.com/widget/iframe/?feed={url}" width="300" height="300"></iframe>'
 | |
| 
 | |
| 
 | |
| # do search-request
 | |
| def request(query, params):
 | |
|     offset = (params['pageno'] - 1) * 10
 | |
| 
 | |
|     params['url'] = search_url.format(query=urlencode({'q': query}),
 | |
|                                       offset=offset)
 | |
| 
 | |
|     return params
 | |
| 
 | |
| 
 | |
| # get response from search-request
 | |
| def response(resp):
 | |
|     results = []
 | |
| 
 | |
|     search_res = loads(resp.text)
 | |
| 
 | |
|     # parse results
 | |
|     for result in search_res.get('data', []):
 | |
|         title = result['name']
 | |
|         url = result['url']
 | |
|         content = result['user']['name']
 | |
|         embedded = embedded_url.format(url=url)
 | |
|         publishedDate = parser.parse(result['created_time'])
 | |
| 
 | |
|         # append result
 | |
|         results.append({'url': url,
 | |
|                         'title': title,
 | |
|                         'embedded': embedded,
 | |
|                         'publishedDate': publishedDate,
 | |
|                         'content': content})
 | |
| 
 | |
|     # return results
 | |
|     return results
 |