settings.yml 67 KB

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