diff options
| author | marc <a01200356@itesm.mx> | 2017-07-21 22:17:28 -0500 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2017-07-26 15:49:16 +0200 |
| commit | 856dfc3018083d62308f18f36b50e5b0d767edf6 (patch) | |
| tree | 88aaeef52b108835db607aafe68337133a4632e7 /searx | |
| parent | 081f51db4ef057e34fc1b9934d0c0cc19427f512 (diff) | |
add google videos
Diffstat (limited to 'searx')
| -rw-r--r-- | searx/engines/google_videos.py | 83 | ||||
| -rw-r--r-- | searx/settings.yml | 4 |
2 files changed, 87 insertions, 0 deletions
diff --git a/searx/engines/google_videos.py b/searx/engines/google_videos.py new file mode 100644 index 000000000..310b31490 --- /dev/null +++ b/searx/engines/google_videos.py @@ -0,0 +1,83 @@ +""" + Google (Videos) + + @website https://www.google.com + @provide-api yes (https://developers.google.com/custom-search/) + + @using-api no + @results HTML + @stable no + @parse url, title, content +""" + +from datetime import date, timedelta +from json import loads +from lxml import html +from searx.engines.xpath import extract_text +from searx.url_utils import urlencode + + +# engine dependent config +categories = ['videos'] +paging = True +safesearch = True +time_range_support = True +number_of_results = 10 + +search_url = 'https://www.google.com/search'\ + '?{query}'\ + '&tbm=vid'\ + '&{search_options}' +time_range_attr = "qdr:{range}" +time_range_custom_attr = "cdr:1,cd_min:{start},cd_max{end}" +time_range_dict = {'day': 'd', + 'week': 'w', + 'month': 'm'} + + +# do search-request +def request(query, params): + search_options = { + 'ijn': params['pageno'] - 1, + 'start': (params['pageno'] - 1) * number_of_results + } + + if params['time_range'] in time_range_dict: + search_options['tbs'] = time_range_attr.format(range=time_range_dict[params['time_range']]) + elif params['time_range'] == 'year': + now = date.today() + then = now - timedelta(days=365) + start = then.strftime('%m/%d/%Y') + end = now.strftime('%m/%d/%Y') + search_options['tbs'] = time_range_custom_attr.format(start=start, end=end) + + if safesearch and params['safesearch']: + search_options['safe'] = 'on' + + params['url'] = search_url.format(query=urlencode({'q': query}), + search_options=urlencode(search_options)) + + return params + + +# get response from search-request +def response(resp): + results = [] + + dom = html.fromstring(resp.text) + + # parse results + for result in dom.xpath('//div[@class="g"]'): + + title = extract_text(result.xpath('.//h3/a')) + url = result.xpath('.//h3/a/@href')[0] + content = extract_text(result.xpath('.//span[@class="st"]')) + + # append result + results.append({'url': url, + 'title': title, + 'content': content, + 'thumbnail': '', + 'template': 'videos.html'}) + + return results diff --git a/searx/settings.yml b/searx/settings.yml index 17b0bd580..7eadb0816 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -266,6 +266,10 @@ engines: engine : google_news shortcut : gon + - name : google videos + engine : google_videos + shortcut : gov + - name : google scholar engine : xpath paging : True |