diff options
author | Markus Heiser <markus.heiser@darmarIT.de> | 2022-09-02 14:09:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-02 14:09:22 +0200 |
commit | 8e9fb0b43582aa41123dd0ff64ff5088ce0ec4c9 (patch) | |
tree | b71b5b5f2d20b8cb0731d9139f86381b282fc0ae /searx | |
parent | ea61d6ed12dcf55e370ff77d3b23da37a2cb6373 (diff) | |
parent | d4acbcfe63180780c6f0a0ad668710a3dd28913f (diff) | |
download | searxng-8e9fb0b43582aa41123dd0ff64ff5088ce0ec4c9.tar.gz searxng-8e9fb0b43582aa41123dd0ff64ff5088ce0ec4c9.zip |
Merge pull request #1647 from return42/deepl-engine
[mod] add deepl translation engine
Diffstat (limited to 'searx')
-rw-r--r-- | searx/engines/deepl.py | 62 | ||||
-rw-r--r-- | searx/settings.yml | 9 |
2 files changed, 71 insertions, 0 deletions
diff --git a/searx/engines/deepl.py b/searx/engines/deepl.py new file mode 100644 index 000000000..85072710f --- /dev/null +++ b/searx/engines/deepl.py @@ -0,0 +1,62 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +# lint: pylint +"""Deepl translation engine""" + +from json import loads + +about = { + "website": 'https://deepl.com', + "wikidata_id": 'Q43968444', + "official_api_documentation": 'https://www.deepl.com/docs-api', + "use_official_api": True, + "require_api_key": True, + "results": 'JSON', +} + +engine_type = 'online_dictionary' +categories = ['general'] + +url = 'https://api-free.deepl.com/v2/translate' +api_key = None + + +def request(_query, params): + '''pre-request callback + + params<dict>: + + - ``method`` : POST/GET + - ``headers``: {} + - ``data``: {} # if method == POST + - ``url``: '' + - ``category``: 'search category' + - ``pageno``: 1 # number of the requested page + ''' + + params['url'] = url + params['method'] = 'POST' + params['data'] = {'auth_key': api_key, 'text': params['query'], 'target_lang': params['to_lang'][1]} + + return params + + +def response(resp): + results = [] + result = loads(resp.text) + translations = result['translations'] + + infobox = "<dl>" + + for translation in translations: + infobox += f"<dd>{translation['text']}</dd>" + + infobox += "</dl>" + + results.append( + { + 'infobox': 'Deepl', + 'content': infobox, + } + ) + + return results diff --git a/searx/settings.yml b/searx/settings.yml index 55b95a601..416450d9b 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -1684,6 +1684,15 @@ engines: engine: seznam disabled: true + # - name: deepl + # engine: deepl + # shortcut: dpl + # # You can use the engine using the official stable API, but you need an API key + # # See: https://www.deepl.com/pro-api?cta=header-pro-api + # api_key: '' # required! + # timeout: 5.0 + # disabled: true + - name: mojeek shortcut: mjk engine: xpath |