summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorpiplongrun <piplongrun@users.noreply.github.com>2020-02-12 23:58:50 +0100
committerGitHub <noreply@github.com>2020-02-12 23:58:50 +0100
commitf0684a5bb5860c2b9caffefb47dc55781092819e (patch)
treef0089ffbc3db6e681343cd173cc9f97323c778e2 /searx
parent7f224713e5bfdb22b543129d9ada698b8cefd6a3 (diff)
Add eTools engine
Diffstat (limited to 'searx')
-rw-r--r--searx/engines/etools.py54
1 files changed, 54 insertions, 0 deletions
diff --git a/searx/engines/etools.py b/searx/engines/etools.py
new file mode 100644
index 000000000..a9eb0980d
--- /dev/null
+++ b/searx/engines/etools.py
@@ -0,0 +1,54 @@
+"""
+ eTools (Web)
+
+ @website https://www.etools.ch
+ @provide-api no
+ @using-api no
+ @results HTML
+ @stable no (HTML can change)
+ @parse url, title, content
+"""
+
+from lxml import html
+from searx.engines.xpath import extract_text
+from searx.url_utils import quote
+from searx.utils import eval_xpath
+
+categories = ['general']
+paging = False
+language_support = False
+safesearch = True
+
+base_url = 'https://www.etools.ch'
+search_path = '/searchAdvancedSubmit.do'\
+ '?query={search_term}'\
+ '&pageResults=20'\
+ '&safeSearch={safesearch}'
+
+
+def request(query, params):
+ if params['safesearch']:
+ safesearch = 'true'
+ else:
+ safesearch = 'false'
+
+ params['url'] = base_url + search_path.format(search_term=quote(query), safesearch=safesearch)
+
+ return params
+
+
+def response(resp):
+ results = []
+
+ dom = html.fromstring(resp.text)
+
+ for result in eval_xpath(dom, '//table[@class="result"]//td[@class="record"]'):
+ url = eval_xpath(result, './a/@href')[0]
+ title = extract_text(eval_xpath(result, './a//text()'))
+ content = extract_text(eval_xpath(result, './/div[@class="text"]//text()'))
+
+ results.append({'url': url,
+ 'title': title,
+ 'content': content})
+
+ return results