diff options
author | Marc Abonce Seguin <marc-abonce@mailbox.org> | 2021-02-25 23:49:15 -0700 |
---|---|---|
committer | Marc Abonce Seguin <marc-abonce@mailbox.org> | 2021-02-25 23:54:21 -0700 |
commit | d6681fd33b31cd058f2ff15e035828251773acae (patch) | |
tree | 2269e9f26ae3423fe32ec8426a50a4e35ebce4f5 | |
parent | 9b6ffed061570e2540e219d66e5100a1572c07c8 (diff) | |
download | searxng-d6681fd33b31cd058f2ff15e035828251773acae.tar.gz searxng-d6681fd33b31cd058f2ff15e035828251773acae.zip |
remove articles number from engines_languages.json
-rw-r--r-- | searx/engines/wikipedia.py | 2 | ||||
-rw-r--r-- | utils/fetch_languages.py | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/searx/engines/wikipedia.py b/searx/engines/wikipedia.py index 2adfefa69..da867c81e 100644 --- a/searx/engines/wikipedia.py +++ b/searx/engines/wikipedia.py @@ -106,6 +106,6 @@ def _fetch_supported_languages(resp): articles = int(td[4].xpath('./a/b')[0].text.replace(',', '')) # exclude languages with too few articles if articles >= 100: - supported_languages[code] = {"name": name, "english_name": english_name, "articles": articles} + supported_languages[code] = {"name": name, "english_name": english_name} return supported_languages diff --git a/utils/fetch_languages.py b/utils/fetch_languages.py index 453693136..582e0ae00 100644 --- a/utils/fetch_languages.py +++ b/utils/fetch_languages.py @@ -2,8 +2,7 @@ # This script generates languages.py from intersecting each engine's supported languages. # -# Output files (engines_languages.json and languages.py) -# are written in current directory to avoid overwriting in case something goes wrong. +# Output files: searx/data/engines_languages.json and searx/languages.py import json from pathlib import Path |