settings.yml 58 KB

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