configured_engines.rst 2.0 KB

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