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 ..
|
|
|
|
|
2022-07-24 10:06:49 +00:00
|
|
|
- :ref:`settings categories_as_tabs`
|
2021-06-03 12:54:20 +00:00
|
|
|
- :ref:`engines-dev`
|
2019-12-30 20:56:09 +00:00
|
|
|
- :ref:`settings engine`
|
2022-07-24 10:06:49 +00:00
|
|
|
- :ref:`general engine configuration`
|
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
|
|
|
|
2022-07-24 10:06:49 +00:00
|
|
|
SearXNG supports {{engines | length}} search engines of which
|
|
|
|
{{enabled_engine_count}} are enabled by default.
|
|
|
|
|
|
|
|
Engines can be assigned to multiple :ref:`categories <engine categories>`.
|
|
|
|
The UI displays the tabs that are configured in :ref:`categories_as_tabs
|
|
|
|
<settings categories_as_tabs>`. In addition to these UI categories (also
|
|
|
|
called *tabs*), engines can be queried by their name or the categories they
|
|
|
|
belong to, by using a :ref:`\!bing syntax <search-syntax>`.
|
|
|
|
|
2023-06-30 16:07:02 +00:00
|
|
|
.. contents::
|
2022-07-24 10:06:49 +00:00
|
|
|
:depth: 2
|
|
|
|
:local:
|
|
|
|
:backlinks: entry
|
|
|
|
|
|
|
|
.. jinja:: searx
|
2021-12-21 11:54:01 +00:00
|
|
|
|
2021-12-22 14:51:26 +00:00
|
|
|
{% for category, engines in categories_as_tabs.items() %}
|
2021-12-20 10:17:48 +00:00
|
|
|
|
2022-07-24 10:06:49 +00:00
|
|
|
tab ``!{{category.replace(' ', '_')}}``
|
2021-12-20 10:17:48 +00:00
|
|
|
---------------------------------------
|
|
|
|
|
2022-07-24 10:06:49 +00:00
|
|
|
{% for group, group_bang, engines in engines | group_engines_in_tab %}
|
2021-12-22 14:51:26 +00:00
|
|
|
|
|
|
|
{% if loop.length > 1 %}
|
2022-07-24 10:06:49 +00:00
|
|
|
{% if group_bang %}group ``{{group_bang}}``{% else %}{{group}}{% endif %}
|
2021-12-22 14:51:26 +00:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
{% 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
|
2022-07-24 10:06:49 +00:00
|
|
|
:widths: 10 1 10 1 1 1 1 1 1 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
|
2022-07-24 10:06:49 +00:00
|
|
|
- !bang
|
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-07-24 10:06:49 +00:00
|
|
|
- Locale
|
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}}>`_
|
2022-07-24 10:06:49 +00:00
|
|
|
{%- if mod.about and mod.about.language %}
|
|
|
|
({{mod.about.language | upper}})
|
|
|
|
{%- endif %}
|
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 ""}}
|
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 %}
|