summaryrefslogtreecommitdiff
path: root/searx/engines/google.py
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2017-01-18 23:49:01 +0100
committerGitHub <noreply@github.com>2017-01-18 23:49:01 +0100
commitb1d49bacb0d6135a7c0a5a32a82681b12b1762cd (patch)
tree4c82ca611f822807beef6843770a97cce4d7d8fd /searx/engines/google.py
parent1a9f8240b851c64a10be7b8990b6f3926ca506b3 (diff)
parent1d30141c207e51c142cab3eee97783f08c1cb5c9 (diff)
Merge pull request #827 from davidar/spell
[enh] show spelling corrections
Diffstat (limited to 'searx/engines/google.py')
-rw-r--r--searx/engines/google.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/searx/engines/google.py b/searx/engines/google.py
index 2fa638d73..0fdf2d4ae 100644
--- a/searx/engines/google.py
+++ b/searx/engines/google.py
@@ -112,6 +112,7 @@ title_xpath = './/h3'
content_xpath = './/span[@class="st"]'
content_misc_xpath = './/div[@class="f slp"]'
suggestion_xpath = '//p[@class="_Bmc"]'
+spelling_suggestion_xpath = '//a[@class="spell"]'
# map : detail location
map_address_xpath = './/div[@class="s"]//table//td[2]/span/text()'
@@ -275,6 +276,9 @@ def response(resp):
# append suggestion
results.append({'suggestion': extract_text(suggestion)})
+ for correction in dom.xpath(spelling_suggestion_xpath):
+ results.append({'correction': extract_text(correction)})
+
# return results
return results