settings.yml 67 KB

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