Selaa lähdekoodia

[enh] add instant answers to google engine

Adam Tauber 8 vuotta sitten
vanhempi
commit
0d4da30c7f
1 muutettua tiedostoa jossa 4 lisäystä ja 0 poistoa
  1. 4
    0
      searx/engines/google.py

+ 4
- 0
searx/engines/google.py Näytä tiedosto

217
     # convert the text to dom
217
     # convert the text to dom
218
     dom = html.fromstring(resp.text)
218
     dom = html.fromstring(resp.text)
219
 
219
 
220
+    instant_answer = dom.xpath('//div[@id="_vBb"]//text()')
221
+    if instant_answer:
222
+        results.append({'answer': u' '.join(instant_answer)})
223
+
220
     # parse results
224
     # parse results
221
     for result in dom.xpath(results_xpath):
225
     for result in dom.xpath(results_xpath):
222
         try:
226
         try: