| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | # Youtube (Videos) | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # @website     https://www.youtube.com/ | 
					
						
							|  |  |  | # @provide-api yes (https://developers.google.com/apis-explorer/#p/youtube/v3/youtube.search.list) | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # @using-api   no | 
					
						
							|  |  |  | # @results     HTML | 
					
						
							|  |  |  | # @stable      no | 
					
						
							|  |  |  | # @parse       url, title, content, publishedDate, thumbnail, embedded | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-27 03:33:36 +01:00
										 |  |  | from functools import reduce | 
					
						
							|  |  |  | from json import loads | 
					
						
							| 
									
										
										
										
											2020-08-06 17:42:46 +02:00
										 |  |  | from urllib.parse import quote_plus | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | # engine dependent config | 
					
						
							|  |  |  | categories = ['videos', 'music'] | 
					
						
							|  |  |  | paging = True | 
					
						
							|  |  |  | language_support = False | 
					
						
							| 
									
										
										
										
											2016-10-30 20:26:38 +01:00
										 |  |  | time_range_support = True | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | # search-url | 
					
						
							|  |  |  | base_url = 'https://www.youtube.com/results' | 
					
						
							|  |  |  | search_url = base_url + '?search_query={query}&page={page}' | 
					
						
							| 
									
										
										
										
											2016-10-30 20:26:38 +01:00
										 |  |  | time_range_url = '&sp=EgII{time_range}%253D%253D' | 
					
						
							|  |  |  | time_range_dict = {'day': 'Ag', | 
					
						
							|  |  |  |                    'week': 'Aw', | 
					
						
							| 
									
										
										
										
											2016-12-11 16:41:14 +01:00
										 |  |  |                    'month': 'BA', | 
					
						
							|  |  |  |                    'year': 'BQ'} | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | embedded_url = '<iframe width="540" height="304" ' +\ | 
					
						
							| 
									
										
										
										
											2019-07-13 07:57:10 +02:00
										 |  |  |     'data-src="https://www.youtube-nocookie.com/embed/{videoid}" ' +\ | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  |     'frameborder="0" allowfullscreen></iframe>' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | base_youtube_url = 'https://www.youtube.com/watch?v=' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-03 10:12:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | # do search-request | 
					
						
							|  |  |  | def request(query, params): | 
					
						
							|  |  |  |     params['url'] = search_url.format(query=quote_plus(query), | 
					
						
							|  |  |  |                                       page=params['pageno']) | 
					
						
							| 
									
										
										
										
											2016-10-30 20:26:38 +01:00
										 |  |  |     if params['time_range'] in time_range_dict: | 
					
						
							|  |  |  |         params['url'] += time_range_url.format(time_range=time_range_dict[params['time_range']]) | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # get response from search-request | 
					
						
							|  |  |  | def response(resp): | 
					
						
							|  |  |  |     results = [] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-27 03:33:36 +01:00
										 |  |  |     results_data = resp.text[resp.text.find('ytInitialData'):] | 
					
						
							|  |  |  |     results_data = results_data[results_data.find('{'):results_data.find(';\n')] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     results_json = loads(results_data) if results_data else {} | 
					
						
							|  |  |  |     sections = results_json.get('contents', {})\ | 
					
						
							|  |  |  |                            .get('twoColumnSearchResultsRenderer', {})\ | 
					
						
							|  |  |  |                            .get('primaryContents', {})\ | 
					
						
							|  |  |  |                            .get('sectionListRenderer', {})\ | 
					
						
							|  |  |  |                            .get('contents', []) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for section in sections: | 
					
						
							|  |  |  |         for video_container in section.get('itemSectionRenderer', {}).get('contents', []): | 
					
						
							|  |  |  |             video = video_container.get('videoRenderer', {}) | 
					
						
							|  |  |  |             videoid = video.get('videoId') | 
					
						
							|  |  |  |             if videoid is not None: | 
					
						
							|  |  |  |                 url = base_youtube_url + videoid | 
					
						
							|  |  |  |                 thumbnail = 'https://i.ytimg.com/vi/' + videoid + '/hqdefault.jpg' | 
					
						
							| 
									
										
										
										
											2019-07-31 08:39:40 +02:00
										 |  |  |                 title = get_text_from_json(video.get('title', {})) | 
					
						
							|  |  |  |                 content = get_text_from_json(video.get('descriptionSnippet', {})) | 
					
						
							| 
									
										
										
										
											2019-03-27 03:33:36 +01:00
										 |  |  |                 embedded = embedded_url.format(videoid=videoid) | 
					
						
							| 
									
										
										
										
											2020-06-09 20:31:51 +02:00
										 |  |  |                 author = get_text_from_json(video.get('ownerText', {})) | 
					
						
							|  |  |  |                 length = get_text_from_json(video.get('lengthText', {})) | 
					
						
							| 
									
										
										
										
											2019-03-27 03:33:36 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 # append result | 
					
						
							|  |  |  |                 results.append({'url': url, | 
					
						
							|  |  |  |                                 'title': title, | 
					
						
							|  |  |  |                                 'content': content, | 
					
						
							| 
									
										
										
										
											2020-06-09 20:31:51 +02:00
										 |  |  |                                 'author': author, | 
					
						
							|  |  |  |                                 'length': length, | 
					
						
							| 
									
										
										
										
											2019-03-27 03:33:36 +01:00
										 |  |  |                                 'template': 'videos.html', | 
					
						
							|  |  |  |                                 'embedded': embedded, | 
					
						
							|  |  |  |                                 'thumbnail': thumbnail}) | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # return results | 
					
						
							|  |  |  |     return results | 
					
						
							| 
									
										
										
										
											2019-07-31 08:39:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def get_text_from_json(element): | 
					
						
							|  |  |  |     if 'runs' in element: | 
					
						
							|  |  |  |         return reduce(lambda a, b: a + b.get('text', ''), element.get('runs'), '') | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         return element.get('simpleText', '') |