settings.yml 65 KB

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