settings.yml 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175
  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_images
  546. shortcut: ddi
  547. timeout: 3.0
  548. disabled: true
  549. - name: duckduckgo weather
  550. engine: duckduckgo_weather
  551. shortcut: ddw
  552. disabled: true
  553. - name: apple maps
  554. engine: apple_maps
  555. shortcut: apm
  556. disabled: true
  557. timeout: 5.0
  558. - name: emojipedia
  559. engine: emojipedia
  560. timeout: 4.0
  561. shortcut: em
  562. disabled: true
  563. - name: tineye
  564. engine: tineye
  565. shortcut: tin
  566. timeout: 9.0
  567. disabled: true
  568. - name: etymonline
  569. engine: xpath
  570. paging: true
  571. search_url: https://etymonline.com/search?page={pageno}&q={query}
  572. url_xpath: //a[contains(@class, "word__name--")]/@href
  573. title_xpath: //a[contains(@class, "word__name--")]
  574. content_xpath: //section[contains(@class, "word__defination")]
  575. first_page_num: 1
  576. shortcut: et
  577. categories: [dictionaries]
  578. about:
  579. website: https://www.etymonline.com/
  580. wikidata_id: Q1188617
  581. official_api_documentation:
  582. use_official_api: false
  583. require_api_key: false
  584. results: HTML
  585. # - name: ebay
  586. # engine: ebay
  587. # shortcut: eb
  588. # base_url: 'https://www.ebay.com'
  589. # disabled: true
  590. # timeout: 5
  591. - name: 1x
  592. engine: www1x
  593. shortcut: 1x
  594. timeout: 3.0
  595. disabled: true
  596. - name: fdroid
  597. engine: fdroid
  598. shortcut: fd
  599. disabled: true
  600. - name: flickr
  601. categories: images
  602. shortcut: fl
  603. # You can use the engine using the official stable API, but you need an API
  604. # key, see: https://www.flickr.com/services/apps/create/
  605. # engine: flickr
  606. # api_key: 'apikey' # required!
  607. # Or you can use the html non-stable engine, activated by default
  608. engine: flickr_noapi
  609. - name: free software directory
  610. engine: mediawiki
  611. shortcut: fsd
  612. categories: [it, software wikis]
  613. base_url: https://directory.fsf.org/
  614. search_type: title
  615. timeout: 5.0
  616. disabled: true
  617. about:
  618. website: https://directory.fsf.org/
  619. wikidata_id: Q2470288
  620. # - name: freesound
  621. # engine: freesound
  622. # shortcut: fnd
  623. # disabled: true
  624. # timeout: 15.0
  625. # API key required, see: https://freesound.org/docs/api/overview.html
  626. # api_key: MyAPIkey
  627. - name: frinkiac
  628. engine: frinkiac
  629. shortcut: frk
  630. disabled: true
  631. - name: genius
  632. engine: genius
  633. shortcut: gen
  634. - name: gentoo
  635. engine: gentoo
  636. shortcut: ge
  637. timeout: 10.0
  638. - name: gitlab
  639. engine: json_engine
  640. paging: true
  641. search_url: https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  642. url_query: web_url
  643. title_query: name_with_namespace
  644. content_query: description
  645. page_size: 20
  646. categories: [it, repos]
  647. shortcut: gl
  648. timeout: 10.0
  649. disabled: true
  650. about:
  651. website: https://about.gitlab.com/
  652. wikidata_id: Q16639197
  653. official_api_documentation: https://docs.gitlab.com/ee/api/
  654. use_official_api: false
  655. require_api_key: false
  656. results: JSON
  657. - name: github
  658. engine: github
  659. shortcut: gh
  660. # This a Gitea service. If you would like to use a different instance,
  661. # change codeberg.org to URL of the desired Gitea host. Or you can create a
  662. # new engine by copying this and changing the name, shortcut and search_url.
  663. - name: codeberg
  664. engine: json_engine
  665. search_url: https://codeberg.org/api/v1/repos/search?q={query}&limit=10
  666. url_query: html_url
  667. title_query: name
  668. content_query: description
  669. categories: [it, repos]
  670. shortcut: cb
  671. disabled: true
  672. about:
  673. website: https://codeberg.org/
  674. wikidata_id:
  675. official_api_documentation: https://try.gitea.io/api/swagger
  676. use_official_api: false
  677. require_api_key: false
  678. results: JSON
  679. - name: google
  680. engine: google
  681. shortcut: go
  682. # additional_tests:
  683. # android: *test_android
  684. - name: google images
  685. engine: google_images
  686. shortcut: goi
  687. # additional_tests:
  688. # android: *test_android
  689. # dali:
  690. # matrix:
  691. # query: ['Dali Christ']
  692. # lang: ['en', 'de', 'fr', 'zh-CN']
  693. # result_container:
  694. # - ['one_title_contains', 'Salvador']
  695. - name: google news
  696. engine: google_news
  697. shortcut: gon
  698. # additional_tests:
  699. # android: *test_android
  700. - name: google videos
  701. engine: google_videos
  702. shortcut: gov
  703. # additional_tests:
  704. # android: *test_android
  705. - name: google scholar
  706. engine: google_scholar
  707. shortcut: gos
  708. - name: google play apps
  709. engine: google_play
  710. categories: [files, apps]
  711. shortcut: gpa
  712. play_categ: apps
  713. disabled: true
  714. - name: google play movies
  715. engine: google_play
  716. categories: videos
  717. shortcut: gpm
  718. play_categ: movies
  719. disabled: true
  720. - name: material icons
  721. engine: material_icons
  722. categories: images
  723. shortcut: mi
  724. disabled: true
  725. - name: gpodder
  726. engine: json_engine
  727. shortcut: gpod
  728. timeout: 4.0
  729. paging: false
  730. search_url: https://gpodder.net/search.json?q={query}
  731. url_query: url
  732. title_query: title
  733. content_query: description
  734. page_size: 19
  735. categories: music
  736. disabled: true
  737. about:
  738. website: https://gpodder.net
  739. wikidata_id: Q3093354
  740. official_api_documentation: https://gpoddernet.readthedocs.io/en/latest/api/
  741. use_official_api: false
  742. requires_api_key: false
  743. results: JSON
  744. - name: habrahabr
  745. engine: xpath
  746. paging: true
  747. search_url: https://habr.com/en/search/page{pageno}/?q={query}
  748. results_xpath: //article[contains(@class, "tm-articles-list__item")]
  749. url_xpath: .//a[@class="tm-title__link"]/@href
  750. title_xpath: .//a[@class="tm-title__link"]
  751. content_xpath: .//div[contains(@class, "article-formatted-body")]
  752. categories: it
  753. timeout: 4.0
  754. disabled: true
  755. shortcut: habr
  756. about:
  757. website: https://habr.com/
  758. wikidata_id: Q4494434
  759. official_api_documentation: https://habr.com/en/docs/help/api/
  760. use_official_api: false
  761. require_api_key: false
  762. results: HTML
  763. - name: hoogle
  764. engine: xpath
  765. paging: true
  766. search_url: https://hoogle.haskell.org/?hoogle={query}&start={pageno}
  767. results_xpath: '//div[@class="result"]'
  768. title_xpath: './/div[@class="ans"]//a'
  769. url_xpath: './/div[@class="ans"]//a/@href'
  770. content_xpath: './/div[@class="from"]'
  771. page_size: 20
  772. categories: [it, packages]
  773. shortcut: ho
  774. about:
  775. website: https://hoogle.haskell.org/
  776. wikidata_id: Q34010
  777. official_api_documentation: https://hackage.haskell.org/api
  778. use_official_api: false
  779. require_api_key: false
  780. results: JSON
  781. - name: imdb
  782. engine: imdb
  783. shortcut: imdb
  784. timeout: 6.0
  785. disabled: true
  786. - name: imgur
  787. engine: imgur
  788. shortcut: img
  789. disabled: true
  790. - name: ina
  791. engine: ina
  792. shortcut: in
  793. timeout: 6.0
  794. disabled: true
  795. - name: invidious
  796. engine: invidious
  797. # Instanes will be selected randomly, see https://api.invidious.io/ for
  798. # instances that are stable (good uptime) and close to you.
  799. base_url:
  800. - https://invidious.io.lol
  801. - https://invidious.fdn.fr
  802. - https://yt.artemislena.eu
  803. - https://invidious.tiekoetter.com
  804. - https://invidious.flokinet.to
  805. - https://vid.puffyan.us
  806. - https://invidious.privacydev.net
  807. - https://inv.tux.pizza
  808. shortcut: iv
  809. timeout: 3.0
  810. disabled: true
  811. - name: jisho
  812. engine: jisho
  813. shortcut: js
  814. timeout: 3.0
  815. disabled: true
  816. - name: kickass
  817. engine: kickass
  818. base_url:
  819. - https://kickasstorrents.to
  820. - https://kickasstorrents.cr
  821. - https://kickasstorrent.cr
  822. - https://kickass.sx
  823. - https://kat.am
  824. shortcut: kc
  825. timeout: 4.0
  826. - name: lemmy communities
  827. engine: lemmy
  828. lemmy_type: Communities
  829. shortcut: leco
  830. - name: lemmy users
  831. engine: lemmy
  832. network: lemmy communities
  833. lemmy_type: Users
  834. shortcut: leus
  835. - name: lemmy posts
  836. engine: lemmy
  837. network: lemmy communities
  838. lemmy_type: Posts
  839. shortcut: lepo
  840. - name: lemmy comments
  841. engine: lemmy
  842. network: lemmy communities
  843. lemmy_type: Comments
  844. shortcut: lecom
  845. - name: library genesis
  846. engine: xpath
  847. search_url: https://libgen.fun/search.php?req={query}
  848. url_xpath: //a[contains(@href,"get.php?md5")]/@href
  849. title_xpath: //a[contains(@href,"book/")]/text()[1]
  850. content_xpath: //td/a[1][contains(@href,"=author")]/text()
  851. categories: files
  852. timeout: 7.0
  853. disabled: true
  854. shortcut: lg
  855. about:
  856. website: https://libgen.fun/
  857. wikidata_id: Q22017206
  858. official_api_documentation:
  859. use_official_api: false
  860. require_api_key: false
  861. results: HTML
  862. - name: z-library
  863. engine: zlibrary
  864. shortcut: zlib
  865. categories: files
  866. timeout: 7.0
  867. - name: library of congress
  868. engine: loc
  869. shortcut: loc
  870. categories: images
  871. - name: lingva
  872. engine: lingva
  873. shortcut: lv
  874. # set lingva instance in url, by default it will use the official instance
  875. # url: https://lingva.ml
  876. - name: lobste.rs
  877. engine: xpath
  878. search_url: https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  879. results_xpath: //li[contains(@class, "story")]
  880. url_xpath: .//a[@class="u-url"]/@href
  881. title_xpath: .//a[@class="u-url"]
  882. content_xpath: .//a[@class="domain"]
  883. categories: it
  884. shortcut: lo
  885. timeout: 5.0
  886. disabled: true
  887. about:
  888. website: https://lobste.rs/
  889. wikidata_id: Q60762874
  890. official_api_documentation:
  891. use_official_api: false
  892. require_api_key: false
  893. results: HTML
  894. - name: azlyrics
  895. shortcut: lyrics
  896. engine: xpath
  897. timeout: 4.0
  898. disabled: true
  899. categories: [music, lyrics]
  900. paging: true
  901. search_url: https://search.azlyrics.com/search.php?q={query}&w=lyrics&p={pageno}
  902. url_xpath: //td[@class="text-left visitedlyr"]/a/@href
  903. title_xpath: //span/b/text()
  904. content_xpath: //td[@class="text-left visitedlyr"]/a/small
  905. about:
  906. website: https://azlyrics.com
  907. wikidata_id: Q66372542
  908. official_api_documentation:
  909. use_official_api: false
  910. require_api_key: false
  911. results: HTML
  912. - name: metacpan
  913. engine: metacpan
  914. shortcut: cpan
  915. disabled: true
  916. number_of_results: 20
  917. # - name: meilisearch
  918. # engine: meilisearch
  919. # shortcut: mes
  920. # enable_http: true
  921. # base_url: http://localhost:7700
  922. # index: my-index
  923. - name: mixcloud
  924. engine: mixcloud
  925. shortcut: mc
  926. # MongoDB engine
  927. # Required dependency: pymongo
  928. # - name: mymongo
  929. # engine: mongodb
  930. # shortcut: md
  931. # exact_match_only: false
  932. # host: '127.0.0.1'
  933. # port: 27017
  934. # enable_http: true
  935. # results_per_page: 20
  936. # database: 'business'
  937. # collection: 'reviews' # name of the db collection
  938. # key: 'name' # key in the collection to search for
  939. - name: mwmbl
  940. engine: mwmbl
  941. # api_url: https://api.mwmbl.org
  942. shortcut: mwm
  943. disabled: true
  944. - name: npm
  945. engine: json_engine
  946. paging: true
  947. first_page_num: 0
  948. search_url: https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  949. results_query: results
  950. url_query: package/links/npm
  951. title_query: package/name
  952. content_query: package/description
  953. page_size: 25
  954. categories: [it, packages]
  955. disabled: true
  956. timeout: 5.0
  957. shortcut: npm
  958. about:
  959. website: https://npms.io/
  960. wikidata_id: Q7067518
  961. official_api_documentation: https://api-docs.npms.io/
  962. use_official_api: false
  963. require_api_key: false
  964. results: JSON
  965. - name: nyaa
  966. engine: nyaa
  967. shortcut: nt
  968. disabled: true
  969. - name: mankier
  970. engine: json_engine
  971. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  972. results_query: results
  973. url_query: url
  974. title_query: name
  975. content_query: description
  976. categories: it
  977. shortcut: man
  978. about:
  979. website: https://www.mankier.com/
  980. official_api_documentation: https://www.mankier.com/api
  981. use_official_api: true
  982. require_api_key: false
  983. results: JSON
  984. - name: odysee
  985. engine: odysee
  986. shortcut: od
  987. disabled: true
  988. - name: openairedatasets
  989. engine: json_engine
  990. paging: true
  991. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  992. results_query: response/results/result
  993. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  994. title_query: metadata/oaf:entity/oaf:result/title/$
  995. content_query: metadata/oaf:entity/oaf:result/description/$
  996. content_html_to_text: true
  997. categories: "science"
  998. shortcut: oad
  999. timeout: 5.0
  1000. about:
  1001. website: https://www.openaire.eu/
  1002. wikidata_id: Q25106053
  1003. official_api_documentation: https://api.openaire.eu/
  1004. use_official_api: false
  1005. require_api_key: false
  1006. results: JSON
  1007. - name: openairepublications
  1008. engine: json_engine
  1009. paging: true
  1010. search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  1011. results_query: response/results/result
  1012. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1013. title_query: metadata/oaf:entity/oaf:result/title/$
  1014. content_query: metadata/oaf:entity/oaf:result/description/$
  1015. content_html_to_text: true
  1016. categories: science
  1017. shortcut: oap
  1018. timeout: 5.0
  1019. about:
  1020. website: https://www.openaire.eu/
  1021. wikidata_id: Q25106053
  1022. official_api_documentation: https://api.openaire.eu/
  1023. use_official_api: false
  1024. require_api_key: false
  1025. results: JSON
  1026. # - name: opensemanticsearch
  1027. # engine: opensemantic
  1028. # shortcut: oss
  1029. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  1030. - name: openstreetmap
  1031. engine: openstreetmap
  1032. shortcut: osm
  1033. - name: openrepos
  1034. engine: xpath
  1035. paging: true
  1036. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  1037. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  1038. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  1039. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  1040. categories: files
  1041. timeout: 4.0
  1042. disabled: true
  1043. shortcut: or
  1044. about:
  1045. website: https://openrepos.net/
  1046. wikidata_id:
  1047. official_api_documentation:
  1048. use_official_api: false
  1049. require_api_key: false
  1050. results: HTML
  1051. - name: packagist
  1052. engine: json_engine
  1053. paging: true
  1054. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  1055. results_query: results
  1056. url_query: url
  1057. title_query: name
  1058. content_query: description
  1059. categories: [it, packages]
  1060. disabled: true
  1061. timeout: 5.0
  1062. shortcut: pack
  1063. about:
  1064. website: https://packagist.org
  1065. wikidata_id: Q108311377
  1066. official_api_documentation: https://packagist.org/apidoc
  1067. use_official_api: true
  1068. require_api_key: false
  1069. results: JSON
  1070. - name: pdbe
  1071. engine: pdbe
  1072. shortcut: pdb
  1073. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1074. # hide_obsolete: false
  1075. - name: photon
  1076. engine: photon
  1077. shortcut: ph
  1078. - name: piped
  1079. engine: piped
  1080. shortcut: ppd
  1081. categories: videos
  1082. piped_filter: videos
  1083. timeout: 3.0
  1084. # URL to use as link and for embeds
  1085. frontend_url: https://srv.piped.video
  1086. # Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
  1087. backend_url:
  1088. - https://pipedapi.kavin.rocks
  1089. - https://pipedapi-libre.kavin.rocks
  1090. - https://pipedapi.adminforge.de
  1091. - name: piped.music
  1092. engine: piped
  1093. network: piped
  1094. shortcut: ppdm
  1095. categories: music
  1096. piped_filter: music_songs
  1097. timeout: 3.0
  1098. - name: piratebay
  1099. engine: piratebay
  1100. shortcut: tpb
  1101. # You may need to change this URL to a proxy if piratebay is blocked in your
  1102. # country
  1103. url: https://thepiratebay.org/
  1104. timeout: 3.0
  1105. # Required dependency: psychopg2
  1106. # - name: postgresql
  1107. # engine: postgresql
  1108. # database: postgres
  1109. # username: postgres
  1110. # password: postgres
  1111. # limit: 10
  1112. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1113. # shortcut : psql
  1114. - name: pub.dev
  1115. engine: xpath
  1116. shortcut: pd
  1117. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1118. paging: true
  1119. results_xpath: //div[contains(@class,"packages-item")]
  1120. url_xpath: ./div/h3/a/@href
  1121. title_xpath: ./div/h3/a
  1122. content_xpath: ./div/div/div[contains(@class,"packages-description")]/span
  1123. categories: [packages, it]
  1124. timeout: 3.0
  1125. disabled: true
  1126. first_page_num: 1
  1127. about:
  1128. website: https://pub.dev/
  1129. official_api_documentation: https://pub.dev/help/api
  1130. use_official_api: false
  1131. require_api_key: false
  1132. results: HTML
  1133. - name: pubmed
  1134. engine: pubmed
  1135. shortcut: pub
  1136. timeout: 3.0
  1137. - name: pypi
  1138. shortcut: pypi
  1139. engine: xpath
  1140. paging: true
  1141. search_url: https://pypi.org/search/?q={query}&page={pageno}
  1142. results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"]
  1143. url_xpath: ./@href
  1144. title_xpath: ./h3/span[@class="package-snippet__name"]
  1145. content_xpath: ./p
  1146. suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"]
  1147. first_page_num: 1
  1148. categories: [it, packages]
  1149. about:
  1150. website: https://pypi.org
  1151. wikidata_id: Q2984686
  1152. official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html
  1153. use_official_api: false
  1154. require_api_key: false
  1155. results: HTML
  1156. - name: qwant
  1157. qwant_categ: web
  1158. engine: qwant
  1159. shortcut: qw
  1160. categories: [general, web]
  1161. additional_tests:
  1162. rosebud: *test_rosebud
  1163. - name: qwant news
  1164. qwant_categ: news
  1165. engine: qwant
  1166. shortcut: qwn
  1167. categories: news
  1168. network: qwant
  1169. - name: qwant images
  1170. qwant_categ: images
  1171. engine: qwant
  1172. shortcut: qwi
  1173. categories: [images, web]
  1174. network: qwant
  1175. - name: qwant videos
  1176. qwant_categ: videos
  1177. engine: qwant
  1178. shortcut: qwv
  1179. categories: [videos, web]
  1180. network: qwant
  1181. # - name: library
  1182. # engine: recoll
  1183. # shortcut: lib
  1184. # base_url: 'https://recoll.example.org/'
  1185. # search_dir: ''
  1186. # mount_prefix: /export
  1187. # dl_prefix: 'https://download.example.org'
  1188. # timeout: 30.0
  1189. # categories: files
  1190. # disabled: true
  1191. # - name: recoll library reference
  1192. # engine: recoll
  1193. # base_url: 'https://recoll.example.org/'
  1194. # search_dir: reference
  1195. # mount_prefix: /export
  1196. # dl_prefix: 'https://download.example.org'
  1197. # shortcut: libr
  1198. # timeout: 30.0
  1199. # categories: files
  1200. # disabled: true
  1201. - name: reddit
  1202. engine: reddit
  1203. shortcut: re
  1204. page_size: 25
  1205. # Required dependency: redis
  1206. # - name: myredis
  1207. # shortcut : rds
  1208. # engine: redis_server
  1209. # exact_match_only: false
  1210. # host: '127.0.0.1'
  1211. # port: 6379
  1212. # enable_http: true
  1213. # password: ''
  1214. # db: 0
  1215. # tmp suspended: bad certificate
  1216. # - name: scanr structures
  1217. # shortcut: scs
  1218. # engine: scanr_structures
  1219. # disabled: true
  1220. - name: sepiasearch
  1221. engine: sepiasearch
  1222. shortcut: sep
  1223. - name: soundcloud
  1224. engine: soundcloud
  1225. shortcut: sc
  1226. - name: stackoverflow
  1227. engine: stackexchange
  1228. shortcut: st
  1229. api_site: 'stackoverflow'
  1230. categories: [it, q&a]
  1231. - name: askubuntu
  1232. engine: stackexchange
  1233. shortcut: ubuntu
  1234. api_site: 'askubuntu'
  1235. categories: [it, q&a]
  1236. - name: internetarchivescholar
  1237. engine: internet_archive_scholar
  1238. shortcut: ias
  1239. timeout: 5.0
  1240. - name: superuser
  1241. engine: stackexchange
  1242. shortcut: su
  1243. api_site: 'superuser'
  1244. categories: [it, q&a]
  1245. - name: searchcode code
  1246. engine: searchcode_code
  1247. shortcut: scc
  1248. disabled: true
  1249. - name: framalibre
  1250. engine: framalibre
  1251. shortcut: frl
  1252. disabled: true
  1253. # - name: searx
  1254. # engine: searx_engine
  1255. # shortcut: se
  1256. # instance_urls :
  1257. # - http://127.0.0.1:8888/
  1258. # - ...
  1259. # disabled: true
  1260. - name: semantic scholar
  1261. engine: semantic_scholar
  1262. disabled: true
  1263. shortcut: se
  1264. # Spotify needs API credentials
  1265. # - name: spotify
  1266. # engine: spotify
  1267. # shortcut: stf
  1268. # api_client_id: *******
  1269. # api_client_secret: *******
  1270. # - name: solr
  1271. # engine: solr
  1272. # shortcut: slr
  1273. # base_url: http://localhost:8983
  1274. # collection: collection_name
  1275. # sort: '' # sorting: asc or desc
  1276. # field_list: '' # comma separated list of field names to display on the UI
  1277. # default_fields: '' # default field to query
  1278. # query_fields: '' # query fields
  1279. # enable_http: true
  1280. # - name: springer nature
  1281. # engine: springer
  1282. # # get your API key from: https://dev.springernature.com/signup
  1283. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1284. # api_key: 'unset'
  1285. # shortcut: springer
  1286. # timeout: 15.0
  1287. - name: startpage
  1288. engine: startpage
  1289. shortcut: sp
  1290. timeout: 6.0
  1291. disabled: true
  1292. additional_tests:
  1293. rosebud: *test_rosebud
  1294. - name: tokyotoshokan
  1295. engine: tokyotoshokan
  1296. shortcut: tt
  1297. timeout: 6.0
  1298. disabled: true
  1299. - name: solidtorrents
  1300. engine: solidtorrents
  1301. shortcut: solid
  1302. timeout: 4.0
  1303. base_url:
  1304. - https://solidtorrents.to
  1305. - https://bitsearch.to
  1306. # For this demo of the sqlite engine download:
  1307. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1308. # and unpack into searx/data/filmliste-v2.db
  1309. # Query to test: "!demo concert"
  1310. #
  1311. # - name: demo
  1312. # engine: sqlite
  1313. # shortcut: demo
  1314. # categories: general
  1315. # result_template: default.html
  1316. # database: searx/data/filmliste-v2.db
  1317. # query_str: >-
  1318. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1319. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1320. # description AS content
  1321. # FROM film
  1322. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1323. # ORDER BY duration DESC
  1324. - name: tagesschau
  1325. engine: tagesschau
  1326. shortcut: ts
  1327. disabled: true
  1328. - name: tmdb
  1329. engine: xpath
  1330. paging: true
  1331. categories: movies
  1332. search_url: https://www.themoviedb.org/search?page={pageno}&query={query}
  1333. results_xpath: //div[contains(@class,"movie") or contains(@class,"tv")]//div[contains(@class,"card")]
  1334. url_xpath: .//div[contains(@class,"poster")]/a/@href
  1335. thumbnail_xpath: .//img/@src
  1336. title_xpath: .//div[contains(@class,"title")]//h2
  1337. content_xpath: .//div[contains(@class,"overview")]
  1338. shortcut: tm
  1339. disabled: true
  1340. # Requires Tor
  1341. - name: torch
  1342. engine: xpath
  1343. paging: true
  1344. search_url:
  1345. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1346. results_xpath: //table//tr
  1347. url_xpath: ./td[2]/a
  1348. title_xpath: ./td[2]/b
  1349. content_xpath: ./td[2]/small
  1350. categories: onions
  1351. enable_http: true
  1352. shortcut: tch
  1353. # torznab engine lets you query any torznab compatible indexer. Using this
  1354. # engine in combination with Jackett opens the possibility to query a lot of
  1355. # public and private indexers directly from SearXNG. More details at:
  1356. # https://docs.searxng.org/dev/engines/online/torznab.html
  1357. #
  1358. # - name: Torznab EZTV
  1359. # engine: torznab
  1360. # shortcut: eztv
  1361. # base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
  1362. # enable_http: true # if using localhost
  1363. # api_key: xxxxxxxxxxxxxxx
  1364. # show_magnet_links: true
  1365. # show_torrent_files: false
  1366. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1367. # torznab_categories: # optional
  1368. # - 2000
  1369. # - 5000
  1370. # tmp suspended - too slow, too many errors
  1371. # - name: urbandictionary
  1372. # engine : xpath
  1373. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1374. # url_xpath : //*[@class="word"]/@href
  1375. # title_xpath : //*[@class="def-header"]
  1376. # content_xpath: //*[@class="meaning"]
  1377. # shortcut: ud
  1378. - name: unsplash
  1379. engine: unsplash
  1380. shortcut: us
  1381. - name: yahoo
  1382. engine: yahoo
  1383. shortcut: yh
  1384. disabled: true
  1385. - name: yahoo news
  1386. engine: yahoo_news
  1387. shortcut: yhn
  1388. - name: youtube
  1389. shortcut: yt
  1390. # You can use the engine using the official stable API, but you need an API
  1391. # key See: https://console.developers.google.com/project
  1392. #
  1393. # engine: youtube_api
  1394. # api_key: 'apikey' # required!
  1395. #
  1396. # Or you can use the html non-stable engine, activated by default
  1397. engine: youtube_noapi
  1398. - name: dailymotion
  1399. engine: dailymotion
  1400. shortcut: dm
  1401. - name: vimeo
  1402. engine: vimeo
  1403. shortcut: vm
  1404. - name: wiby
  1405. engine: json_engine
  1406. paging: true
  1407. search_url: https://wiby.me/json/?q={query}&p={pageno}
  1408. url_query: URL
  1409. title_query: Title
  1410. content_query: Snippet
  1411. categories: [general, web]
  1412. shortcut: wib
  1413. disabled: true
  1414. about:
  1415. website: https://wiby.me/
  1416. - name: alexandria
  1417. engine: json_engine
  1418. shortcut: alx
  1419. categories: general
  1420. paging: true
  1421. search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
  1422. results_query: results
  1423. title_query: title
  1424. url_query: url
  1425. content_query: snippet
  1426. timeout: 1.5
  1427. disabled: true
  1428. about:
  1429. website: https://alexandria.org/
  1430. official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
  1431. use_official_api: true
  1432. require_api_key: false
  1433. results: JSON
  1434. - name: wikibooks
  1435. engine: mediawiki
  1436. weight: 0.5
  1437. shortcut: wb
  1438. categories: [general, wikimedia]
  1439. base_url: "https://{language}.wikibooks.org/"
  1440. search_type: text
  1441. disabled: true
  1442. about:
  1443. website: https://www.wikibooks.org/
  1444. wikidata_id: Q367
  1445. - name: wikinews
  1446. engine: mediawiki
  1447. shortcut: wn
  1448. categories: [news, wikimedia]
  1449. base_url: "https://{language}.wikinews.org/"
  1450. search_type: text
  1451. srsort: create_timestamp_desc
  1452. about:
  1453. website: https://www.wikinews.org/
  1454. wikidata_id: Q964
  1455. - name: wikiquote
  1456. engine: mediawiki
  1457. weight: 0.5
  1458. shortcut: wq
  1459. categories: [general, wikimedia]
  1460. base_url: "https://{language}.wikiquote.org/"
  1461. search_type: text
  1462. disabled: true
  1463. additional_tests:
  1464. rosebud: *test_rosebud
  1465. about:
  1466. website: https://www.wikiquote.org/
  1467. wikidata_id: Q369
  1468. - name: wikisource
  1469. engine: mediawiki
  1470. weight: 0.5
  1471. shortcut: ws
  1472. categories: [general, wikimedia]
  1473. base_url: "https://{language}.wikisource.org/"
  1474. search_type: text
  1475. disabled: true
  1476. about:
  1477. website: https://www.wikisource.org/
  1478. wikidata_id: Q263
  1479. - name: wikispecies
  1480. engine: mediawiki
  1481. shortcut: wsp
  1482. categories: [general, science, wikimedia]
  1483. base_url: "https://species.wikimedia.org/"
  1484. search_type: text
  1485. disabled: true
  1486. about:
  1487. website: https://species.wikimedia.org/
  1488. wikidata_id: Q13679
  1489. - name: wiktionary
  1490. engine: mediawiki
  1491. shortcut: wt
  1492. categories: [dictionaries, wikimedia]
  1493. base_url: "https://{language}.wiktionary.org/"
  1494. search_type: text
  1495. about:
  1496. website: https://www.wiktionary.org/
  1497. wikidata_id: Q151
  1498. - name: wikiversity
  1499. engine: mediawiki
  1500. weight: 0.5
  1501. shortcut: wv
  1502. categories: [general, wikimedia]
  1503. base_url: "https://{language}.wikiversity.org/"
  1504. search_type: text
  1505. disabled: true
  1506. about:
  1507. website: https://www.wikiversity.org/
  1508. wikidata_id: Q370
  1509. - name: wikivoyage
  1510. engine: mediawiki
  1511. weight: 0.5
  1512. shortcut: wy
  1513. categories: [general, wikimedia]
  1514. base_url: "https://{language}.wikivoyage.org/"
  1515. search_type: text
  1516. disabled: true
  1517. about:
  1518. website: https://www.wikivoyage.org/
  1519. wikidata_id: Q373
  1520. - name: wikicommons.images
  1521. engine: wikicommons
  1522. shortcut: wc
  1523. categories: images
  1524. number_of_results: 10
  1525. - name: wolframalpha
  1526. shortcut: wa
  1527. # You can use the engine using the official stable API, but you need an API
  1528. # key. See: https://products.wolframalpha.com/api/
  1529. #
  1530. # engine: wolframalpha_api
  1531. # api_key: ''
  1532. #
  1533. # Or you can use the html non-stable engine, activated by default
  1534. engine: wolframalpha_noapi
  1535. timeout: 6.0
  1536. categories: general
  1537. disabled: true
  1538. - name: dictzone
  1539. engine: dictzone
  1540. shortcut: dc
  1541. - name: mymemory translated
  1542. engine: translated
  1543. shortcut: tl
  1544. timeout: 5.0
  1545. # You can use without an API key, but you are limited to 1000 words/day
  1546. # See: https://mymemory.translated.net/doc/usagelimits.php
  1547. # api_key: ''
  1548. # Required dependency: mysql-connector-python
  1549. # - name: mysql
  1550. # engine: mysql_server
  1551. # database: mydatabase
  1552. # username: user
  1553. # password: pass
  1554. # limit: 10
  1555. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1556. # shortcut: mysql
  1557. - name: 1337x
  1558. engine: 1337x
  1559. shortcut: 1337x
  1560. disabled: true
  1561. - name: duden
  1562. engine: duden
  1563. shortcut: du
  1564. disabled: true
  1565. - name: seznam
  1566. shortcut: szn
  1567. engine: seznam
  1568. disabled: true
  1569. # - name: deepl
  1570. # engine: deepl
  1571. # shortcut: dpl
  1572. # # You can use the engine using the official stable API, but you need an API key
  1573. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  1574. # api_key: '' # required!
  1575. # timeout: 5.0
  1576. # disabled: true
  1577. - name: mojeek
  1578. shortcut: mjk
  1579. engine: xpath
  1580. paging: true
  1581. categories: [general, web]
  1582. search_url: https://www.mojeek.com/search?q={query}&s={pageno}&lang={lang}&lb={lang}
  1583. results_xpath: //ul[@class="results-standard"]/li/a[@class="ob"]
  1584. url_xpath: ./@href
  1585. title_xpath: ../h2/a
  1586. content_xpath: ..//p[@class="s"]
  1587. suggestion_xpath: //div[@class="top-info"]/p[@class="top-info spell"]/em/a
  1588. first_page_num: 0
  1589. page_size: 10
  1590. disabled: true
  1591. about:
  1592. website: https://www.mojeek.com/
  1593. wikidata_id: Q60747299
  1594. official_api_documentation: https://www.mojeek.com/services/api.html/
  1595. use_official_api: false
  1596. require_api_key: false
  1597. results: HTML
  1598. - name: moviepilot
  1599. engine: moviepilot
  1600. shortcut: mp
  1601. disabled: true
  1602. - name: naver
  1603. shortcut: nvr
  1604. categories: [general, web]
  1605. engine: xpath
  1606. paging: true
  1607. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1608. url_xpath: //a[@class="link_tit"]/@href
  1609. title_xpath: //a[@class="link_tit"]
  1610. content_xpath: //a[@class="total_dsc"]/div
  1611. first_page_num: 1
  1612. page_size: 10
  1613. disabled: true
  1614. about:
  1615. website: https://www.naver.com/
  1616. wikidata_id: Q485639
  1617. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1618. use_official_api: false
  1619. require_api_key: false
  1620. results: HTML
  1621. language: ko
  1622. - name: rubygems
  1623. shortcut: rbg
  1624. engine: xpath
  1625. paging: true
  1626. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1627. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1628. url_xpath: ./@href
  1629. title_xpath: ./span/h2
  1630. content_xpath: ./span/p
  1631. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1632. first_page_num: 1
  1633. categories: [it, packages]
  1634. disabled: true
  1635. about:
  1636. website: https://rubygems.org/
  1637. wikidata_id: Q1853420
  1638. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1639. use_official_api: false
  1640. require_api_key: false
  1641. results: HTML
  1642. - name: peertube
  1643. engine: peertube
  1644. shortcut: ptb
  1645. paging: true
  1646. # alternatives see: https://instances.joinpeertube.org/instances
  1647. # base_url: https://tube.4aem.com
  1648. categories: videos
  1649. disabled: true
  1650. timeout: 6.0
  1651. - name: mediathekviewweb
  1652. engine: mediathekviewweb
  1653. shortcut: mvw
  1654. disabled: true
  1655. # - name: yacy
  1656. # engine: yacy
  1657. # shortcut: ya
  1658. # base_url: http://localhost:8090
  1659. # # required if you aren't using HTTPS for your local yacy instance'
  1660. # enable_http: true
  1661. # timeout: 3.0
  1662. # # Yacy search mode. 'global' or 'local'.
  1663. # search_mode: 'global'
  1664. - name: rumble
  1665. engine: rumble
  1666. shortcut: ru
  1667. base_url: https://rumble.com/
  1668. paging: true
  1669. categories: videos
  1670. disabled: true
  1671. - name: wordnik
  1672. engine: wordnik
  1673. shortcut: def
  1674. base_url: https://www.wordnik.com/
  1675. categories: [dictionaries]
  1676. timeout: 5.0
  1677. - name: woxikon.de synonyme
  1678. engine: xpath
  1679. shortcut: woxi
  1680. categories: [dictionaries]
  1681. timeout: 5.0
  1682. disabled: true
  1683. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  1684. url_xpath: //div[@class="upper-synonyms"]/a/@href
  1685. content_xpath: //div[@class="synonyms-list-group"]
  1686. title_xpath: //div[@class="upper-synonyms"]/a
  1687. no_result_for_http_status: [404]
  1688. about:
  1689. website: https://www.woxikon.de/
  1690. wikidata_id: # No Wikidata ID
  1691. use_official_api: false
  1692. require_api_key: false
  1693. results: HTML
  1694. language: de
  1695. - name: seekr news
  1696. engine: seekr
  1697. shortcut: senews
  1698. categories: news
  1699. seekr_category: news
  1700. disabled: true
  1701. - name: seekr images
  1702. engine: seekr
  1703. network: seekr news
  1704. shortcut: seimg
  1705. categories: images
  1706. seekr_category: images
  1707. disabled: true
  1708. - name: seekr videos
  1709. engine: seekr
  1710. network: seekr news
  1711. shortcut: sevid
  1712. categories: videos
  1713. seekr_category: videos
  1714. disabled: true
  1715. - name: sjp.pwn
  1716. engine: sjp
  1717. shortcut: sjp
  1718. base_url: https://sjp.pwn.pl/
  1719. timeout: 5.0
  1720. disabled: true
  1721. - name: svgrepo
  1722. engine: svgrepo
  1723. shortcut: svg
  1724. timeout: 10.0
  1725. disabled: true
  1726. - name: tootfinder
  1727. engine: json_engine
  1728. categories: ['social media']
  1729. paging: false
  1730. search_url: https://www.tootfinder.ch/rest/api/search/{query}
  1731. url_query: uri
  1732. title_query: card/title
  1733. content_query: content
  1734. thumbnail_query: card/image
  1735. shortcut: toot
  1736. about:
  1737. website: https://tootfinder.ch/
  1738. official_api_documentation: https://wiki.tootfinder.ch/index.php?name=the-tootfinder-rest-api
  1739. use_official_api: true
  1740. require_api_key: false
  1741. results: 'JSON'
  1742. - name: wallhaven
  1743. engine: wallhaven
  1744. # api_key: abcdefghijklmnopqrstuvwxyz
  1745. shortcut: wh
  1746. # wikimini: online encyclopedia for children
  1747. # The fulltext and title parameter is necessary for Wikimini because
  1748. # sometimes it will not show the results and redirect instead
  1749. - name: wikimini
  1750. engine: xpath
  1751. shortcut: wkmn
  1752. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  1753. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  1754. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  1755. content_xpath: //li/div[@class="searchresult"]
  1756. categories: general
  1757. disabled: true
  1758. about:
  1759. website: https://wikimini.org/
  1760. wikidata_id: Q3568032
  1761. use_official_api: false
  1762. require_api_key: false
  1763. results: HTML
  1764. language: fr
  1765. - name: wttr.in
  1766. engine: wttr
  1767. shortcut: wttr
  1768. timeout: 9.0
  1769. - name: yummly
  1770. engine: yummly
  1771. shortcut: yum
  1772. disabled: true
  1773. - name: brave
  1774. engine: brave
  1775. shortcut: br
  1776. time_range_support: true
  1777. paging: true
  1778. categories: [general, web]
  1779. brave_category: search
  1780. # brave_spellcheck: true
  1781. - name: brave.images
  1782. engine: brave
  1783. network: brave
  1784. shortcut: brimg
  1785. categories: [images, web]
  1786. brave_category: images
  1787. - name: brave.videos
  1788. engine: brave
  1789. network: brave
  1790. shortcut: brvid
  1791. categories: [videos, web]
  1792. brave_category: videos
  1793. - name: brave.news
  1794. engine: brave
  1795. network: brave
  1796. shortcut: brnews
  1797. categories: news
  1798. brave_category: news
  1799. - name: lib.rs
  1800. shortcut: lrs
  1801. engine: xpath
  1802. search_url: https://lib.rs/search?q={query}
  1803. results_xpath: /html/body/main/div/ol/li/a
  1804. url_xpath: ./@href
  1805. title_xpath: ./div[@class="h"]/h4
  1806. content_xpath: ./div[@class="h"]/p
  1807. categories: [it, packages]
  1808. disabled: true
  1809. about:
  1810. website: https://lib.rs
  1811. wikidata_id: Q113486010
  1812. use_official_api: false
  1813. require_api_key: false
  1814. results: HTML
  1815. - name: sourcehut
  1816. shortcut: srht
  1817. engine: xpath
  1818. paging: true
  1819. search_url: https://sr.ht/projects?page={pageno}&search={query}
  1820. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  1821. url_xpath: ./h4/a[2]/@href
  1822. title_xpath: ./h4/a[2]
  1823. content_xpath: ./p
  1824. first_page_num: 1
  1825. categories: [it, repos]
  1826. disabled: true
  1827. about:
  1828. website: https://sr.ht
  1829. wikidata_id: Q78514485
  1830. official_api_documentation: https://man.sr.ht/
  1831. use_official_api: false
  1832. require_api_key: false
  1833. results: HTML
  1834. - name: goo
  1835. shortcut: goo
  1836. engine: xpath
  1837. paging: true
  1838. search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
  1839. url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
  1840. title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
  1841. content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
  1842. first_page_num: 0
  1843. categories: [general, web]
  1844. disabled: true
  1845. timeout: 4.0
  1846. about:
  1847. website: https://search.goo.ne.jp
  1848. wikidata_id: Q249044
  1849. use_official_api: false
  1850. require_api_key: false
  1851. results: HTML
  1852. language: ja
  1853. - name: bt4g
  1854. engine: bt4g
  1855. shortcut: bt4g
  1856. - name: pkg.go.dev
  1857. engine: xpath
  1858. shortcut: pgo
  1859. search_url: https://pkg.go.dev/search?limit=100&m=package&q={query}
  1860. results_xpath: /html/body/main/div[contains(@class,"SearchResults")]/div[not(@class)]/div[@class="SearchSnippet"]
  1861. url_xpath: ./div[@class="SearchSnippet-headerContainer"]/h2/a/@href
  1862. title_xpath: ./div[@class="SearchSnippet-headerContainer"]/h2/a
  1863. content_xpath: ./p[@class="SearchSnippet-synopsis"]
  1864. categories: [packages, it]
  1865. timeout: 3.0
  1866. disabled: true
  1867. about:
  1868. website: https://pkg.go.dev/
  1869. use_official_api: false
  1870. require_api_key: false
  1871. results: HTML
  1872. # Doku engine lets you access to any Doku wiki instance:
  1873. # A public one or a privete/corporate one.
  1874. # - name: ubuntuwiki
  1875. # engine: doku
  1876. # shortcut: uw
  1877. # base_url: 'https://doc.ubuntu-fr.org'
  1878. # Be careful when enabling this engine if you are
  1879. # running a public instance. Do not expose any sensitive
  1880. # information. You can restrict access by configuring a list
  1881. # of access tokens under tokens.
  1882. # - name: git grep
  1883. # engine: command
  1884. # command: ['git', 'grep', '{{QUERY}}']
  1885. # shortcut: gg
  1886. # tokens: []
  1887. # disabled: true
  1888. # delimiter:
  1889. # chars: ':'
  1890. # keys: ['filepath', 'code']
  1891. # Be careful when enabling this engine if you are
  1892. # running a public instance. Do not expose any sensitive
  1893. # information. You can restrict access by configuring a list
  1894. # of access tokens under tokens.
  1895. # - name: locate
  1896. # engine: command
  1897. # command: ['locate', '{{QUERY}}']
  1898. # shortcut: loc
  1899. # tokens: []
  1900. # disabled: true
  1901. # delimiter:
  1902. # chars: ' '
  1903. # keys: ['line']
  1904. # Be careful when enabling this engine if you are
  1905. # running a public instance. Do not expose any sensitive
  1906. # information. You can restrict access by configuring a list
  1907. # of access tokens under tokens.
  1908. # - name: find
  1909. # engine: command
  1910. # command: ['find', '.', '-name', '{{QUERY}}']
  1911. # query_type: path
  1912. # shortcut: fnd
  1913. # tokens: []
  1914. # disabled: true
  1915. # delimiter:
  1916. # chars: ' '
  1917. # keys: ['line']
  1918. # Be careful when enabling this engine if you are
  1919. # running a public instance. Do not expose any sensitive
  1920. # information. You can restrict access by configuring a list
  1921. # of access tokens under tokens.
  1922. # - name: pattern search in files
  1923. # engine: command
  1924. # command: ['fgrep', '{{QUERY}}']
  1925. # shortcut: fgr
  1926. # tokens: []
  1927. # disabled: true
  1928. # delimiter:
  1929. # chars: ' '
  1930. # keys: ['line']
  1931. # Be careful when enabling this engine if you are
  1932. # running a public instance. Do not expose any sensitive
  1933. # information. You can restrict access by configuring a list
  1934. # of access tokens under tokens.
  1935. # - name: regex search in files
  1936. # engine: command
  1937. # command: ['grep', '{{QUERY}}']
  1938. # shortcut: gr
  1939. # tokens: []
  1940. # disabled: true
  1941. # delimiter:
  1942. # chars: ' '
  1943. # keys: ['line']
  1944. doi_resolvers:
  1945. oadoi.org: 'https://oadoi.org/'
  1946. doi.org: 'https://doi.org/'
  1947. doai.io: 'https://dissem.in/'
  1948. sci-hub.se: 'https://sci-hub.se/'
  1949. sci-hub.st: 'https://sci-hub.st/'
  1950. sci-hub.ru: 'https://sci-hub.ru/'
  1951. default_doi_resolver: 'oadoi.org'