settings.yml 67 KB

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