logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 52a817f5c1e8727d9244abb156368d3cbcc0f264
parent: fd730ebcad436ded8720d5ee25b575e39eeb05f4
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Sat, 29 Mar 2014 16:38:45 +0100

[fix] pep8

Diffstat:

Msearx/engines/duckduckgo.py3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/searx/engines/duckduckgo.py b/searx/engines/duckduckgo.py @@ -5,6 +5,7 @@ from searx.utils import html_to_text url = 'https://duckduckgo.com/html?{query}&s={offset}' locale = 'us-en' + def request(query, params): offset = (params['pageno'] - 1) * 30 q = urlencode({'q': query, @@ -14,7 +15,7 @@ def request(query, params): def response(resp): - result_xpath = '//div[@class="results_links results_links_deep web-result"]' + result_xpath = '//div[@class="results_links results_links_deep web-result"]' # noqa url_xpath = './/a[@class="large"]/@href' title_xpath = './/a[@class="large"]//text()' content_xpath = './/div[@class="snippet"]//text()'