diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-06-04 09:35:26 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-06-09 18:08:23 +0200 |
| commit | c75425655fdadf9554b97ae0309a6181acd34ce3 (patch) | |
| tree | 7fee6892d2a64f2c44db8cb35b079bf823991b8e /searx/data/__init__.py | |
| parent | 92c8a8829f2e68e7ceb3b4670ebea4c4e6541a7c (diff) | |
[enh] openstreetmap / map template: improve results
implements ideas described in #69
* update the engine
* use wikidata
* update map.html template
Diffstat (limited to 'searx/data/__init__.py')
| -rw-r--r-- | searx/data/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/searx/data/__init__.py b/searx/data/__init__.py index c482a6b5a..b0e7d31d8 100644 --- a/searx/data/__init__.py +++ b/searx/data/__init__.py @@ -3,7 +3,7 @@ from pathlib import Path __init__ = ['ENGINES_LANGUGAGES', 'CURRENCIES', 'USER_AGENTS', 'EXTERNAL_URLS', 'WIKIDATA_UNITS', 'EXTERNAL_BANGS', - 'bangs_loader', 'ahmia_blacklist_loader'] + 'OSM_KEYS_TAGS', 'bangs_loader', 'ahmia_blacklist_loader'] data_dir = Path(__file__).parent @@ -23,3 +23,4 @@ USER_AGENTS = load('useragents.json') EXTERNAL_URLS = load('external_urls.json') WIKIDATA_UNITS = load('wikidata_units.json') EXTERNAL_BANGS = load('external_bangs.json') +OSM_KEYS_TAGS = load('osm_keys_tags.json') |