| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | ## Soundcloud (Music) | 
					
						
							| 
									
										
										
										
											2014-12-07 16:37:56 +01:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | # @website     https://soundcloud.com | 
					
						
							|  |  |  | # @provide-api yes (https://developers.soundcloud.com/) | 
					
						
							| 
									
										
										
										
											2014-12-07 16:37:56 +01:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | # @using-api   yes | 
					
						
							|  |  |  | # @results     JSON | 
					
						
							|  |  |  | # @stable      yes | 
					
						
							|  |  |  | # @parse       url, title, content | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 21:21:23 +02:00
										 |  |  | from json import loads | 
					
						
							| 
									
										
										
										
											2013-10-23 23:55:37 +02:00
										 |  |  | from urllib import urlencode | 
					
						
							| 
									
										
										
										
											2013-10-17 21:21:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | # engine dependent config | 
					
						
							| 
									
										
										
										
											2013-10-17 21:21:23 +02:00
										 |  |  | categories = ['music'] | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | paging = True | 
					
						
							| 
									
										
										
										
											2013-10-17 21:21:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | # api-key | 
					
						
							| 
									
										
										
										
											2013-10-17 21:21:23 +02:00
										 |  |  | guest_client_id = 'b45b1aa10f1ac2941910a7f0d10f8e28' | 
					
						
							| 
									
										
										
										
											2014-01-30 01:50:15 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | # search-url | 
					
						
							|  |  |  | url = 'https://api.soundcloud.com/' | 
					
						
							| 
									
										
										
										
											2014-12-16 17:26:16 +01:00
										 |  |  | search_url = url + 'search?{query}'\ | 
					
						
							|  |  |  |                          '&facet=model'\ | 
					
						
							|  |  |  |                          '&limit=20'\ | 
					
						
							|  |  |  |                          '&offset={offset}'\ | 
					
						
							|  |  |  |                          '&linked_partitioning=1'\ | 
					
						
							|  |  |  |                          '&client_id={client_id}'   # noqa | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 21:21:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | # do search-request | 
					
						
							| 
									
										
										
										
											2013-10-17 21:21:23 +02:00
										 |  |  | def request(query, params): | 
					
						
							| 
									
										
										
										
											2014-01-30 01:50:15 +01:00
										 |  |  |     offset = (params['pageno'] - 1) * 20 | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-30 01:50:15 +01:00
										 |  |  |     params['url'] = search_url.format(query=urlencode({'q': query}), | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  |                                       offset=offset, | 
					
						
							|  |  |  |                                       client_id=guest_client_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 21:21:23 +02:00
										 |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | # get response from search-request | 
					
						
							| 
									
										
										
										
											2013-10-17 21:21:23 +02:00
										 |  |  | def response(resp): | 
					
						
							|  |  |  |     results = [] | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 21:21:23 +02:00
										 |  |  |     search_res = loads(resp.text) | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # parse results | 
					
						
							| 
									
										
										
										
											2013-10-17 21:21:23 +02:00
										 |  |  |     for result in search_res.get('collection', []): | 
					
						
							| 
									
										
										
										
											2013-10-20 00:52:32 +02:00
										 |  |  |         if result['kind'] in ('track', 'playlist'): | 
					
						
							| 
									
										
										
										
											2013-10-17 21:21:23 +02:00
										 |  |  |             title = result['title'] | 
					
						
							|  |  |  |             content = result['description'] | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             # append result | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  |             results.append({'url': result['permalink_url'], | 
					
						
							|  |  |  |                             'title': title, | 
					
						
							|  |  |  |                             'content': content}) | 
					
						
							| 
									
										
										
										
											2014-09-02 18:12:30 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # return results | 
					
						
							| 
									
										
										
										
											2013-10-17 21:21:23 +02:00
										 |  |  |     return results |