summaryrefslogtreecommitdiff
path: root/searx/engines/google.py
diff options
context:
space:
mode:
authorNoémi Ványi <sitbackandwait@gmail.com>2016-12-11 16:39:12 +0100
committerNoémi Ványi <sitbackandwait@gmail.com>2016-12-11 16:58:31 +0100
commitc59c76e6ee14f0417ad55ecf0f888f62f34f1f6d (patch)
treede9b8bfa3460ad3712b38132ad6c4037f7e475fd /searx/engines/google.py
parent2fc1091b7fbd76189754767e2da8315e04ca1e47 (diff)
downloadsearxng-c59c76e6ee14f0417ad55ecf0f888f62f34f1f6d.tar.gz
searxng-c59c76e6ee14f0417ad55ecf0f888f62f34f1f6d.zip
add year to time range to engines which support "Last year"
Engines: * Bing images * Flickr (noapi) * Google * Google Images * Google News
Diffstat (limited to 'searx/engines/google.py')
-rw-r--r--searx/engines/google.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/searx/engines/google.py b/searx/engines/google.py
index 0e2d522f4..a02b6940e 100644
--- a/searx/engines/google.py
+++ b/searx/engines/google.py
@@ -95,7 +95,8 @@ search_url = ('https://{hostname}' +
time_range_search = "&tbs=qdr:{range}"
time_range_dict = {'day': 'd',
'week': 'w',
- 'month': 'm'}
+ 'month': 'm',
+ 'year': 'y'}
# other URLs
map_hostname_start = 'maps.google.'