settings.yml 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763
  1. general:
  2. # Debug mode, only for development. Is overwritten by ${SEARXNG_DEBUG}
  3. debug: false
  4. # displayed name
  5. instance_name: "SearXNG"
  6. # For example: https://example.com/privacy
  7. privacypolicy_url: false
  8. # use true to use your own donation page written in searx/info/en/donate.md
  9. # use false to disable the donation link
  10. donation_url: false
  11. # mailto:contact@example.com
  12. contact_url: false
  13. # record stats
  14. enable_metrics: true
  15. # expose stats in open metrics format at /metrics
  16. # leave empty to disable (no password set)
  17. # open_metrics: <password>
  18. open_metrics: ''
  19. brand:
  20. new_issue_url: https://github.com/searxng/searxng/issues/new
  21. docs_url: https://docs.searxng.org/
  22. public_instances: https://searx.space
  23. wiki_url: https://github.com/searxng/searxng/wiki
  24. issue_url: https://github.com/searxng/searxng/issues
  25. # custom:
  26. # maintainer: "Jon Doe"
  27. # # Custom entries in the footer: [title]: [link]
  28. # links:
  29. # Uptime: https://uptime.searxng.org/history/darmarit-org
  30. # About: "https://searxng.org"
  31. search:
  32. # Filter results. 0: None, 1: Moderate, 2: Strict
  33. safe_search: 0
  34. # Existing autocomplete backends: "360search", "baidu", "brave", "dbpedia", "duckduckgo", "google", "yandex",
  35. # "mwmbl", "seznam", "sogou", "stract", "swisscows", "quark", "qwant", "wikipedia" -
  36. # leave blank to turn it off by default.
  37. autocomplete: ""
  38. # minimun characters to type before autocompleter starts
  39. autocomplete_min: 4
  40. # backend for the favicon near URL in search results.
  41. # Available resolvers: "allesedv", "duckduckgo", "google", "yandex" - leave blank to turn it off by default.
  42. favicon_resolver: ""
  43. # Default search language - leave blank to detect from browser information or
  44. # use codes from 'languages.py'
  45. default_lang: "auto"
  46. # max_page: 0 # if engine supports paging, 0 means unlimited numbers of pages
  47. # Available languages
  48. # languages:
  49. # - all
  50. # - en
  51. # - en-US
  52. # - de
  53. # - it-IT
  54. # - fr
  55. # - fr-BE
  56. # ban time in seconds after engine errors
  57. ban_time_on_fail: 5
  58. # max ban time in seconds after engine errors
  59. max_ban_time_on_fail: 120
  60. suspended_times:
  61. # Engine suspension time after error (in seconds; set to 0 to disable)
  62. # For error "Access denied" and "HTTP error [402, 403]"
  63. SearxEngineAccessDenied: 86400
  64. # For error "CAPTCHA"
  65. SearxEngineCaptcha: 86400
  66. # For error "Too many request" and "HTTP error 429"
  67. SearxEngineTooManyRequests: 3600
  68. # Cloudflare CAPTCHA
  69. cf_SearxEngineCaptcha: 1296000
  70. cf_SearxEngineAccessDenied: 86400
  71. # ReCAPTCHA
  72. recaptcha_SearxEngineCaptcha: 604800
  73. # remove format to deny access, use lower case.
  74. # formats: [html, csv, json, rss]
  75. formats:
  76. - html
  77. server:
  78. # Is overwritten by ${SEARXNG_PORT} and ${SEARXNG_BIND_ADDRESS}
  79. port: 8888
  80. bind_address: "127.0.0.1"
  81. # public URL of the instance, to ensure correct inbound links. Is overwritten
  82. # by ${SEARXNG_BASE_URL}.
  83. base_url: false # "http://example.com/location"
  84. # rate limit the number of request on the instance, block some bots.
  85. # Is overwritten by ${SEARXNG_LIMITER}
  86. limiter: false
  87. # enable features designed only for public instances.
  88. # Is overwritten by ${SEARXNG_PUBLIC_INSTANCE}
  89. public_instance: false
  90. # If your instance owns a /etc/searxng/settings.yml file, then set the following
  91. # values there.
  92. secret_key: "ultrasecretkey" # Is overwritten by ${SEARXNG_SECRET}
  93. # Proxy image results through SearXNG. Is overwritten by ${SEARXNG_IMAGE_PROXY}
  94. image_proxy: false
  95. # 1.0 and 1.1 are supported
  96. http_protocol_version: "1.0"
  97. # POST queries are more secure as they don't show up in history but may cause
  98. # problems when using Firefox containers
  99. method: "POST"
  100. default_http_headers:
  101. X-Content-Type-Options: nosniff
  102. X-Download-Options: noopen
  103. X-Robots-Tag: noindex, nofollow
  104. Referrer-Policy: no-referrer
  105. redis:
  106. # URL to connect redis database. Is overwritten by ${SEARXNG_REDIS_URL}.
  107. # https://docs.searxng.org/admin/settings/settings_redis.html#settings-redis
  108. url: false
  109. ui:
  110. # Custom static path - leave it blank if you didn't change
  111. static_path: ""
  112. # Is overwritten by ${SEARXNG_STATIC_USE_HASH}.
  113. static_use_hash: false
  114. # Custom templates path - leave it blank if you didn't change
  115. templates_path: ""
  116. # query_in_title: When true, the result page's titles contains the query
  117. # it decreases the privacy, since the browser can records the page titles.
  118. query_in_title: false
  119. # infinite_scroll: When true, automatically loads the next page when scrolling to bottom of the current page.
  120. infinite_scroll: false
  121. # ui theme
  122. default_theme: simple
  123. # center the results ?
  124. center_alignment: false
  125. # URL prefix of the internet archive, don't forget trailing slash (if needed).
  126. # cache_url: "https://webcache.googleusercontent.com/search?q=cache:"
  127. # Default interface locale - leave blank to detect from browser information or
  128. # use codes from the 'locales' config section
  129. default_locale: ""
  130. # Open result links in a new tab by default
  131. # results_on_new_tab: false
  132. theme_args:
  133. # style of simple theme: auto, light, dark
  134. simple_style: auto
  135. # Perform search immediately if a category selected.
  136. # Disable to select multiple categories at once and start the search manually.
  137. search_on_category_select: true
  138. # Hotkeys: default or vim
  139. hotkeys: default
  140. # URL formatting: pretty, full or host
  141. url_formatting: pretty
  142. # Lock arbitrary settings on the preferences page.
  143. #
  144. # preferences:
  145. # lock:
  146. # - categories
  147. # - language
  148. # - autocomplete
  149. # - favicon
  150. # - safesearch
  151. # - method
  152. # - doi_resolver
  153. # - locale
  154. # - theme
  155. # - results_on_new_tab
  156. # - infinite_scroll
  157. # - search_on_category_select
  158. # - method
  159. # - image_proxy
  160. # - query_in_title
  161. # searx supports result proxification using an external service:
  162. # https://github.com/asciimoo/morty uncomment below section if you have running
  163. # morty proxy the key is base64 encoded (keep the !!binary notation)
  164. # Note: since commit af77ec3, morty accepts a base64 encoded key.
  165. #
  166. # result_proxy:
  167. # url: http://127.0.0.1:3000/
  168. # # the key is a base64 encoded string, the YAML !!binary prefix is optional
  169. # key: !!binary "your_morty_proxy_key"
  170. # # [true|false] enable the "proxy" button next to each result
  171. # proxify_results: true
  172. # communication with search engines
  173. #
  174. outgoing:
  175. # default timeout in seconds, can be override by engine
  176. request_timeout: 3.0
  177. # the maximum timeout in seconds
  178. # max_request_timeout: 10.0
  179. # suffix of searx_useragent, could contain information like an email address
  180. # to the administrator
  181. useragent_suffix: ""
  182. # The maximum number of concurrent connections that may be established.
  183. pool_connections: 100
  184. # Allow the connection pool to maintain keep-alive connections below this
  185. # point.
  186. pool_maxsize: 20
  187. # See https://www.python-httpx.org/http2/
  188. enable_http2: true
  189. # uncomment below section if you want to use a custom server certificate
  190. # see https://www.python-httpx.org/advanced/#changing-the-verification-defaults
  191. # and https://www.python-httpx.org/compatibility/#ssl-configuration
  192. # verify: ~/.mitmproxy/mitmproxy-ca-cert.cer
  193. #
  194. # uncomment below section if you want to use a proxyq see: SOCKS proxies
  195. # https://2.python-requests.org/en/latest/user/advanced/#proxies
  196. # are also supported: see
  197. # https://2.python-requests.org/en/latest/user/advanced/#socks
  198. #
  199. # proxies:
  200. # all://:
  201. # - http://proxy1:8080
  202. # - http://proxy2:8080
  203. #
  204. # using_tor_proxy: true
  205. #
  206. # Extra seconds to add in order to account for the time taken by the proxy
  207. #
  208. # extra_proxy_timeout: 10
  209. #
  210. # uncomment below section only if you have more than one network interface
  211. # which can be the source of outgoing search requests
  212. #
  213. # source_ips:
  214. # - 1.1.1.1
  215. # - 1.1.1.2
  216. # - fe80::/126
  217. # Plugin configuration, for more details see
  218. # https://docs.searxng.org/admin/settings/settings_plugins.html
  219. #
  220. plugins:
  221. searx.plugins.calculator.SXNGPlugin:
  222. active: true
  223. searx.plugins.hash_plugin.SXNGPlugin:
  224. active: true
  225. searx.plugins.self_info.SXNGPlugin:
  226. active: true
  227. searx.plugins.unit_converter.SXNGPlugin:
  228. active: true
  229. searx.plugins.ahmia_filter.SXNGPlugin:
  230. active: true
  231. searx.plugins.hostnames.SXNGPlugin:
  232. active: true
  233. searx.plugins.oa_doi_rewrite.SXNGPlugin:
  234. active: false
  235. searx.plugins.tor_check.SXNGPlugin:
  236. active: false
  237. searx.plugins.tracker_url_remover.SXNGPlugin:
  238. active: false
  239. # Configuration of the "Hostnames plugin":
  240. #
  241. # hostnames:
  242. # replace:
  243. # '(.*\.)?youtube\.com$': 'invidious.example.com'
  244. # '(.*\.)?youtu\.be$': 'invidious.example.com'
  245. # '(.*\.)?reddit\.com$': 'teddit.example.com'
  246. # '(.*\.)?redd\.it$': 'teddit.example.com'
  247. # '(www\.)?twitter\.com$': 'nitter.example.com'
  248. # remove:
  249. # - '(.*\.)?facebook.com$'
  250. # low_priority:
  251. # - '(.*\.)?google(\..*)?$'
  252. # high_priority:
  253. # - '(.*\.)?wikipedia.org$'
  254. #
  255. # Alternatively you can use external files for configuring the "Hostnames plugin":
  256. #
  257. # hostnames:
  258. # replace: 'rewrite-hosts.yml'
  259. #
  260. # Content of 'rewrite-hosts.yml' (place the file in the same directory as 'settings.yml'):
  261. # '(.*\.)?youtube\.com$': 'invidious.example.com'
  262. # '(.*\.)?youtu\.be$': 'invidious.example.com'
  263. #
  264. checker:
  265. # disable checker when in debug mode
  266. off_when_debug: true
  267. # use "scheduling: false" to disable scheduling
  268. # scheduling: interval or int
  269. # to activate the scheduler:
  270. # * uncomment "scheduling" section
  271. # * add "cache2 = name=searxngcache,items=2000,blocks=2000,blocksize=4096,bitmap=1"
  272. # to your uwsgi.ini
  273. # scheduling:
  274. # start_after: [300, 1800] # delay to start the first run of the checker
  275. # every: [86400, 90000] # how often the checker runs
  276. # additional tests: only for the YAML anchors (see the engines section)
  277. #
  278. additional_tests:
  279. rosebud: &test_rosebud
  280. matrix:
  281. query: rosebud
  282. lang: en
  283. result_container:
  284. - not_empty
  285. - ['one_title_contains', 'citizen kane']
  286. test:
  287. - unique_results
  288. android: &test_android
  289. matrix:
  290. query: ['android']
  291. lang: ['en', 'de', 'fr', 'zh-CN']
  292. result_container:
  293. - not_empty
  294. - ['one_title_contains', 'google']
  295. test:
  296. - unique_results
  297. # tests: only for the YAML anchors (see the engines section)
  298. tests:
  299. infobox: &tests_infobox
  300. infobox:
  301. matrix:
  302. query: ["linux", "new york", "bbc"]
  303. result_container:
  304. - has_infobox
  305. categories_as_tabs:
  306. general:
  307. images:
  308. videos:
  309. news:
  310. map:
  311. music:
  312. it:
  313. science:
  314. files:
  315. social media:
  316. engines:
  317. - name: 360search
  318. engine: 360search
  319. shortcut: 360so
  320. disabled: true
  321. - name: 360search videos
  322. engine: 360search_videos
  323. shortcut: 360sov
  324. disabled: true
  325. - name: 9gag
  326. engine: 9gag
  327. shortcut: 9g
  328. disabled: true
  329. - name: acfun
  330. engine: acfun
  331. shortcut: acf
  332. disabled: true
  333. - name: adobe stock
  334. engine: adobe_stock
  335. shortcut: asi
  336. categories: ["images"]
  337. # https://docs.searxng.org/dev/engines/online/adobe_stock.html
  338. adobe_order: relevance
  339. adobe_content_types: ["photo", "illustration", "zip_vector", "template", "3d", "image"]
  340. timeout: 6
  341. disabled: true
  342. - name: adobe stock video
  343. engine: adobe_stock
  344. shortcut: asv
  345. network: adobe stock
  346. categories: ["videos"]
  347. adobe_order: relevance
  348. adobe_content_types: ["video"]
  349. timeout: 6
  350. disabled: true
  351. - name: adobe stock audio
  352. engine: adobe_stock
  353. shortcut: asa
  354. network: adobe stock
  355. categories: ["music"]
  356. adobe_order: relevance
  357. adobe_content_types: ["audio"]
  358. timeout: 6
  359. disabled: true
  360. - name: alexandria
  361. engine: json_engine
  362. shortcut: alx
  363. categories: general
  364. paging: true
  365. search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
  366. results_query: results
  367. title_query: title
  368. url_query: url
  369. content_query: snippet
  370. timeout: 1.5
  371. disabled: true
  372. about:
  373. website: https://alexandria.org/
  374. official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
  375. use_official_api: true
  376. require_api_key: false
  377. results: JSON
  378. # - name: astrophysics data system
  379. # engine: astrophysics_data_system
  380. # sort: asc
  381. # weight: 5
  382. # categories: [science]
  383. # api_key: your-new-key
  384. # shortcut: ads
  385. - name: alpine linux packages
  386. engine: alpinelinux
  387. disabled: true
  388. shortcut: alp
  389. - name: annas archive
  390. engine: annas_archive
  391. disabled: true
  392. shortcut: aa
  393. - name: ansa
  394. engine: ansa
  395. shortcut: ans
  396. disabled: true
  397. # - name: annas articles
  398. # engine: annas_archive
  399. # shortcut: aaa
  400. # # https://docs.searxng.org/dev/engines/online/annas_archive.html
  401. # aa_content: 'magazine' # book_fiction, book_unknown, book_nonfiction, book_comic
  402. # aa_ext: 'pdf' # pdf, epub, ..
  403. # aa_sort: oldest' # newest, oldest, largest, smallest
  404. - name: apk mirror
  405. engine: apkmirror
  406. timeout: 4.0
  407. shortcut: apkm
  408. disabled: true
  409. - name: apple app store
  410. engine: apple_app_store
  411. shortcut: aps
  412. disabled: true
  413. # Requires Tor
  414. - name: ahmia
  415. engine: ahmia
  416. categories: onions
  417. enable_http: true
  418. shortcut: ah
  419. - name: anaconda
  420. engine: xpath
  421. paging: true
  422. first_page_num: 0
  423. search_url: https://anaconda.org/search?q={query}&page={pageno}
  424. results_xpath: //tbody/tr
  425. url_xpath: ./td/h5/a[last()]/@href
  426. title_xpath: ./td/h5
  427. content_xpath: ./td[h5]/text()
  428. categories: it
  429. timeout: 6.0
  430. shortcut: conda
  431. disabled: true
  432. - name: arch linux wiki
  433. engine: archlinux
  434. shortcut: al
  435. - name: nixos wiki
  436. engine: mediawiki
  437. shortcut: nixw
  438. base_url: https://wiki.nixos.org/
  439. search_type: text
  440. disabled: true
  441. categories: [it, software wikis]
  442. - name: artic
  443. engine: artic
  444. shortcut: arc
  445. timeout: 4.0
  446. - name: arxiv
  447. engine: arxiv
  448. shortcut: arx
  449. timeout: 4.0
  450. - name: ask
  451. engine: ask
  452. shortcut: ask
  453. disabled: true
  454. # tmp suspended: dh key too small
  455. # - name: base
  456. # engine: base
  457. # shortcut: bs
  458. - name: bandcamp
  459. engine: bandcamp
  460. shortcut: bc
  461. categories: music
  462. - name: baidu
  463. baidu_category: general
  464. categories: [general]
  465. engine: baidu
  466. shortcut: bd
  467. disabled: true
  468. - name: baidu images
  469. baidu_category: images
  470. categories: [images]
  471. engine: baidu
  472. shortcut: bdi
  473. disabled: true
  474. - name: baidu kaifa
  475. baidu_category: it
  476. categories: [it]
  477. engine: baidu
  478. shortcut: bdk
  479. disabled: true
  480. - name: wikipedia
  481. engine: wikipedia
  482. shortcut: wp
  483. # add "list" to the array to get results in the results list
  484. display_type: ["infobox"]
  485. categories: [general]
  486. - name: bilibili
  487. engine: bilibili
  488. shortcut: bil
  489. disabled: true
  490. - name: bing
  491. engine: bing
  492. shortcut: bi
  493. disabled: true
  494. - name: bing images
  495. engine: bing_images
  496. shortcut: bii
  497. - name: bing news
  498. engine: bing_news
  499. shortcut: bin
  500. - name: bing videos
  501. engine: bing_videos
  502. shortcut: biv
  503. - name: bitchute
  504. engine: bitchute
  505. shortcut: bit
  506. disabled: true
  507. - name: bitbucket
  508. engine: xpath
  509. paging: true
  510. search_url: https://bitbucket.org/repo/all/{pageno}?name={query}
  511. url_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  512. title_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]
  513. content_xpath: //article[@class="repo-summary"]/p
  514. categories: [it, repos]
  515. timeout: 4.0
  516. disabled: true
  517. shortcut: bb
  518. about:
  519. website: https://bitbucket.org/
  520. wikidata_id: Q2493781
  521. official_api_documentation: https://developer.atlassian.com/bitbucket
  522. use_official_api: false
  523. require_api_key: false
  524. results: HTML
  525. - name: bpb
  526. engine: bpb
  527. shortcut: bpb
  528. disabled: true
  529. - name: btdigg
  530. engine: btdigg
  531. shortcut: bt
  532. disabled: true
  533. - name: openverse
  534. engine: openverse
  535. categories: images
  536. shortcut: opv
  537. - name: media.ccc.de
  538. engine: ccc_media
  539. shortcut: c3tv
  540. # We don't set language: de here because media.ccc.de is not just
  541. # for a German audience. It contains many English videos and many
  542. # German videos have English subtitles.
  543. disabled: true
  544. - name: chefkoch
  545. engine: chefkoch
  546. shortcut: chef
  547. # to show premium or plus results too:
  548. # skip_premium: false
  549. - name: chinaso news
  550. chinaso_category: news
  551. engine: chinaso
  552. shortcut: chinaso
  553. disabled: true
  554. - name: chinaso images
  555. chinaso_category: images
  556. engine: chinaso
  557. shortcut: chinasoi
  558. disabled: true
  559. - name: chinaso videos
  560. chinaso_category: videos
  561. engine: chinaso
  562. shortcut: chinasov
  563. disabled: true
  564. - name: cloudflareai
  565. engine: cloudflareai
  566. shortcut: cfai
  567. # get api token and accont id from https://developers.cloudflare.com/workers-ai/get-started/rest-api/
  568. cf_account_id: 'your_cf_accout_id'
  569. cf_ai_api: 'your_cf_api'
  570. # create your ai gateway by https://developers.cloudflare.com/ai-gateway/get-started/creating-gateway/
  571. cf_ai_gateway: 'your_cf_ai_gateway_name'
  572. # find the model name from https://developers.cloudflare.com/workers-ai/models/#text-generation
  573. cf_ai_model: 'ai_model_name'
  574. # custom your preferences
  575. # cf_ai_model_display_name: 'Cloudflare AI'
  576. # cf_ai_model_assistant: 'prompts_for_assistant_role'
  577. # cf_ai_model_system: 'prompts_for_system_role'
  578. timeout: 30
  579. disabled: true
  580. # - name: core.ac.uk
  581. # engine: core
  582. # categories: science
  583. # shortcut: cor
  584. # # get your API key from: https://core.ac.uk/api-keys/register/
  585. # api_key: 'unset'
  586. - name: cppreference
  587. engine: cppreference
  588. shortcut: cpp
  589. paging: false
  590. disabled: true
  591. - name: crossref
  592. engine: crossref
  593. shortcut: cr
  594. timeout: 30
  595. disabled: true
  596. - name: crowdview
  597. engine: json_engine
  598. shortcut: cv
  599. categories: general
  600. paging: false
  601. search_url: https://crowdview-next-js.onrender.com/api/search-v3?query={query}
  602. results_query: results
  603. url_query: link
  604. title_query: title
  605. content_query: snippet
  606. title_html_to_text: true
  607. content_html_to_text: true
  608. disabled: true
  609. about:
  610. website: https://crowdview.ai/
  611. - name: yep
  612. engine: yep
  613. shortcut: yep
  614. categories: general
  615. search_type: web
  616. timeout: 5
  617. disabled: true
  618. - name: yep images
  619. engine: yep
  620. shortcut: yepi
  621. categories: images
  622. search_type: images
  623. disabled: true
  624. - name: yep news
  625. engine: yep
  626. shortcut: yepn
  627. categories: news
  628. search_type: news
  629. disabled: true
  630. - name: curlie
  631. engine: xpath
  632. shortcut: cl
  633. categories: general
  634. disabled: true
  635. paging: true
  636. lang_all: ''
  637. search_url: https://curlie.org/search?q={query}&lang={lang}&start={pageno}&stime=92452189
  638. page_size: 20
  639. results_xpath: //div[@id="site-list-content"]/div[@class="site-item"]
  640. url_xpath: ./div[@class="title-and-desc"]/a/@href
  641. title_xpath: ./div[@class="title-and-desc"]/a/div
  642. content_xpath: ./div[@class="title-and-desc"]/div[@class="site-descr"]
  643. about:
  644. website: https://curlie.org/
  645. wikidata_id: Q60715723
  646. use_official_api: false
  647. require_api_key: false
  648. results: HTML
  649. - name: currency
  650. engine: currency_convert
  651. categories: general
  652. shortcut: cc
  653. - name: deezer
  654. engine: deezer
  655. shortcut: dz
  656. disabled: true
  657. - name: destatis
  658. engine: destatis
  659. shortcut: destat
  660. disabled: true
  661. - name: deviantart
  662. engine: deviantart
  663. shortcut: da
  664. timeout: 3.0
  665. - name: ddg definitions
  666. engine: duckduckgo_definitions
  667. shortcut: ddd
  668. weight: 2
  669. disabled: true
  670. tests: *tests_infobox
  671. # cloudflare protected
  672. # - name: digbt
  673. # engine: digbt
  674. # shortcut: dbt
  675. # timeout: 6.0
  676. # disabled: true
  677. - name: docker hub
  678. engine: docker_hub
  679. shortcut: dh
  680. categories: [it, packages]
  681. - name: encyclosearch
  682. engine: json_engine
  683. shortcut: es
  684. categories: general
  685. paging: true
  686. search_url: https://encyclosearch.org/encyclosphere/search?q={query}&page={pageno}&resultsPerPage=15
  687. results_query: Results
  688. url_query: SourceURL
  689. title_query: Title
  690. content_query: Description
  691. disabled: true
  692. about:
  693. website: https://encyclosearch.org
  694. official_api_documentation: https://encyclosearch.org/docs/#/rest-api
  695. use_official_api: true
  696. require_api_key: false
  697. results: JSON
  698. - name: erowid
  699. engine: xpath
  700. paging: true
  701. first_page_num: 0
  702. page_size: 30
  703. search_url: https://www.erowid.org/search.php?q={query}&s={pageno}
  704. url_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  705. title_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  706. content_xpath: //dl[@class="results-list"]/dd[@class="result-details"]
  707. categories: []
  708. shortcut: ew
  709. disabled: true
  710. about:
  711. website: https://www.erowid.org/
  712. wikidata_id: Q1430691
  713. official_api_documentation:
  714. use_official_api: false
  715. require_api_key: false
  716. results: HTML
  717. # - name: elasticsearch
  718. # shortcut: els
  719. # engine: elasticsearch
  720. # base_url: http://localhost:9200
  721. # username: elastic
  722. # password: changeme
  723. # index: my-index
  724. # enable_http: true
  725. # # available options: match, simple_query_string, term, terms, custom
  726. # query_type: match
  727. # # if query_type is set to custom, provide your query here
  728. # # custom_query_json: {"query":{"match_all": {}}}
  729. # # show_metadata: false
  730. # disabled: true
  731. - name: wikidata
  732. engine: wikidata
  733. shortcut: wd
  734. timeout: 3.0
  735. weight: 2
  736. # add "list" to the array to get results in the results list
  737. display_type: ["infobox"]
  738. tests: *tests_infobox
  739. categories: [general]
  740. - name: duckduckgo
  741. engine: duckduckgo
  742. shortcut: ddg
  743. - name: duckduckgo images
  744. engine: duckduckgo_extra
  745. categories: [images, web]
  746. ddg_category: images
  747. shortcut: ddi
  748. disabled: true
  749. - name: duckduckgo videos
  750. engine: duckduckgo_extra
  751. categories: [videos, web]
  752. ddg_category: videos
  753. shortcut: ddv
  754. disabled: true
  755. - name: duckduckgo news
  756. engine: duckduckgo_extra
  757. categories: [news, web]
  758. ddg_category: news
  759. shortcut: ddn
  760. disabled: true
  761. - name: duckduckgo weather
  762. engine: duckduckgo_weather
  763. shortcut: ddw
  764. disabled: true
  765. - name: apple maps
  766. engine: apple_maps
  767. shortcut: apm
  768. disabled: true
  769. timeout: 5.0
  770. - name: emojipedia
  771. engine: emojipedia
  772. timeout: 4.0
  773. shortcut: em
  774. disabled: true
  775. - name: tineye
  776. engine: tineye
  777. shortcut: tin
  778. timeout: 9.0
  779. disabled: true
  780. - name: etymonline
  781. engine: xpath
  782. paging: true
  783. search_url: https://etymonline.com/search?page={pageno}&q={query}
  784. url_xpath: //a[contains(@class, "word__name--")]/@href
  785. title_xpath: //a[contains(@class, "word__name--")]
  786. content_xpath: //section[contains(@class, "word__defination")]
  787. first_page_num: 1
  788. shortcut: et
  789. categories: [dictionaries]
  790. about:
  791. website: https://www.etymonline.com/
  792. wikidata_id: Q1188617
  793. official_api_documentation:
  794. use_official_api: false
  795. require_api_key: false
  796. results: HTML
  797. # - name: ebay
  798. # engine: ebay
  799. # shortcut: eb
  800. # base_url: 'https://www.ebay.com'
  801. # disabled: true
  802. # timeout: 5
  803. - name: 1x
  804. engine: www1x
  805. shortcut: 1x
  806. timeout: 3.0
  807. disabled: true
  808. - name: fdroid
  809. engine: fdroid
  810. shortcut: fd
  811. disabled: true
  812. - name: findthatmeme
  813. engine: findthatmeme
  814. shortcut: ftm
  815. disabled: true
  816. - name: flickr
  817. categories: images
  818. shortcut: fl
  819. # You can use the engine using the official stable API, but you need an API
  820. # key, see: https://www.flickr.com/services/apps/create/
  821. # engine: flickr
  822. # api_key: 'apikey' # required!
  823. # Or you can use the html non-stable engine, activated by default
  824. engine: flickr_noapi
  825. - name: free software directory
  826. engine: mediawiki
  827. shortcut: fsd
  828. categories: [it, software wikis]
  829. base_url: https://directory.fsf.org/
  830. search_type: title
  831. timeout: 5.0
  832. disabled: true
  833. about:
  834. website: https://directory.fsf.org/
  835. wikidata_id: Q2470288
  836. # - name: freesound
  837. # engine: freesound
  838. # shortcut: fnd
  839. # disabled: true
  840. # timeout: 15.0
  841. # API key required, see: https://freesound.org/docs/api/overview.html
  842. # api_key: MyAPIkey
  843. - name: frinkiac
  844. engine: frinkiac
  845. shortcut: frk
  846. disabled: true
  847. - name: fyyd
  848. engine: fyyd
  849. shortcut: fy
  850. timeout: 8.0
  851. disabled: true
  852. - name: geizhals
  853. engine: geizhals
  854. shortcut: geiz
  855. disabled: true
  856. - name: genius
  857. engine: genius
  858. shortcut: gen
  859. - name: gentoo
  860. engine: mediawiki
  861. shortcut: ge
  862. categories: ["it", "software wikis"]
  863. base_url: "https://wiki.gentoo.org/"
  864. api_path: "api.php"
  865. search_type: text
  866. timeout: 10
  867. - name: gitlab
  868. engine: gitlab
  869. base_url: https://gitlab.com
  870. shortcut: gl
  871. disabled: true
  872. about:
  873. website: https://gitlab.com/
  874. wikidata_id: Q16639197
  875. # - name: gnome
  876. # engine: gitlab
  877. # base_url: https://gitlab.gnome.org
  878. # shortcut: gn
  879. # about:
  880. # website: https://gitlab.gnome.org
  881. # wikidata_id: Q44316
  882. - name: github
  883. engine: github
  884. shortcut: gh
  885. - name: codeberg
  886. # https://docs.searxng.org/dev/engines/online/gitea.html
  887. engine: gitea
  888. base_url: https://codeberg.org
  889. shortcut: cb
  890. disabled: true
  891. - name: gitea.com
  892. engine: gitea
  893. base_url: https://gitea.com
  894. shortcut: gitea
  895. disabled: true
  896. - name: goodreads
  897. engine: goodreads
  898. shortcut: good
  899. timeout: 4.0
  900. disabled: true
  901. - name: google
  902. engine: google
  903. shortcut: go
  904. # additional_tests:
  905. # android: *test_android
  906. - name: google images
  907. engine: google_images
  908. shortcut: goi
  909. # additional_tests:
  910. # android: *test_android
  911. # dali:
  912. # matrix:
  913. # query: ['Dali Christ']
  914. # lang: ['en', 'de', 'fr', 'zh-CN']
  915. # result_container:
  916. # - ['one_title_contains', 'Salvador']
  917. - name: google news
  918. engine: google_news
  919. shortcut: gon
  920. # additional_tests:
  921. # android: *test_android
  922. - name: google videos
  923. engine: google_videos
  924. shortcut: gov
  925. # additional_tests:
  926. # android: *test_android
  927. - name: google scholar
  928. engine: google_scholar
  929. shortcut: gos
  930. - name: google play apps
  931. engine: google_play
  932. categories: [files, apps]
  933. shortcut: gpa
  934. play_categ: apps
  935. disabled: true
  936. - name: google play movies
  937. engine: google_play
  938. categories: videos
  939. shortcut: gpm
  940. play_categ: movies
  941. disabled: true
  942. - name: material icons
  943. engine: material_icons
  944. categories: images
  945. shortcut: mi
  946. disabled: true
  947. - name: habrahabr
  948. engine: xpath
  949. paging: true
  950. search_url: https://habr.com/en/search/page{pageno}/?q={query}
  951. results_xpath: //article[contains(@class, "tm-articles-list__item")]
  952. url_xpath: .//a[@class="tm-title__link"]/@href
  953. title_xpath: .//a[@class="tm-title__link"]
  954. content_xpath: .//div[contains(@class, "article-formatted-body")]
  955. categories: it
  956. timeout: 4.0
  957. disabled: true
  958. shortcut: habr
  959. about:
  960. website: https://habr.com/
  961. wikidata_id: Q4494434
  962. official_api_documentation: https://habr.com/en/docs/help/api/
  963. use_official_api: false
  964. require_api_key: false
  965. results: HTML
  966. - name: hackernews
  967. engine: hackernews
  968. shortcut: hn
  969. disabled: true
  970. - name: hex
  971. engine: hex
  972. shortcut: hex
  973. disabled: true
  974. # Valid values: name inserted_at updated_at total_downloads recent_downloads
  975. sort_criteria: "recent_downloads"
  976. page_size: 10
  977. - name: crates.io
  978. engine: crates
  979. shortcut: crates
  980. disabled: true
  981. timeout: 6.0
  982. - name: hoogle
  983. engine: xpath
  984. search_url: https://hoogle.haskell.org/?hoogle={query}
  985. results_xpath: '//div[@class="result"]'
  986. title_xpath: './/div[@class="ans"]//a'
  987. url_xpath: './/div[@class="ans"]//a/@href'
  988. content_xpath: './/div[@class="from"]'
  989. page_size: 20
  990. categories: [it, packages]
  991. shortcut: ho
  992. about:
  993. website: https://hoogle.haskell.org/
  994. wikidata_id: Q34010
  995. official_api_documentation: https://hackage.haskell.org/api
  996. use_official_api: false
  997. require_api_key: false
  998. results: JSON
  999. - name: il post
  1000. engine: il_post
  1001. shortcut: pst
  1002. - name: huggingface
  1003. engine: huggingface
  1004. shortcut: hf
  1005. disabled: true
  1006. - name: huggingface datasets
  1007. huggingface_endpoint: datasets
  1008. engine: huggingface
  1009. shortcut: hfd
  1010. disabled: true
  1011. - name: huggingface spaces
  1012. huggingface_endpoint: spaces
  1013. engine: huggingface
  1014. shortcut: hfs
  1015. disabled: true
  1016. - name: imdb
  1017. engine: imdb
  1018. shortcut: imdb
  1019. timeout: 6.0
  1020. disabled: true
  1021. - name: imgur
  1022. engine: imgur
  1023. shortcut: img
  1024. disabled: true
  1025. - name: ina
  1026. engine: ina
  1027. shortcut: in
  1028. timeout: 6.0
  1029. disabled: true
  1030. - name: invidious
  1031. engine: invidious
  1032. # Instanes will be selected randomly, see https://api.invidious.io/ for
  1033. # instances that are stable (good uptime) and close to you.
  1034. base_url:
  1035. - https://invidious.adminforge.de
  1036. - https://inv.nadeko.net
  1037. shortcut: iv
  1038. timeout: 3.0
  1039. disabled: true
  1040. - name: ipernity
  1041. engine: ipernity
  1042. shortcut: ip
  1043. disabled: true
  1044. - name: iqiyi
  1045. engine: iqiyi
  1046. shortcut: iq
  1047. disabled: true
  1048. - name: jisho
  1049. engine: jisho
  1050. shortcut: js
  1051. timeout: 3.0
  1052. disabled: true
  1053. - name: kickass
  1054. engine: kickass
  1055. base_url:
  1056. - https://kickasstorrents.to
  1057. - https://kickasstorrents.cr
  1058. - https://kickasstorrent.cr
  1059. - https://kickass.sx
  1060. - https://kat.am
  1061. shortcut: kc
  1062. timeout: 4.0
  1063. - name: lemmy communities
  1064. engine: lemmy
  1065. lemmy_type: Communities
  1066. shortcut: leco
  1067. - name: lemmy users
  1068. engine: lemmy
  1069. network: lemmy communities
  1070. lemmy_type: Users
  1071. shortcut: leus
  1072. - name: lemmy posts
  1073. engine: lemmy
  1074. network: lemmy communities
  1075. lemmy_type: Posts
  1076. shortcut: lepo
  1077. - name: lemmy comments
  1078. engine: lemmy
  1079. network: lemmy communities
  1080. lemmy_type: Comments
  1081. shortcut: lecom
  1082. - name: library genesis
  1083. engine: xpath
  1084. # search_url: https://libgen.is/search.php?req={query}
  1085. search_url: https://libgen.rs/search.php?req={query}
  1086. url_xpath: //a[contains(@href,"book/index.php?md5")]/@href
  1087. title_xpath: //a[contains(@href,"book/")]/text()[1]
  1088. content_xpath: //td/a[1][contains(@href,"=author")]/text()
  1089. categories: files
  1090. timeout: 7.0
  1091. disabled: true
  1092. shortcut: lg
  1093. about:
  1094. website: https://libgen.fun/
  1095. wikidata_id: Q22017206
  1096. official_api_documentation:
  1097. use_official_api: false
  1098. require_api_key: false
  1099. results: HTML
  1100. - name: z-library
  1101. engine: zlibrary
  1102. shortcut: zlib
  1103. categories: files
  1104. timeout: 7.0
  1105. - name: library of congress
  1106. engine: loc
  1107. shortcut: loc
  1108. categories: images
  1109. - name: libretranslate
  1110. engine: libretranslate
  1111. # https://github.com/LibreTranslate/LibreTranslate?tab=readme-ov-file#mirrors
  1112. base_url:
  1113. - https://libretranslate.com/translate
  1114. # api_key: abc123
  1115. shortcut: lt
  1116. disabled: true
  1117. - name: lingva
  1118. engine: lingva
  1119. shortcut: lv
  1120. # set lingva instance in url, by default it will use the official instance
  1121. # url: https://lingva.thedaviddelta.com
  1122. - name: lobste.rs
  1123. engine: xpath
  1124. search_url: https://lobste.rs/search?q={query}&what=stories&order=relevance
  1125. results_xpath: //li[contains(@class, "story")]
  1126. url_xpath: .//a[@class="u-url"]/@href
  1127. title_xpath: .//a[@class="u-url"]
  1128. content_xpath: .//a[@class="domain"]
  1129. categories: it
  1130. shortcut: lo
  1131. timeout: 5.0
  1132. disabled: true
  1133. about:
  1134. website: https://lobste.rs/
  1135. wikidata_id: Q60762874
  1136. official_api_documentation:
  1137. use_official_api: false
  1138. require_api_key: false
  1139. results: HTML
  1140. - name: mastodon users
  1141. engine: mastodon
  1142. mastodon_type: accounts
  1143. base_url: https://mastodon.social
  1144. shortcut: mau
  1145. - name: mastodon hashtags
  1146. engine: mastodon
  1147. mastodon_type: hashtags
  1148. base_url: https://mastodon.social
  1149. shortcut: mah
  1150. # - name: matrixrooms
  1151. # engine: mrs
  1152. # # https://docs.searxng.org/dev/engines/online/mrs.html
  1153. # # base_url: https://mrs-api-host
  1154. # shortcut: mtrx
  1155. # disabled: true
  1156. - name: mdn
  1157. shortcut: mdn
  1158. engine: json_engine
  1159. categories: [it]
  1160. paging: true
  1161. search_url: https://developer.mozilla.org/api/v1/search?q={query}&page={pageno}
  1162. results_query: documents
  1163. url_query: mdn_url
  1164. url_prefix: https://developer.mozilla.org
  1165. title_query: title
  1166. content_query: summary
  1167. about:
  1168. website: https://developer.mozilla.org
  1169. wikidata_id: Q3273508
  1170. official_api_documentation: null
  1171. use_official_api: false
  1172. require_api_key: false
  1173. results: JSON
  1174. - name: metacpan
  1175. engine: metacpan
  1176. shortcut: cpan
  1177. disabled: true
  1178. number_of_results: 20
  1179. # https://docs.searxng.org/dev/engines/offline/search-indexer-engines.html#module-searx.engines.meilisearch
  1180. # - name: meilisearch
  1181. # engine: meilisearch
  1182. # shortcut: mes
  1183. # enable_http: true
  1184. # base_url: http://localhost:7700
  1185. # index: my-index
  1186. # auth_key: Bearer XXXX
  1187. - name: microsoft learn
  1188. engine: microsoft_learn
  1189. shortcut: msl
  1190. disabled: true
  1191. - name: mixcloud
  1192. engine: mixcloud
  1193. shortcut: mc
  1194. # MongoDB engine
  1195. # Required dependency: pymongo
  1196. # - name: mymongo
  1197. # engine: mongodb
  1198. # shortcut: md
  1199. # exact_match_only: false
  1200. # host: '127.0.0.1'
  1201. # port: 27017
  1202. # enable_http: true
  1203. # results_per_page: 20
  1204. # database: 'business'
  1205. # collection: 'reviews' # name of the db collection
  1206. # key: 'name' # key in the collection to search for
  1207. - name: mozhi
  1208. engine: mozhi
  1209. base_url:
  1210. - https://mozhi.aryak.me
  1211. - https://translate.bus-hit.me
  1212. - https://nyc1.mz.ggtyler.dev
  1213. # mozhi_engine: google - see https://mozhi.aryak.me for supported engines
  1214. timeout: 4.0
  1215. shortcut: mz
  1216. disabled: true
  1217. - name: mwmbl
  1218. engine: mwmbl
  1219. # api_url: https://api.mwmbl.org
  1220. shortcut: mwm
  1221. disabled: true
  1222. - name: niconico
  1223. engine: niconico
  1224. shortcut: nico
  1225. disabled: true
  1226. - name: npm
  1227. engine: npm
  1228. shortcut: npm
  1229. timeout: 5.0
  1230. disabled: true
  1231. - name: nyaa
  1232. engine: nyaa
  1233. shortcut: nt
  1234. disabled: true
  1235. - name: mankier
  1236. engine: json_engine
  1237. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  1238. results_query: results
  1239. url_query: url
  1240. title_query: name
  1241. content_query: description
  1242. categories: it
  1243. shortcut: man
  1244. about:
  1245. website: https://www.mankier.com/
  1246. official_api_documentation: https://www.mankier.com/api
  1247. use_official_api: true
  1248. require_api_key: false
  1249. results: JSON
  1250. # read https://docs.searxng.org/dev/engines/online/mullvad_leta.html
  1251. # - name: mullvadleta
  1252. # engine: mullvad_leta
  1253. # leta_engine: google # choose one of the following: google, brave
  1254. # use_cache: true # Only 100 non-cache searches per day, suggested only for private instances
  1255. # search_url: https://leta.mullvad.net
  1256. # categories: [general, web]
  1257. # shortcut: ml
  1258. - name: odysee
  1259. engine: odysee
  1260. shortcut: od
  1261. disabled: true
  1262. - name: ollama
  1263. engine: ollama
  1264. shortcut: ollama
  1265. disabled: true
  1266. - name: openairedatasets
  1267. engine: json_engine
  1268. paging: true
  1269. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  1270. results_query: response/results/result
  1271. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1272. title_query: metadata/oaf:entity/oaf:result/title/$
  1273. content_query: metadata/oaf:entity/oaf:result/description/$
  1274. content_html_to_text: true
  1275. categories: "science"
  1276. shortcut: oad
  1277. timeout: 5.0
  1278. about:
  1279. website: https://www.openaire.eu/
  1280. wikidata_id: Q25106053
  1281. official_api_documentation: https://api.openaire.eu/
  1282. use_official_api: false
  1283. require_api_key: false
  1284. results: JSON
  1285. - name: openairepublications
  1286. engine: json_engine
  1287. paging: true
  1288. search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  1289. results_query: response/results/result
  1290. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1291. title_query: metadata/oaf:entity/oaf:result/title/$
  1292. content_query: metadata/oaf:entity/oaf:result/description/$
  1293. content_html_to_text: true
  1294. categories: science
  1295. shortcut: oap
  1296. timeout: 5.0
  1297. about:
  1298. website: https://www.openaire.eu/
  1299. wikidata_id: Q25106053
  1300. official_api_documentation: https://api.openaire.eu/
  1301. use_official_api: false
  1302. require_api_key: false
  1303. results: JSON
  1304. - name: openclipart
  1305. engine: openclipart
  1306. shortcut: ocl
  1307. inactive: true
  1308. disabled: true
  1309. timeout: 30
  1310. - name: openlibrary
  1311. engine: openlibrary
  1312. shortcut: ol
  1313. timeout: 5
  1314. disabled: true
  1315. - name: openmeteo
  1316. engine: open_meteo
  1317. shortcut: om
  1318. disabled: true
  1319. # - name: opensemanticsearch
  1320. # engine: opensemantic
  1321. # shortcut: oss
  1322. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  1323. - name: openstreetmap
  1324. engine: openstreetmap
  1325. shortcut: osm
  1326. - name: openrepos
  1327. engine: xpath
  1328. paging: true
  1329. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  1330. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  1331. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  1332. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  1333. categories: files
  1334. timeout: 4.0
  1335. disabled: true
  1336. shortcut: or
  1337. about:
  1338. website: https://openrepos.net/
  1339. wikidata_id:
  1340. official_api_documentation:
  1341. use_official_api: false
  1342. require_api_key: false
  1343. results: HTML
  1344. - name: packagist
  1345. engine: json_engine
  1346. paging: true
  1347. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  1348. results_query: results
  1349. url_query: url
  1350. title_query: name
  1351. content_query: description
  1352. categories: [it, packages]
  1353. disabled: true
  1354. timeout: 5.0
  1355. shortcut: pack
  1356. about:
  1357. website: https://packagist.org
  1358. wikidata_id: Q108311377
  1359. official_api_documentation: https://packagist.org/apidoc
  1360. use_official_api: true
  1361. require_api_key: false
  1362. results: JSON
  1363. - name: pdbe
  1364. engine: pdbe
  1365. shortcut: pdb
  1366. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1367. # hide_obsolete: false
  1368. - name: photon
  1369. engine: photon
  1370. shortcut: ph
  1371. - name: pinterest
  1372. engine: pinterest
  1373. shortcut: pin
  1374. - name: piped
  1375. engine: piped
  1376. shortcut: ppd
  1377. categories: videos
  1378. piped_filter: videos
  1379. timeout: 3.0
  1380. # URL to use as link and for embeds
  1381. frontend_url: https://srv.piped.video
  1382. # Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
  1383. backend_url:
  1384. - https://pipedapi.adminforge.de
  1385. - https://pipedapi.nosebs.ru
  1386. - https://pipedapi.ducks.party
  1387. - https://pipedapi.reallyaweso.me
  1388. - https://api.piped.private.coffee
  1389. - https://pipedapi.darkness.services
  1390. - name: piped.music
  1391. engine: piped
  1392. network: piped
  1393. shortcut: ppdm
  1394. categories: music
  1395. piped_filter: music_songs
  1396. timeout: 3.0
  1397. - name: piratebay
  1398. engine: piratebay
  1399. shortcut: tpb
  1400. # You may need to change this URL to a proxy if piratebay is blocked in your
  1401. # country
  1402. url: https://thepiratebay.org/
  1403. timeout: 3.0
  1404. - name: pixiv
  1405. shortcut: pv
  1406. engine: pixiv
  1407. disabled: true
  1408. inactive: true
  1409. pixiv_image_proxies:
  1410. - https://pximg.example.org
  1411. # A proxy is required to load the images. Hosting an image proxy server
  1412. # for Pixiv:
  1413. # --> https://pixivfe.pages.dev/hosting-image-proxy-server/
  1414. # Proxies from public instances. Ask the public instances owners if they
  1415. # agree to receive traffic from SearXNG!
  1416. # --> https://codeberg.org/VnPower/PixivFE#instances
  1417. # --> https://github.com/searxng/searxng/pull/3192#issuecomment-1941095047
  1418. # image proxy of https://pixiv.cat
  1419. # - https://i.pixiv.cat
  1420. # image proxy of https://www.pixiv.pics
  1421. # - https://pximg.cocomi.eu.org
  1422. # image proxy of https://pixivfe.exozy.me
  1423. # - https://pximg.exozy.me
  1424. # image proxy of https://pixivfe.ducks.party
  1425. # - https://pixiv.ducks.party
  1426. # image proxy of https://pixiv.perennialte.ch
  1427. # - https://pximg.perennialte.ch
  1428. - name: podcastindex
  1429. engine: podcastindex
  1430. shortcut: podcast
  1431. # Required dependency: psychopg2
  1432. # - name: postgresql
  1433. # engine: postgresql
  1434. # database: postgres
  1435. # username: postgres
  1436. # password: postgres
  1437. # limit: 10
  1438. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1439. # shortcut : psql
  1440. - name: presearch
  1441. engine: presearch
  1442. search_type: search
  1443. categories: [general, web]
  1444. shortcut: ps
  1445. timeout: 4.0
  1446. disabled: true
  1447. - name: presearch images
  1448. engine: presearch
  1449. network: presearch
  1450. search_type: images
  1451. categories: [images, web]
  1452. timeout: 4.0
  1453. shortcut: psimg
  1454. disabled: true
  1455. - name: presearch videos
  1456. engine: presearch
  1457. network: presearch
  1458. search_type: videos
  1459. categories: [general, web]
  1460. timeout: 4.0
  1461. shortcut: psvid
  1462. disabled: true
  1463. - name: presearch news
  1464. engine: presearch
  1465. network: presearch
  1466. search_type: news
  1467. categories: [news, web]
  1468. timeout: 4.0
  1469. shortcut: psnews
  1470. disabled: true
  1471. - name: pub.dev
  1472. engine: xpath
  1473. shortcut: pd
  1474. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1475. paging: true
  1476. results_xpath: //div[contains(@class,"packages-item")]
  1477. url_xpath: ./div/h3/a/@href
  1478. title_xpath: ./div/h3/a
  1479. content_xpath: ./div/div/div[contains(@class,"packages-description")]/span
  1480. categories: [packages, it]
  1481. timeout: 3.0
  1482. disabled: true
  1483. first_page_num: 1
  1484. about:
  1485. website: https://pub.dev/
  1486. official_api_documentation: https://pub.dev/help/api
  1487. use_official_api: false
  1488. require_api_key: false
  1489. results: HTML
  1490. - name: public domain image archive
  1491. engine: public_domain_image_archive
  1492. shortcut: pdia
  1493. - name: pubmed
  1494. engine: pubmed
  1495. shortcut: pub
  1496. timeout: 3.0
  1497. - name: pypi
  1498. shortcut: pypi
  1499. engine: pypi
  1500. - name: quark
  1501. quark_category: general
  1502. categories: [general]
  1503. engine: quark
  1504. shortcut: qk
  1505. disabled: true
  1506. - name: quark images
  1507. quark_category: images
  1508. categories: [images]
  1509. engine: quark
  1510. shortcut: qki
  1511. disabled: true
  1512. - name: qwant
  1513. qwant_categ: web
  1514. engine: qwant
  1515. shortcut: qw
  1516. categories: [general, web]
  1517. additional_tests:
  1518. rosebud: *test_rosebud
  1519. - name: qwant news
  1520. qwant_categ: news
  1521. engine: qwant
  1522. shortcut: qwn
  1523. categories: news
  1524. network: qwant
  1525. - name: qwant images
  1526. qwant_categ: images
  1527. engine: qwant
  1528. shortcut: qwi
  1529. categories: [images, web]
  1530. network: qwant
  1531. - name: qwant videos
  1532. qwant_categ: videos
  1533. engine: qwant
  1534. shortcut: qwv
  1535. categories: [videos, web]
  1536. network: qwant
  1537. # - name: library
  1538. # engine: recoll
  1539. # shortcut: lib
  1540. # base_url: 'https://recoll.example.org/'
  1541. # search_dir: ''
  1542. # mount_prefix: /export
  1543. # dl_prefix: 'https://download.example.org'
  1544. # timeout: 30.0
  1545. # categories: files
  1546. # disabled: true
  1547. # - name: recoll library reference
  1548. # engine: recoll
  1549. # base_url: 'https://recoll.example.org/'
  1550. # search_dir: reference
  1551. # mount_prefix: /export
  1552. # dl_prefix: 'https://download.example.org'
  1553. # shortcut: libr
  1554. # timeout: 30.0
  1555. # categories: files
  1556. # disabled: true
  1557. - name: radio browser
  1558. engine: radio_browser
  1559. shortcut: rb
  1560. - name: reddit
  1561. engine: reddit
  1562. shortcut: re
  1563. page_size: 25
  1564. disabled: true
  1565. - name: reuters
  1566. engine: reuters
  1567. shortcut: reu
  1568. # https://docs.searxng.org/dev/engines/online/reuters.html
  1569. # sort_order = "relevance"
  1570. - name: right dao
  1571. engine: xpath
  1572. paging: true
  1573. page_size: 12
  1574. search_url: https://rightdao.com/search?q={query}&start={pageno}
  1575. results_xpath: //div[contains(@class, "description")]
  1576. url_xpath: ../div[contains(@class, "title")]/a/@href
  1577. title_xpath: ../div[contains(@class, "title")]
  1578. content_xpath: .
  1579. categories: general
  1580. shortcut: rd
  1581. disabled: true
  1582. about:
  1583. website: https://rightdao.com/
  1584. use_official_api: false
  1585. require_api_key: false
  1586. results: HTML
  1587. - name: rottentomatoes
  1588. engine: rottentomatoes
  1589. shortcut: rt
  1590. disabled: true
  1591. # Required dependency: redis
  1592. # - name: myredis
  1593. # shortcut : rds
  1594. # engine: redis_server
  1595. # exact_match_only: false
  1596. # host: '127.0.0.1'
  1597. # port: 6379
  1598. # enable_http: true
  1599. # password: ''
  1600. # db: 0
  1601. # tmp suspended: bad certificate
  1602. # - name: scanr structures
  1603. # shortcut: scs
  1604. # engine: scanr_structures
  1605. # disabled: true
  1606. - name: searchmysite
  1607. engine: xpath
  1608. shortcut: sms
  1609. categories: general
  1610. paging: true
  1611. search_url: https://searchmysite.net/search/?q={query}&page={pageno}
  1612. results_xpath: //div[contains(@class,'search-result')]
  1613. url_xpath: .//a[contains(@class,'result-link')]/@href
  1614. title_xpath: .//span[contains(@class,'result-title-txt')]/text()
  1615. content_xpath: ./p[@id='result-hightlight']
  1616. disabled: true
  1617. about:
  1618. website: https://searchmysite.net
  1619. - name: selfhst icons
  1620. engine: selfhst
  1621. shortcut: si
  1622. inactive: true
  1623. disabled: true
  1624. - name: sepiasearch
  1625. engine: sepiasearch
  1626. shortcut: sep
  1627. - name: sogou
  1628. engine: sogou
  1629. shortcut: sogou
  1630. disabled: true
  1631. - name: sogou images
  1632. engine: sogou_images
  1633. shortcut: sogoui
  1634. disabled: true
  1635. - name: sogou videos
  1636. engine: sogou_videos
  1637. shortcut: sogouv
  1638. disabled: true
  1639. - name: sogou wechat
  1640. engine: sogou_wechat
  1641. shortcut: sogouw
  1642. disabled: true
  1643. - name: soundcloud
  1644. engine: soundcloud
  1645. shortcut: sc
  1646. - name: stackoverflow
  1647. engine: stackexchange
  1648. shortcut: st
  1649. api_site: 'stackoverflow'
  1650. categories: [it, q&a]
  1651. - name: askubuntu
  1652. engine: stackexchange
  1653. shortcut: ubuntu
  1654. api_site: 'askubuntu'
  1655. categories: [it, q&a]
  1656. - name: superuser
  1657. engine: stackexchange
  1658. shortcut: su
  1659. api_site: 'superuser'
  1660. categories: [it, q&a]
  1661. - name: discuss.python
  1662. engine: discourse
  1663. shortcut: dpy
  1664. base_url: 'https://discuss.python.org'
  1665. categories: [it, q&a]
  1666. disabled: true
  1667. - name: caddy.community
  1668. engine: discourse
  1669. shortcut: caddy
  1670. base_url: 'https://caddy.community'
  1671. categories: [it, q&a]
  1672. disabled: true
  1673. - name: pi-hole.community
  1674. engine: discourse
  1675. shortcut: pi
  1676. categories: [it, q&a]
  1677. base_url: 'https://discourse.pi-hole.net'
  1678. disabled: true
  1679. - name: searchcode code
  1680. engine: searchcode_code
  1681. shortcut: scc
  1682. disabled: true
  1683. # - name: searx
  1684. # engine: searx_engine
  1685. # shortcut: se
  1686. # instance_urls :
  1687. # - http://127.0.0.1:8888/
  1688. # - ...
  1689. # disabled: true
  1690. - name: semantic scholar
  1691. engine: semantic_scholar
  1692. disabled: true
  1693. shortcut: se
  1694. # Spotify needs API credentials
  1695. # - name: spotify
  1696. # engine: spotify
  1697. # shortcut: stf
  1698. # api_client_id: *******
  1699. # api_client_secret: *******
  1700. # - name: solr
  1701. # engine: solr
  1702. # shortcut: slr
  1703. # base_url: http://localhost:8983
  1704. # collection: collection_name
  1705. # sort: '' # sorting: asc or desc
  1706. # field_list: '' # comma separated list of field names to display on the UI
  1707. # default_fields: '' # default field to query
  1708. # query_fields: '' # query fields
  1709. # enable_http: true
  1710. # - name: springer nature
  1711. # engine: springer
  1712. # # get your API key from: https://dev.springernature.com/signup
  1713. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1714. # api_key: 'unset'
  1715. # shortcut: springer
  1716. # timeout: 15.0
  1717. - name: startpage
  1718. engine: startpage
  1719. shortcut: sp
  1720. startpage_categ: web
  1721. categories: [general, web]
  1722. additional_tests:
  1723. rosebud: *test_rosebud
  1724. - name: startpage news
  1725. engine: startpage
  1726. startpage_categ: news
  1727. categories: [news, web]
  1728. shortcut: spn
  1729. - name: startpage images
  1730. engine: startpage
  1731. startpage_categ: images
  1732. categories: [images, web]
  1733. shortcut: spi
  1734. - name: steam
  1735. engine: steam
  1736. shortcut: stm
  1737. disabled: true
  1738. - name: tokyotoshokan
  1739. engine: tokyotoshokan
  1740. shortcut: tt
  1741. timeout: 6.0
  1742. disabled: true
  1743. - name: solidtorrents
  1744. engine: solidtorrents
  1745. shortcut: solid
  1746. timeout: 4.0
  1747. base_url:
  1748. - https://solidtorrents.to
  1749. - https://bitsearch.to
  1750. # For this demo of the sqlite engine download:
  1751. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1752. # and unpack into searx/data/filmliste-v2.db
  1753. # Query to test: "!mediathekview concert"
  1754. #
  1755. # - name: mediathekview
  1756. # engine: sqlite
  1757. # shortcut: mediathekview
  1758. # categories: [general, videos]
  1759. # result_type: MainResult
  1760. # database: searx/data/filmliste-v2.db
  1761. # query_str: >-
  1762. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1763. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1764. # description AS content
  1765. # FROM film
  1766. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1767. # ORDER BY duration DESC
  1768. - name: tagesschau
  1769. engine: tagesschau
  1770. # when set to false, display URLs from Tagesschau, and not the actual source
  1771. # (e.g. NDR, WDR, SWR, HR, ...)
  1772. use_source_url: true
  1773. shortcut: ts
  1774. disabled: true
  1775. - name: tmdb
  1776. engine: xpath
  1777. paging: true
  1778. categories: movies
  1779. search_url: https://www.themoviedb.org/search?page={pageno}&query={query}
  1780. results_xpath: //div[contains(@class,"movie") or contains(@class,"tv")]//div[contains(@class,"card")]
  1781. url_xpath: .//div[contains(@class,"poster")]/a/@href
  1782. thumbnail_xpath: .//img/@src
  1783. title_xpath: .//div[contains(@class,"title")]//h2
  1784. content_xpath: .//div[contains(@class,"overview")]
  1785. shortcut: tm
  1786. disabled: true
  1787. # Requires Tor
  1788. - name: torch
  1789. engine: xpath
  1790. paging: true
  1791. search_url:
  1792. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1793. results_xpath: //table//tr
  1794. url_xpath: ./td[2]/a
  1795. title_xpath: ./td[2]/b
  1796. content_xpath: ./td[2]/small
  1797. categories: onions
  1798. enable_http: true
  1799. shortcut: tch
  1800. # torznab engine lets you query any torznab compatible indexer. Using this
  1801. # engine in combination with Jackett opens the possibility to query a lot of
  1802. # public and private indexers directly from SearXNG. More details at:
  1803. # https://docs.searxng.org/dev/engines/online/torznab.html
  1804. #
  1805. # - name: Torznab EZTV
  1806. # engine: torznab
  1807. # shortcut: eztv
  1808. # base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
  1809. # enable_http: true # if using localhost
  1810. # api_key: xxxxxxxxxxxxxxx
  1811. # show_magnet_links: true
  1812. # show_torrent_files: false
  1813. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1814. # torznab_categories: # optional
  1815. # - 2000
  1816. # - 5000
  1817. # tmp suspended - too slow, too many errors
  1818. # - name: urbandictionary
  1819. # engine : xpath
  1820. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1821. # url_xpath : //*[@class="word"]/@href
  1822. # title_xpath : //*[@class="def-header"]
  1823. # content_xpath: //*[@class="meaning"]
  1824. # shortcut: ud
  1825. - name: unsplash
  1826. engine: unsplash
  1827. shortcut: us
  1828. - name: yandex
  1829. engine: yandex
  1830. categories: general
  1831. search_type: web
  1832. shortcut: yd
  1833. disabled: true
  1834. inactive: true
  1835. - name: yandex images
  1836. engine: yandex
  1837. categories: images
  1838. search_type: images
  1839. shortcut: ydi
  1840. disabled: true
  1841. inactive: true
  1842. - name: yandex music
  1843. engine: yandex_music
  1844. shortcut: ydm
  1845. disabled: true
  1846. # https://yandex.com/support/music/access.html
  1847. inactive: true
  1848. - name: yahoo
  1849. engine: yahoo
  1850. shortcut: yh
  1851. disabled: true
  1852. - name: yahoo news
  1853. engine: yahoo_news
  1854. shortcut: yhn
  1855. - name: youtube
  1856. shortcut: yt
  1857. # You can use the engine using the official stable API, but you need an API
  1858. # key See: https://console.developers.google.com/project
  1859. #
  1860. # engine: youtube_api
  1861. # api_key: 'apikey' # required!
  1862. #
  1863. # Or you can use the html non-stable engine, activated by default
  1864. engine: youtube_noapi
  1865. - name: dailymotion
  1866. engine: dailymotion
  1867. shortcut: dm
  1868. - name: vimeo
  1869. engine: vimeo
  1870. shortcut: vm
  1871. - name: wiby
  1872. engine: json_engine
  1873. paging: true
  1874. search_url: https://wiby.me/json/?q={query}&p={pageno}
  1875. url_query: URL
  1876. title_query: Title
  1877. content_query: Snippet
  1878. categories: [general, web]
  1879. shortcut: wib
  1880. disabled: true
  1881. about:
  1882. website: https://wiby.me/
  1883. - name: wikibooks
  1884. engine: mediawiki
  1885. weight: 0.5
  1886. shortcut: wb
  1887. categories: [general, wikimedia]
  1888. base_url: "https://{language}.wikibooks.org/"
  1889. search_type: text
  1890. disabled: true
  1891. about:
  1892. website: https://www.wikibooks.org/
  1893. wikidata_id: Q367
  1894. - name: wikinews
  1895. engine: mediawiki
  1896. shortcut: wn
  1897. categories: [news, wikimedia]
  1898. base_url: "https://{language}.wikinews.org/"
  1899. search_type: text
  1900. srsort: create_timestamp_desc
  1901. about:
  1902. website: https://www.wikinews.org/
  1903. wikidata_id: Q964
  1904. - name: wikiquote
  1905. engine: mediawiki
  1906. weight: 0.5
  1907. shortcut: wq
  1908. categories: [general, wikimedia]
  1909. base_url: "https://{language}.wikiquote.org/"
  1910. search_type: text
  1911. disabled: true
  1912. additional_tests:
  1913. rosebud: *test_rosebud
  1914. about:
  1915. website: https://www.wikiquote.org/
  1916. wikidata_id: Q369
  1917. - name: wikisource
  1918. engine: mediawiki
  1919. weight: 0.5
  1920. shortcut: ws
  1921. categories: [general, wikimedia]
  1922. base_url: "https://{language}.wikisource.org/"
  1923. search_type: text
  1924. disabled: true
  1925. about:
  1926. website: https://www.wikisource.org/
  1927. wikidata_id: Q263
  1928. - name: wikispecies
  1929. engine: mediawiki
  1930. shortcut: wsp
  1931. categories: [general, science, wikimedia]
  1932. base_url: "https://species.wikimedia.org/"
  1933. search_type: text
  1934. disabled: true
  1935. about:
  1936. website: https://species.wikimedia.org/
  1937. wikidata_id: Q13679
  1938. tests:
  1939. wikispecies:
  1940. matrix:
  1941. query: "Campbell, L.I. et al. 2011: MicroRNAs"
  1942. lang: en
  1943. result_container:
  1944. - not_empty
  1945. - ['one_title_contains', 'Tardigrada']
  1946. test:
  1947. - unique_results
  1948. - name: wiktionary
  1949. engine: mediawiki
  1950. shortcut: wt
  1951. categories: [dictionaries, wikimedia]
  1952. base_url: "https://{language}.wiktionary.org/"
  1953. search_type: text
  1954. about:
  1955. website: https://www.wiktionary.org/
  1956. wikidata_id: Q151
  1957. - name: wikiversity
  1958. engine: mediawiki
  1959. weight: 0.5
  1960. shortcut: wv
  1961. categories: [general, wikimedia]
  1962. base_url: "https://{language}.wikiversity.org/"
  1963. search_type: text
  1964. disabled: true
  1965. about:
  1966. website: https://www.wikiversity.org/
  1967. wikidata_id: Q370
  1968. - name: wikivoyage
  1969. engine: mediawiki
  1970. weight: 0.5
  1971. shortcut: wy
  1972. categories: [general, wikimedia]
  1973. base_url: "https://{language}.wikivoyage.org/"
  1974. search_type: text
  1975. disabled: true
  1976. about:
  1977. website: https://www.wikivoyage.org/
  1978. wikidata_id: Q373
  1979. - name: wikicommons.images
  1980. engine: wikicommons
  1981. shortcut: wc
  1982. categories: images
  1983. search_type: images
  1984. number_of_results: 10
  1985. - name: wikicommons.videos
  1986. engine: wikicommons
  1987. shortcut: wcv
  1988. categories: videos
  1989. search_type: videos
  1990. number_of_results: 10
  1991. - name: wikicommons.audio
  1992. engine: wikicommons
  1993. shortcut: wca
  1994. categories: music
  1995. search_type: audio
  1996. number_of_results: 10
  1997. - name: wikicommons.files
  1998. engine: wikicommons
  1999. shortcut: wcf
  2000. categories: files
  2001. search_type: files
  2002. number_of_results: 10
  2003. - name: wolframalpha
  2004. shortcut: wa
  2005. # You can use the engine using the official stable API, but you need an API
  2006. # key. See: https://products.wolframalpha.com/api/
  2007. #
  2008. # engine: wolframalpha_api
  2009. # api_key: ''
  2010. #
  2011. # Or you can use the html non-stable engine, activated by default
  2012. engine: wolframalpha_noapi
  2013. timeout: 6.0
  2014. categories: general
  2015. disabled: true
  2016. - name: dictzone
  2017. engine: dictzone
  2018. shortcut: dc
  2019. - name: mymemory translated
  2020. engine: translated
  2021. shortcut: tl
  2022. timeout: 5.0
  2023. # You can use without an API key, but you are limited to 1000 words/day
  2024. # See: https://mymemory.translated.net/doc/usagelimits.php
  2025. # api_key: ''
  2026. # Required dependency: mysql-connector-python
  2027. # - name: mysql
  2028. # engine: mysql_server
  2029. # database: mydatabase
  2030. # username: user
  2031. # password: pass
  2032. # limit: 10
  2033. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  2034. # shortcut: mysql
  2035. # Required dependency: mariadb
  2036. # - name: mariadb
  2037. # engine: mariadb_server
  2038. # database: mydatabase
  2039. # username: user
  2040. # password: pass
  2041. # limit: 10
  2042. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  2043. # shortcut: mdb
  2044. - name: 1337x
  2045. engine: 1337x
  2046. shortcut: 1337x
  2047. disabled: true
  2048. - name: duden
  2049. engine: duden
  2050. shortcut: du
  2051. disabled: true
  2052. - name: seznam
  2053. shortcut: szn
  2054. engine: seznam
  2055. disabled: true
  2056. # - name: deepl
  2057. # engine: deepl
  2058. # shortcut: dpl
  2059. # # You can use the engine using the official stable API, but you need an API key
  2060. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  2061. # api_key: '' # required!
  2062. # timeout: 5.0
  2063. # disabled: true
  2064. - name: mojeek
  2065. shortcut: mjk
  2066. engine: mojeek
  2067. categories: [general, web]
  2068. disabled: true
  2069. - name: mojeek images
  2070. shortcut: mjkimg
  2071. engine: mojeek
  2072. categories: [images, web]
  2073. search_type: images
  2074. paging: false
  2075. disabled: true
  2076. - name: mojeek news
  2077. shortcut: mjknews
  2078. engine: mojeek
  2079. categories: [news, web]
  2080. search_type: news
  2081. paging: false
  2082. disabled: true
  2083. - name: moviepilot
  2084. engine: moviepilot
  2085. shortcut: mp
  2086. disabled: true
  2087. - name: naver
  2088. shortcut: nvr
  2089. categories: [general, web]
  2090. engine: xpath
  2091. paging: true
  2092. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  2093. url_xpath: //a[@class="link_tit"]/@href
  2094. title_xpath: //a[@class="link_tit"]
  2095. content_xpath: //div[@class="total_dsc_wrap"]/a
  2096. first_page_num: 1
  2097. page_size: 10
  2098. disabled: true
  2099. about:
  2100. website: https://www.naver.com/
  2101. wikidata_id: Q485639
  2102. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  2103. use_official_api: false
  2104. require_api_key: false
  2105. results: HTML
  2106. language: ko
  2107. - name: rubygems
  2108. shortcut: rbg
  2109. engine: xpath
  2110. paging: true
  2111. search_url: https://rubygems.org/search?page={pageno}&query={query}
  2112. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  2113. url_xpath: ./@href
  2114. title_xpath: ./span/h2
  2115. content_xpath: ./span/p
  2116. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  2117. first_page_num: 1
  2118. categories: [it, packages]
  2119. disabled: true
  2120. about:
  2121. website: https://rubygems.org/
  2122. wikidata_id: Q1853420
  2123. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  2124. use_official_api: false
  2125. require_api_key: false
  2126. results: HTML
  2127. - name: peertube
  2128. engine: peertube
  2129. shortcut: ptb
  2130. paging: true
  2131. # alternatives see: https://instances.joinpeertube.org/instances
  2132. # base_url: https://tube.4aem.com
  2133. categories: videos
  2134. disabled: true
  2135. timeout: 6.0
  2136. - name: mediathekviewweb
  2137. engine: mediathekviewweb
  2138. shortcut: mvw
  2139. disabled: true
  2140. - name: yacy
  2141. # https://docs.searxng.org/dev/engines/online/yacy.html
  2142. engine: yacy
  2143. categories: general
  2144. search_type: text
  2145. base_url:
  2146. - https://yacy.searchlab.eu
  2147. # see https://github.com/searxng/searxng/pull/3631#issuecomment-2240903027
  2148. # - https://search.kyun.li
  2149. # - https://yacy.securecomcorp.eu
  2150. # - https://yacy.myserv.ca
  2151. # - https://yacy.nsupdate.info
  2152. # - https://yacy.electroncash.de
  2153. shortcut: ya
  2154. disabled: true
  2155. # if you aren't using HTTPS for your local yacy instance disable https
  2156. # enable_http: false
  2157. search_mode: 'global'
  2158. # timeout can be reduced in 'local' search mode
  2159. timeout: 5.0
  2160. - name: yacy images
  2161. engine: yacy
  2162. network: yacy
  2163. categories: images
  2164. search_type: image
  2165. shortcut: yai
  2166. disabled: true
  2167. # timeout can be reduced in 'local' search mode
  2168. timeout: 5.0
  2169. - name: rumble
  2170. engine: rumble
  2171. shortcut: ru
  2172. base_url: https://rumble.com/
  2173. paging: true
  2174. categories: videos
  2175. disabled: true
  2176. - name: livespace
  2177. engine: livespace
  2178. shortcut: ls
  2179. categories: videos
  2180. disabled: true
  2181. timeout: 5.0
  2182. - name: wordnik
  2183. engine: wordnik
  2184. shortcut: def
  2185. categories: [dictionaries]
  2186. timeout: 5.0
  2187. - name: woxikon.de synonyme
  2188. engine: xpath
  2189. shortcut: woxi
  2190. categories: [dictionaries]
  2191. timeout: 5.0
  2192. disabled: true
  2193. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  2194. url_xpath: //div[@class="upper-synonyms"]/a/@href
  2195. content_xpath: //div[@class="synonyms-list-group"]
  2196. title_xpath: //div[@class="upper-synonyms"]/a
  2197. no_result_for_http_status: [404]
  2198. about:
  2199. website: https://www.woxikon.de/
  2200. wikidata_id: # No Wikidata ID
  2201. use_official_api: false
  2202. require_api_key: false
  2203. results: HTML
  2204. language: de
  2205. - name: seekr news
  2206. engine: seekr
  2207. shortcut: senews
  2208. categories: news
  2209. seekr_category: news
  2210. disabled: true
  2211. - name: seekr images
  2212. engine: seekr
  2213. network: seekr news
  2214. shortcut: seimg
  2215. categories: images
  2216. seekr_category: images
  2217. disabled: true
  2218. - name: seekr videos
  2219. engine: seekr
  2220. network: seekr news
  2221. shortcut: sevid
  2222. categories: videos
  2223. seekr_category: videos
  2224. disabled: true
  2225. - name: stract
  2226. engine: stract
  2227. shortcut: str
  2228. disabled: true
  2229. - name: svgrepo
  2230. engine: svgrepo
  2231. shortcut: svg
  2232. timeout: 10.0
  2233. disabled: true
  2234. - name: tootfinder
  2235. engine: tootfinder
  2236. shortcut: toot
  2237. - name: voidlinux
  2238. engine: voidlinux
  2239. shortcut: void
  2240. disabled: true
  2241. - name: wallhaven
  2242. engine: wallhaven
  2243. # api_key: abcdefghijklmnopqrstuvwxyz
  2244. shortcut: wh
  2245. # wikimini: online encyclopedia for children
  2246. # The fulltext and title parameter is necessary for Wikimini because
  2247. # sometimes it will not show the results and redirect instead
  2248. - name: wikimini
  2249. engine: xpath
  2250. shortcut: wkmn
  2251. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  2252. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  2253. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  2254. content_xpath: //li/div[@class="searchresult"]
  2255. categories: general
  2256. disabled: true
  2257. about:
  2258. website: https://wikimini.org/
  2259. wikidata_id: Q3568032
  2260. use_official_api: false
  2261. require_api_key: false
  2262. results: HTML
  2263. language: fr
  2264. - name: wttr.in
  2265. engine: wttr
  2266. shortcut: wttr
  2267. timeout: 9.0
  2268. - name: yummly
  2269. engine: yummly
  2270. shortcut: yum
  2271. disabled: true
  2272. - name: brave
  2273. engine: brave
  2274. shortcut: br
  2275. time_range_support: true
  2276. paging: true
  2277. categories: [general, web]
  2278. brave_category: search
  2279. # brave_spellcheck: true
  2280. - name: brave.images
  2281. engine: brave
  2282. network: brave
  2283. shortcut: brimg
  2284. categories: [images, web]
  2285. brave_category: images
  2286. - name: brave.videos
  2287. engine: brave
  2288. network: brave
  2289. shortcut: brvid
  2290. categories: [videos, web]
  2291. brave_category: videos
  2292. - name: brave.news
  2293. engine: brave
  2294. network: brave
  2295. shortcut: brnews
  2296. categories: news
  2297. brave_category: news
  2298. # - name: brave.goggles
  2299. # engine: brave
  2300. # network: brave
  2301. # shortcut: brgog
  2302. # time_range_support: true
  2303. # paging: true
  2304. # categories: [general, web]
  2305. # brave_category: goggles
  2306. # Goggles: # required! This should be a URL ending in .goggle
  2307. - name: lib.rs
  2308. shortcut: lrs
  2309. engine: lib_rs
  2310. disabled: true
  2311. - name: sourcehut
  2312. shortcut: srht
  2313. engine: xpath
  2314. paging: true
  2315. search_url: https://sr.ht/projects?page={pageno}&search={query}
  2316. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  2317. url_xpath: ./h4/a[2]/@href
  2318. title_xpath: ./h4/a[2]
  2319. content_xpath: ./p
  2320. first_page_num: 1
  2321. categories: [it, repos]
  2322. disabled: true
  2323. about:
  2324. website: https://sr.ht
  2325. wikidata_id: Q78514485
  2326. official_api_documentation: https://man.sr.ht/
  2327. use_official_api: false
  2328. require_api_key: false
  2329. results: HTML
  2330. - name: goo
  2331. shortcut: goo
  2332. engine: xpath
  2333. paging: true
  2334. search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
  2335. url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
  2336. title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
  2337. content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
  2338. first_page_num: 0
  2339. categories: [general, web]
  2340. disabled: true
  2341. timeout: 4.0
  2342. about:
  2343. website: https://search.goo.ne.jp
  2344. wikidata_id: Q249044
  2345. use_official_api: false
  2346. require_api_key: false
  2347. results: HTML
  2348. language: ja
  2349. - name: bt4g
  2350. engine: bt4g
  2351. shortcut: bt4g
  2352. - name: pkg.go.dev
  2353. engine: pkg_go_dev
  2354. shortcut: pgo
  2355. disabled: true
  2356. - name: senscritique
  2357. engine: senscritique
  2358. shortcut: scr
  2359. timeout: 4.0
  2360. disabled: true
  2361. # Doku engine lets you access to any Doku wiki instance:
  2362. # A public one or a privete/corporate one.
  2363. # - name: ubuntuwiki
  2364. # engine: doku
  2365. # shortcut: uw
  2366. # base_url: 'https://doc.ubuntu-fr.org'
  2367. # Be careful when enabling this engine if you are
  2368. # running a public instance. Do not expose any sensitive
  2369. # information. You can restrict access by configuring a list
  2370. # of access tokens under tokens.
  2371. # - name: git grep
  2372. # engine: command
  2373. # command: ['git', 'grep', '{{QUERY}}']
  2374. # shortcut: gg
  2375. # tokens: []
  2376. # disabled: true
  2377. # delimiter:
  2378. # chars: ':'
  2379. # keys: ['filepath', 'code']
  2380. # Be careful when enabling this engine if you are
  2381. # running a public instance. Do not expose any sensitive
  2382. # information. You can restrict access by configuring a list
  2383. # of access tokens under tokens.
  2384. # - name: locate
  2385. # engine: command
  2386. # command: ['locate', '{{QUERY}}']
  2387. # shortcut: loc
  2388. # tokens: []
  2389. # disabled: true
  2390. # delimiter:
  2391. # chars: ' '
  2392. # keys: ['line']
  2393. # Be careful when enabling this engine if you are
  2394. # running a public instance. Do not expose any sensitive
  2395. # information. You can restrict access by configuring a list
  2396. # of access tokens under tokens.
  2397. # - name: find
  2398. # engine: command
  2399. # command: ['find', '.', '-name', '{{QUERY}}']
  2400. # query_type: path
  2401. # shortcut: fnd
  2402. # tokens: []
  2403. # disabled: true
  2404. # delimiter:
  2405. # chars: ' '
  2406. # keys: ['line']
  2407. # Be careful when enabling this engine if you are
  2408. # running a public instance. Do not expose any sensitive
  2409. # information. You can restrict access by configuring a list
  2410. # of access tokens under tokens.
  2411. # - name: pattern search in files
  2412. # engine: command
  2413. # command: ['fgrep', '{{QUERY}}']
  2414. # shortcut: fgr
  2415. # tokens: []
  2416. # disabled: true
  2417. # delimiter:
  2418. # chars: ' '
  2419. # keys: ['line']
  2420. # Be careful when enabling this engine if you are
  2421. # running a public instance. Do not expose any sensitive
  2422. # information. You can restrict access by configuring a list
  2423. # of access tokens under tokens.
  2424. # - name: regex search in files
  2425. # engine: command
  2426. # command: ['grep', '{{QUERY}}']
  2427. # shortcut: gr
  2428. # tokens: []
  2429. # disabled: true
  2430. # delimiter:
  2431. # chars: ' '
  2432. # keys: ['line']
  2433. doi_resolvers:
  2434. oadoi.org: 'https://oadoi.org/'
  2435. doi.org: 'https://doi.org/'
  2436. doai.io: 'https://dissem.in/'
  2437. sci-hub.se: 'https://sci-hub.se/'
  2438. sci-hub.st: 'https://sci-hub.st/'
  2439. sci-hub.ru: 'https://sci-hub.ru/'
  2440. default_doi_resolver: 'oadoi.org'