diff options
| author | Noémi Ványi <kvch@users.noreply.github.com> | 2020-10-28 22:36:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-28 22:36:29 +0100 |
| commit | 10ddd421f22c993a8cd3f4a02798dc3335c59709 (patch) | |
| tree | 18acb415e3394a91e01ccbae1d757504792729b9 /searx/data/__init__.py | |
| parent | d3d50eff665f03c16adcb26a774b25b4fd5ade08 (diff) | |
| parent | 95bd6033fad53b584ae5be54f2229a6edfb5b6a2 (diff) | |
Merge pull request #2224 from dalf/update-infobox-engines
[enh] update infobox engines
Diffstat (limited to 'searx/data/__init__.py')
| -rw-r--r-- | searx/data/__init__.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/searx/data/__init__.py b/searx/data/__init__.py index 1116e5d47..55a254b13 100644 --- a/searx/data/__init__.py +++ b/searx/data/__init__.py @@ -2,7 +2,8 @@ import json from pathlib import Path -__init__ = ['ENGINES_LANGUGAGES', 'CURRENCIES', 'USER_AGENTS', 'bangs_loader', 'ahmia_blacklist_loader'] +__init__ = ['ENGINES_LANGUGAGES', 'CURRENCIES', 'USER_AGENTS', 'EXTERNAL_URLS', 'WIKIDATA_UNITS', + 'bangs_loader', 'ahmia_blacklist_loader'] data_dir = Path(__file__).parent @@ -24,3 +25,5 @@ def ahmia_blacklist_loader(): ENGINES_LANGUAGES = load('engines_languages.json') CURRENCIES = load('currencies.json') USER_AGENTS = load('useragents.json') +EXTERNAL_URLS = load('external_urls.json') +WIKIDATA_UNITS = load('wikidata_units.json') |