2021-06-04 09:29:58 +00:00
|
|
|
.. _configured engines:
|
2019-12-21 16:13:38 +00:00
|
|
|
|
2021-06-04 09:29:58 +00:00
|
|
|
==================
|
|
|
|
Configured Engines
|
|
|
|
==================
|
2020-11-30 07:35:15 +00:00
|
|
|
|
2019-12-21 16:13:38 +00:00
|
|
|
.. sidebar:: Further reading ..
|
|
|
|
|
2021-06-03 12:54:20 +00:00
|
|
|
- :ref:`engines-dev`
|
2019-12-30 20:56:09 +00:00
|
|
|
- :ref:`settings engine`
|
2020-11-30 07:35:15 +00:00
|
|
|
|
|
|
|
Explanation of the :ref:`general engine configuration` shown in the table
|
|
|
|
:ref:`configured engines`.
|
2019-12-21 16:13:38 +00:00
|
|
|
|
2020-12-21 08:53:41 +00:00
|
|
|
.. jinja:: searx
|
2019-12-21 16:13:38 +00:00
|
|
|
|
2021-12-21 11:54:01 +00:00
|
|
|
SearXNG supports {{engines | length}} search engines (of which {{enabled_engine_count}} are enabled by default).
|
|
|
|
|
2021-12-22 14:51:26 +00:00
|
|
|
{% for category, engines in categories_as_tabs.items() %}
|
2021-12-20 10:17:48 +00:00
|
|
|
|
|
|
|
{{category}} search engines
|
|
|
|
---------------------------------------
|
|
|
|
|
2021-12-22 14:51:26 +00:00
|
|
|
{% for group, engines in engines | group_engines_in_tab %}
|
|
|
|
|
|
|
|
{% if loop.length > 1 %}
|
|
|
|
{{group}}
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
{% endif %}
|
|
|
|
|
2021-12-20 09:42:24 +00:00
|
|
|
.. flat-table::
|
|
|
|
:header-rows: 2
|
2021-12-20 09:49:12 +00:00
|
|
|
:stub-columns: 1
|
2019-12-21 16:13:38 +00:00
|
|
|
|
2021-12-20 09:52:21 +00:00
|
|
|
* - :cspan:`5` Engines configured by default (in :ref:`settings.yml <engine settings>`)
|
2021-12-20 09:42:24 +00:00
|
|
|
- :cspan:`3` :ref:`Supported features <engine file>`
|
|
|
|
|
2021-12-20 09:07:22 +00:00
|
|
|
* - Name
|
|
|
|
- Shortcut
|
2021-12-21 14:45:58 +00:00
|
|
|
- Module
|
2021-12-20 09:42:24 +00:00
|
|
|
- Disabled
|
2021-12-20 09:07:22 +00:00
|
|
|
- Timeout
|
2021-12-20 09:42:24 +00:00
|
|
|
- Weight
|
2021-12-20 09:07:22 +00:00
|
|
|
- Paging
|
2022-09-29 18:54:46 +00:00
|
|
|
- Language, Region
|
2021-12-20 09:07:22 +00:00
|
|
|
- Safe search
|
|
|
|
- Time range
|
2019-12-21 16:13:38 +00:00
|
|
|
|
2021-12-22 14:51:26 +00:00
|
|
|
{% for mod in engines %}
|
2019-12-21 16:13:38 +00:00
|
|
|
|
2021-12-28 11:51:29 +00:00
|
|
|
* - `{{mod.name}} <{{mod.about and mod.about.website}}>`_
|
2021-12-20 09:49:12 +00:00
|
|
|
- ``!{{mod.shortcut}}``
|
2021-12-21 16:44:05 +00:00
|
|
|
- {%- if 'searx.engines.' + mod.__name__ in documented_modules %}
|
|
|
|
:py:mod:`~searx.engines.{{mod.__name__}}`
|
|
|
|
{%- else %}
|
|
|
|
:origin:`{{mod.__name__}} <searx/engines/{{mod.__name__}}.py>`
|
|
|
|
{%- endif %}
|
2021-12-20 09:42:24 +00:00
|
|
|
- {{(mod.disabled and "y") or ""}}
|
2021-12-21 08:39:03 +00:00
|
|
|
{%- if mod.about and mod.about.language %}
|
|
|
|
({{mod.about.language | upper}})
|
|
|
|
{%- endif %}
|
2019-12-21 16:13:38 +00:00
|
|
|
- {{mod.timeout}}
|
2021-12-20 09:42:24 +00:00
|
|
|
- {{mod.weight or 1 }}
|
2021-12-20 10:06:42 +00:00
|
|
|
{% if mod.engine_type == 'online' %}
|
2019-12-21 16:13:38 +00:00
|
|
|
- {{(mod.paging and "y") or ""}}
|
|
|
|
- {{(mod.language_support and "y") or ""}}
|
|
|
|
- {{(mod.safesearch and "y") or ""}}
|
|
|
|
- {{(mod.time_range_support and "y") or ""}}
|
2021-12-20 10:06:42 +00:00
|
|
|
{% else %}
|
|
|
|
- :cspan:`3` not applicable ({{mod.engine_type}})
|
|
|
|
{% endif %}
|
2019-12-21 16:13:38 +00:00
|
|
|
|
|
|
|
{% endfor %}
|
2021-12-20 10:17:48 +00:00
|
|
|
{% endfor %}
|
2021-12-22 14:51:26 +00:00
|
|
|
{% endfor %}
|