diff options
author | Noemi Vanyi <sitbackandwait@gmail.com> | 2016-07-18 16:09:18 +0200 |
---|---|---|
committer | Noemi Vanyi <sitbackandwait@gmail.com> | 2016-07-25 23:28:14 +0200 |
commit | 2e5839503f7a147e6759e124a3694d1e6b6631fd (patch) | |
tree | e83cb7f663a89441dadf9cceb2281f1f87445e2c /searx/engines/google.py | |
parent | 713d30400b647c55e4ff80fd6869ab6c23134240 (diff) | |
download | searxng-2e5839503f7a147e6759e124a3694d1e6b6631fd.tar.gz searxng-2e5839503f7a147e6759e124a3694d1e6b6631fd.zip |
add time range search for google
Diffstat (limited to 'searx/engines/google.py')
-rw-r--r-- | searx/engines/google.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/searx/engines/google.py b/searx/engines/google.py index fd5e7b54c..3b845cbcd 100644 --- a/searx/engines/google.py +++ b/searx/engines/google.py @@ -24,6 +24,7 @@ categories = ['general'] paging = True language_support = True use_locale_domain = True +time_range_support = True # based on https://en.wikipedia.org/wiki/List_of_Google_domains and tests default_hostname = 'www.google.com' @@ -92,6 +93,11 @@ search_url = ('https://{hostname}' + search_path + '?{query}&start={offset}&gws_rd=cr&gbv=1&lr={lang}&ei=x') +time_range_search = "&tbs=qdr:{range}" +time_range_dict = {'day': 'd', + 'week': 'w', + 'month': 'm'} + # other URLs map_hostname_start = 'maps.google.' maps_path = '/maps' @@ -179,6 +185,8 @@ def request(query, params): query=urlencode({'q': query}), hostname=google_hostname, lang=url_lang) + if params['time_range']: + params['url'] += time_range_search.format(range=time_range_dict[params['time_range']]) params['headers']['Accept-Language'] = language params['headers']['Accept'] = 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8' |