settings.yml 68 KB

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