From 8f7eee24733727d15f21f29a8038a85eb2b05e4d Mon Sep 17 00:00:00 2001 From: Bnyro Date: Mon, 28 Apr 2025 18:06:59 +0200 Subject: [feat] tracker url plugin: use ClearURL tracking param list --- searx/data/__init__.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'searx/data') diff --git a/searx/data/__init__.py b/searx/data/__init__.py index 9be1cd67e..5a859f8cd 100644 --- a/searx/data/__init__.py +++ b/searx/data/__init__.py @@ -23,6 +23,7 @@ OSM_KEYS_TAGS: dict[str, typing.Any] ENGINE_DESCRIPTIONS: dict[str, typing.Any] ENGINE_TRAITS: dict[str, typing.Any] LOCALES: dict[str, typing.Any] +TRACKER_PATTERNS: list[dict[str, typing.Any]] lazy_globals = { "CURRENCIES": CurrenciesDB(), @@ -34,6 +35,7 @@ lazy_globals = { "ENGINE_DESCRIPTIONS": None, "ENGINE_TRAITS": None, "LOCALES": None, + "TRACKER_PATTERNS": None, } data_json_files = { @@ -45,6 +47,7 @@ data_json_files = { "ENGINE_DESCRIPTIONS": "engine_descriptions.json", "ENGINE_TRAITS": "engine_traits.json", "LOCALES": "locales.json", + "TRACKER_PATTERNS": "tracker_patterns.json", } -- cgit v1.2.3