.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
wordnik.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2"""Wordnik (general)
3
4"""
5
6from lxml.html import fromstring
7from searx.utils import extract_text
8from searx.network import raise_for_httperror
9
10# about
11about = {
12 "website": 'https://www.wordnik.com',
13 "wikidata_id": 'Q8034401',
14 "official_api_documentation": None,
15 "use_official_api": False,
16 "require_api_key": False,
17 "results": 'HTML',
18}
19
20categories = ['general']
21paging = False
22
23
24def request(query, params):
25 params['url'] = f"https://www.wordnik.com/words/{query}"
26 return params
27
28
29def response(resp):
30 results = []
31
32 raise_for_httperror(resp)
33 dom = fromstring(resp.text)
34 word = extract_text(dom.xpath('//*[@id="headword"]/text()'))
35
36 definitions = []
37 for src in dom.xpath('//*[@id="define"]//h3[@class="source"]'):
38 src_text = extract_text(src).strip()
39 if src_text.startswith('from '):
40 src_text = src_text[5:]
41
42 src_defs = []
43 for def_item in src.xpath('following-sibling::ul[1]/li'):
44 def_abbr = extract_text(def_item.xpath('.//abbr')).strip()
45 def_text = extract_text(def_item).strip()
46 if def_abbr:
47 def_text = def_text[len(def_abbr) :].strip()
48 src_defs.append((def_abbr, def_text))
49
50 definitions.append((src_text, src_defs))
51
52 if not definitions:
53 return results
54
55 infobox = ''
56 for src_text, src_defs in definitions:
57 infobox += f"<small>{src_text}</small>"
58 infobox += "<ul>"
59 for def_abbr, def_text in src_defs:
60 if def_abbr:
61 def_abbr += ": "
62 infobox += f"<li><i>{def_abbr}</i> {def_text}</li>"
63 infobox += "</ul>"
64
65 results.append(
66 {
67 'infobox': word,
68 'content': infobox,
69 }
70 )
71
72 return results
request(query, params)
Definition wordnik.py:24