diff options
| author | liimee <70614549+liimee@users.noreply.github.com> | 2022-08-07 14:57:10 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-07 14:57:10 +0700 |
| commit | 8c318562e236613bdef3c4e058a2223f139cb9bb (patch) | |
| tree | c5342c466e219f367a07ef678fb57c1206d26dd8 /searx/engines/wttr.py | |
| parent | 8aa018db95d3597ca7bf861fd3abd09f8f114349 (diff) | |
add description and wikidata ID to wttr.in engine
Diffstat (limited to 'searx/engines/wttr.py')
| -rw-r--r-- | searx/engines/wttr.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/engines/wttr.py b/searx/engines/wttr.py index fd80c6db7..3c7b0927d 100644 --- a/searx/engines/wttr.py +++ b/searx/engines/wttr.py @@ -1,6 +1,6 @@ # SPDX-License-Identifier: AGPL-3.0-or-later # lint: pylint -"""wttr.in""" +"""wttr.in (weather forecast service)""" from json import loads from urllib.parse import quote @@ -8,7 +8,7 @@ from flask_babel import gettext about = { "website": "https://wttr.in", - "wikidata_id": None, + "wikidata_id": "Q107586666", "official_api_documentation": "https://github.com/chubin/wttr.in#json-output", "use_official_api": True, "require_api_key": False, |