diff options
| author | Bnyro <bnyro@tutanota.com> | 2025-04-28 18:06:59 +0200 |
|---|---|---|
| committer | Bnyro <bnyro@tutanota.com> | 2025-06-23 22:12:18 +0200 |
| commit | 8f7eee24733727d15f21f29a8038a85eb2b05e4d (patch) | |
| tree | 6a01d5866f5e21be485a164566aeedba79659833 /searx/data | |
| parent | 58df3e8e9776341279eb58c6766fe7d189a3ee60 (diff) | |
[feat] tracker url plugin: use ClearURL tracking param list
Diffstat (limited to 'searx/data')
| -rw-r--r-- | searx/data/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
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", } |