settings.yml 60 KB

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