settings.yml 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187
  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: matrixrooms
  913. engine: matrixrooms
  914. shortcut: mtrx
  915. disabled: true
  916. - name: metacpan
  917. engine: metacpan
  918. shortcut: cpan
  919. disabled: true
  920. number_of_results: 20
  921. # - name: meilisearch
  922. # engine: meilisearch
  923. # shortcut: mes
  924. # enable_http: true
  925. # base_url: http://localhost:7700
  926. # index: my-index
  927. - name: mixcloud
  928. engine: mixcloud
  929. shortcut: mc
  930. # MongoDB engine
  931. # Required dependency: pymongo
  932. # - name: mymongo
  933. # engine: mongodb
  934. # shortcut: md
  935. # exact_match_only: false
  936. # host: '127.0.0.1'
  937. # port: 27017
  938. # enable_http: true
  939. # results_per_page: 20
  940. # database: 'business'
  941. # collection: 'reviews' # name of the db collection
  942. # key: 'name' # key in the collection to search for
  943. - name: mwmbl
  944. engine: mwmbl
  945. # api_url: https://api.mwmbl.org
  946. shortcut: mwm
  947. disabled: true
  948. - name: npm
  949. engine: json_engine
  950. paging: true
  951. first_page_num: 0
  952. search_url: https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  953. results_query: results
  954. url_query: package/links/npm
  955. title_query: package/name
  956. content_query: package/description
  957. page_size: 25
  958. categories: [it, packages]
  959. disabled: true
  960. timeout: 5.0
  961. shortcut: npm
  962. about:
  963. website: https://npms.io/
  964. wikidata_id: Q7067518
  965. official_api_documentation: https://api-docs.npms.io/
  966. use_official_api: false
  967. require_api_key: false
  968. results: JSON
  969. - name: nyaa
  970. engine: nyaa
  971. shortcut: nt
  972. disabled: true
  973. - name: mankier
  974. engine: json_engine
  975. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  976. results_query: results
  977. url_query: url
  978. title_query: name
  979. content_query: description
  980. categories: it
  981. shortcut: man
  982. about:
  983. website: https://www.mankier.com/
  984. official_api_documentation: https://www.mankier.com/api
  985. use_official_api: true
  986. require_api_key: false
  987. results: JSON
  988. - name: odysee
  989. engine: odysee
  990. shortcut: od
  991. disabled: true
  992. - name: openairedatasets
  993. engine: json_engine
  994. paging: true
  995. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  996. results_query: response/results/result
  997. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  998. title_query: metadata/oaf:entity/oaf:result/title/$
  999. content_query: metadata/oaf:entity/oaf:result/description/$
  1000. content_html_to_text: true
  1001. categories: "science"
  1002. shortcut: oad
  1003. timeout: 5.0
  1004. about:
  1005. website: https://www.openaire.eu/
  1006. wikidata_id: Q25106053
  1007. official_api_documentation: https://api.openaire.eu/
  1008. use_official_api: false
  1009. require_api_key: false
  1010. results: JSON
  1011. - name: openairepublications
  1012. engine: json_engine
  1013. paging: true
  1014. search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  1015. results_query: response/results/result
  1016. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1017. title_query: metadata/oaf:entity/oaf:result/title/$
  1018. content_query: metadata/oaf:entity/oaf:result/description/$
  1019. content_html_to_text: true
  1020. categories: science
  1021. shortcut: oap
  1022. timeout: 5.0
  1023. about:
  1024. website: https://www.openaire.eu/
  1025. wikidata_id: Q25106053
  1026. official_api_documentation: https://api.openaire.eu/
  1027. use_official_api: false
  1028. require_api_key: false
  1029. results: JSON
  1030. # - name: opensemanticsearch
  1031. # engine: opensemantic
  1032. # shortcut: oss
  1033. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  1034. - name: openstreetmap
  1035. engine: openstreetmap
  1036. shortcut: osm
  1037. - name: openrepos
  1038. engine: xpath
  1039. paging: true
  1040. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  1041. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  1042. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  1043. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  1044. categories: files
  1045. timeout: 4.0
  1046. disabled: true
  1047. shortcut: or
  1048. about:
  1049. website: https://openrepos.net/
  1050. wikidata_id:
  1051. official_api_documentation:
  1052. use_official_api: false
  1053. require_api_key: false
  1054. results: HTML
  1055. - name: packagist
  1056. engine: json_engine
  1057. paging: true
  1058. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  1059. results_query: results
  1060. url_query: url
  1061. title_query: name
  1062. content_query: description
  1063. categories: [it, packages]
  1064. disabled: true
  1065. timeout: 5.0
  1066. shortcut: pack
  1067. about:
  1068. website: https://packagist.org
  1069. wikidata_id: Q108311377
  1070. official_api_documentation: https://packagist.org/apidoc
  1071. use_official_api: true
  1072. require_api_key: false
  1073. results: JSON
  1074. - name: pdbe
  1075. engine: pdbe
  1076. shortcut: pdb
  1077. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1078. # hide_obsolete: false
  1079. - name: photon
  1080. engine: photon
  1081. shortcut: ph
  1082. - name: pinterest
  1083. engine: pinterest
  1084. shortcut: pin
  1085. - name: piped
  1086. engine: piped
  1087. shortcut: ppd
  1088. categories: videos
  1089. piped_filter: videos
  1090. timeout: 3.0
  1091. # URL to use as link and for embeds
  1092. frontend_url: https://srv.piped.video
  1093. # Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
  1094. backend_url:
  1095. - https://pipedapi.kavin.rocks
  1096. - https://pipedapi-libre.kavin.rocks
  1097. - https://pipedapi.adminforge.de
  1098. - name: piped.music
  1099. engine: piped
  1100. network: piped
  1101. shortcut: ppdm
  1102. categories: music
  1103. piped_filter: music_songs
  1104. timeout: 3.0
  1105. - name: piratebay
  1106. engine: piratebay
  1107. shortcut: tpb
  1108. # You may need to change this URL to a proxy if piratebay is blocked in your
  1109. # country
  1110. url: https://thepiratebay.org/
  1111. timeout: 3.0
  1112. # Required dependency: psychopg2
  1113. # - name: postgresql
  1114. # engine: postgresql
  1115. # database: postgres
  1116. # username: postgres
  1117. # password: postgres
  1118. # limit: 10
  1119. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1120. # shortcut : psql
  1121. - name: pub.dev
  1122. engine: xpath
  1123. shortcut: pd
  1124. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1125. paging: true
  1126. results_xpath: //div[contains(@class,"packages-item")]
  1127. url_xpath: ./div/h3/a/@href
  1128. title_xpath: ./div/h3/a
  1129. content_xpath: ./div/div/div[contains(@class,"packages-description")]/span
  1130. categories: [packages, it]
  1131. timeout: 3.0
  1132. disabled: true
  1133. first_page_num: 1
  1134. about:
  1135. website: https://pub.dev/
  1136. official_api_documentation: https://pub.dev/help/api
  1137. use_official_api: false
  1138. require_api_key: false
  1139. results: HTML
  1140. - name: pubmed
  1141. engine: pubmed
  1142. shortcut: pub
  1143. timeout: 3.0
  1144. - name: pypi
  1145. shortcut: pypi
  1146. engine: xpath
  1147. paging: true
  1148. search_url: https://pypi.org/search/?q={query}&page={pageno}
  1149. results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"]
  1150. url_xpath: ./@href
  1151. title_xpath: ./h3/span[@class="package-snippet__name"]
  1152. content_xpath: ./p
  1153. suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"]
  1154. first_page_num: 1
  1155. categories: [it, packages]
  1156. about:
  1157. website: https://pypi.org
  1158. wikidata_id: Q2984686
  1159. official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html
  1160. use_official_api: false
  1161. require_api_key: false
  1162. results: HTML
  1163. - name: qwant
  1164. qwant_categ: web
  1165. engine: qwant
  1166. shortcut: qw
  1167. categories: [general, web]
  1168. additional_tests:
  1169. rosebud: *test_rosebud
  1170. - name: qwant news
  1171. qwant_categ: news
  1172. engine: qwant
  1173. shortcut: qwn
  1174. categories: news
  1175. network: qwant
  1176. - name: qwant images
  1177. qwant_categ: images
  1178. engine: qwant
  1179. shortcut: qwi
  1180. categories: [images, web]
  1181. network: qwant
  1182. - name: qwant videos
  1183. qwant_categ: videos
  1184. engine: qwant
  1185. shortcut: qwv
  1186. categories: [videos, web]
  1187. network: qwant
  1188. # - name: library
  1189. # engine: recoll
  1190. # shortcut: lib
  1191. # base_url: 'https://recoll.example.org/'
  1192. # search_dir: ''
  1193. # mount_prefix: /export
  1194. # dl_prefix: 'https://download.example.org'
  1195. # timeout: 30.0
  1196. # categories: files
  1197. # disabled: true
  1198. # - name: recoll library reference
  1199. # engine: recoll
  1200. # base_url: 'https://recoll.example.org/'
  1201. # search_dir: reference
  1202. # mount_prefix: /export
  1203. # dl_prefix: 'https://download.example.org'
  1204. # shortcut: libr
  1205. # timeout: 30.0
  1206. # categories: files
  1207. # disabled: true
  1208. - name: reddit
  1209. engine: reddit
  1210. shortcut: re
  1211. page_size: 25
  1212. # Required dependency: redis
  1213. # - name: myredis
  1214. # shortcut : rds
  1215. # engine: redis_server
  1216. # exact_match_only: false
  1217. # host: '127.0.0.1'
  1218. # port: 6379
  1219. # enable_http: true
  1220. # password: ''
  1221. # db: 0
  1222. # tmp suspended: bad certificate
  1223. # - name: scanr structures
  1224. # shortcut: scs
  1225. # engine: scanr_structures
  1226. # disabled: true
  1227. - name: sepiasearch
  1228. engine: sepiasearch
  1229. shortcut: sep
  1230. - name: soundcloud
  1231. engine: soundcloud
  1232. shortcut: sc
  1233. - name: stackoverflow
  1234. engine: stackexchange
  1235. shortcut: st
  1236. api_site: 'stackoverflow'
  1237. categories: [it, q&a]
  1238. - name: askubuntu
  1239. engine: stackexchange
  1240. shortcut: ubuntu
  1241. api_site: 'askubuntu'
  1242. categories: [it, q&a]
  1243. - name: internetarchivescholar
  1244. engine: internet_archive_scholar
  1245. shortcut: ias
  1246. timeout: 5.0
  1247. - name: superuser
  1248. engine: stackexchange
  1249. shortcut: su
  1250. api_site: 'superuser'
  1251. categories: [it, q&a]
  1252. - name: searchcode code
  1253. engine: searchcode_code
  1254. shortcut: scc
  1255. disabled: true
  1256. - name: framalibre
  1257. engine: framalibre
  1258. shortcut: frl
  1259. disabled: true
  1260. # - name: searx
  1261. # engine: searx_engine
  1262. # shortcut: se
  1263. # instance_urls :
  1264. # - http://127.0.0.1:8888/
  1265. # - ...
  1266. # disabled: true
  1267. - name: semantic scholar
  1268. engine: semantic_scholar
  1269. disabled: true
  1270. shortcut: se
  1271. # Spotify needs API credentials
  1272. # - name: spotify
  1273. # engine: spotify
  1274. # shortcut: stf
  1275. # api_client_id: *******
  1276. # api_client_secret: *******
  1277. # - name: solr
  1278. # engine: solr
  1279. # shortcut: slr
  1280. # base_url: http://localhost:8983
  1281. # collection: collection_name
  1282. # sort: '' # sorting: asc or desc
  1283. # field_list: '' # comma separated list of field names to display on the UI
  1284. # default_fields: '' # default field to query
  1285. # query_fields: '' # query fields
  1286. # enable_http: true
  1287. # - name: springer nature
  1288. # engine: springer
  1289. # # get your API key from: https://dev.springernature.com/signup
  1290. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1291. # api_key: 'unset'
  1292. # shortcut: springer
  1293. # timeout: 15.0
  1294. - name: startpage
  1295. engine: startpage
  1296. shortcut: sp
  1297. timeout: 6.0
  1298. disabled: true
  1299. additional_tests:
  1300. rosebud: *test_rosebud
  1301. - name: tokyotoshokan
  1302. engine: tokyotoshokan
  1303. shortcut: tt
  1304. timeout: 6.0
  1305. disabled: true
  1306. - name: solidtorrents
  1307. engine: solidtorrents
  1308. shortcut: solid
  1309. timeout: 4.0
  1310. base_url:
  1311. - https://solidtorrents.to
  1312. - https://bitsearch.to
  1313. # For this demo of the sqlite engine download:
  1314. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1315. # and unpack into searx/data/filmliste-v2.db
  1316. # Query to test: "!demo concert"
  1317. #
  1318. # - name: demo
  1319. # engine: sqlite
  1320. # shortcut: demo
  1321. # categories: general
  1322. # result_template: default.html
  1323. # database: searx/data/filmliste-v2.db
  1324. # query_str: >-
  1325. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1326. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1327. # description AS content
  1328. # FROM film
  1329. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1330. # ORDER BY duration DESC
  1331. - name: tagesschau
  1332. engine: tagesschau
  1333. # when set to false, display URLs from Tagesschau, and not the actual source
  1334. # (e.g. NDR, WDR, SWR, HR, ...)
  1335. use_source_url: true
  1336. shortcut: ts
  1337. disabled: true
  1338. - name: tmdb
  1339. engine: xpath
  1340. paging: true
  1341. categories: movies
  1342. search_url: https://www.themoviedb.org/search?page={pageno}&query={query}
  1343. results_xpath: //div[contains(@class,"movie") or contains(@class,"tv")]//div[contains(@class,"card")]
  1344. url_xpath: .//div[contains(@class,"poster")]/a/@href
  1345. thumbnail_xpath: .//img/@src
  1346. title_xpath: .//div[contains(@class,"title")]//h2
  1347. content_xpath: .//div[contains(@class,"overview")]
  1348. shortcut: tm
  1349. disabled: true
  1350. # Requires Tor
  1351. - name: torch
  1352. engine: xpath
  1353. paging: true
  1354. search_url:
  1355. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1356. results_xpath: //table//tr
  1357. url_xpath: ./td[2]/a
  1358. title_xpath: ./td[2]/b
  1359. content_xpath: ./td[2]/small
  1360. categories: onions
  1361. enable_http: true
  1362. shortcut: tch
  1363. # torznab engine lets you query any torznab compatible indexer. Using this
  1364. # engine in combination with Jackett opens the possibility to query a lot of
  1365. # public and private indexers directly from SearXNG. More details at:
  1366. # https://docs.searxng.org/dev/engines/online/torznab.html
  1367. #
  1368. # - name: Torznab EZTV
  1369. # engine: torznab
  1370. # shortcut: eztv
  1371. # base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
  1372. # enable_http: true # if using localhost
  1373. # api_key: xxxxxxxxxxxxxxx
  1374. # show_magnet_links: true
  1375. # show_torrent_files: false
  1376. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1377. # torznab_categories: # optional
  1378. # - 2000
  1379. # - 5000
  1380. # tmp suspended - too slow, too many errors
  1381. # - name: urbandictionary
  1382. # engine : xpath
  1383. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1384. # url_xpath : //*[@class="word"]/@href
  1385. # title_xpath : //*[@class="def-header"]
  1386. # content_xpath: //*[@class="meaning"]
  1387. # shortcut: ud
  1388. - name: unsplash
  1389. engine: unsplash
  1390. shortcut: us
  1391. - name: yahoo
  1392. engine: yahoo
  1393. shortcut: yh
  1394. disabled: true
  1395. - name: yahoo news
  1396. engine: yahoo_news
  1397. shortcut: yhn
  1398. - name: youtube
  1399. shortcut: yt
  1400. # You can use the engine using the official stable API, but you need an API
  1401. # key See: https://console.developers.google.com/project
  1402. #
  1403. # engine: youtube_api
  1404. # api_key: 'apikey' # required!
  1405. #
  1406. # Or you can use the html non-stable engine, activated by default
  1407. engine: youtube_noapi
  1408. - name: dailymotion
  1409. engine: dailymotion
  1410. shortcut: dm
  1411. - name: vimeo
  1412. engine: vimeo
  1413. shortcut: vm
  1414. - name: wiby
  1415. engine: json_engine
  1416. paging: true
  1417. search_url: https://wiby.me/json/?q={query}&p={pageno}
  1418. url_query: URL
  1419. title_query: Title
  1420. content_query: Snippet
  1421. categories: [general, web]
  1422. shortcut: wib
  1423. disabled: true
  1424. about:
  1425. website: https://wiby.me/
  1426. - name: alexandria
  1427. engine: json_engine
  1428. shortcut: alx
  1429. categories: general
  1430. paging: true
  1431. search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
  1432. results_query: results
  1433. title_query: title
  1434. url_query: url
  1435. content_query: snippet
  1436. timeout: 1.5
  1437. disabled: true
  1438. about:
  1439. website: https://alexandria.org/
  1440. official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
  1441. use_official_api: true
  1442. require_api_key: false
  1443. results: JSON
  1444. - name: wikibooks
  1445. engine: mediawiki
  1446. weight: 0.5
  1447. shortcut: wb
  1448. categories: [general, wikimedia]
  1449. base_url: "https://{language}.wikibooks.org/"
  1450. search_type: text
  1451. disabled: true
  1452. about:
  1453. website: https://www.wikibooks.org/
  1454. wikidata_id: Q367
  1455. - name: wikinews
  1456. engine: mediawiki
  1457. shortcut: wn
  1458. categories: [news, wikimedia]
  1459. base_url: "https://{language}.wikinews.org/"
  1460. search_type: text
  1461. srsort: create_timestamp_desc
  1462. about:
  1463. website: https://www.wikinews.org/
  1464. wikidata_id: Q964
  1465. - name: wikiquote
  1466. engine: mediawiki
  1467. weight: 0.5
  1468. shortcut: wq
  1469. categories: [general, wikimedia]
  1470. base_url: "https://{language}.wikiquote.org/"
  1471. search_type: text
  1472. disabled: true
  1473. additional_tests:
  1474. rosebud: *test_rosebud
  1475. about:
  1476. website: https://www.wikiquote.org/
  1477. wikidata_id: Q369
  1478. - name: wikisource
  1479. engine: mediawiki
  1480. weight: 0.5
  1481. shortcut: ws
  1482. categories: [general, wikimedia]
  1483. base_url: "https://{language}.wikisource.org/"
  1484. search_type: text
  1485. disabled: true
  1486. about:
  1487. website: https://www.wikisource.org/
  1488. wikidata_id: Q263
  1489. - name: wikispecies
  1490. engine: mediawiki
  1491. shortcut: wsp
  1492. categories: [general, science, wikimedia]
  1493. base_url: "https://species.wikimedia.org/"
  1494. search_type: text
  1495. disabled: true
  1496. about:
  1497. website: https://species.wikimedia.org/
  1498. wikidata_id: Q13679
  1499. - name: wiktionary
  1500. engine: mediawiki
  1501. shortcut: wt
  1502. categories: [dictionaries, wikimedia]
  1503. base_url: "https://{language}.wiktionary.org/"
  1504. search_type: text
  1505. about:
  1506. website: https://www.wiktionary.org/
  1507. wikidata_id: Q151
  1508. - name: wikiversity
  1509. engine: mediawiki
  1510. weight: 0.5
  1511. shortcut: wv
  1512. categories: [general, wikimedia]
  1513. base_url: "https://{language}.wikiversity.org/"
  1514. search_type: text
  1515. disabled: true
  1516. about:
  1517. website: https://www.wikiversity.org/
  1518. wikidata_id: Q370
  1519. - name: wikivoyage
  1520. engine: mediawiki
  1521. weight: 0.5
  1522. shortcut: wy
  1523. categories: [general, wikimedia]
  1524. base_url: "https://{language}.wikivoyage.org/"
  1525. search_type: text
  1526. disabled: true
  1527. about:
  1528. website: https://www.wikivoyage.org/
  1529. wikidata_id: Q373
  1530. - name: wikicommons.images
  1531. engine: wikicommons
  1532. shortcut: wc
  1533. categories: images
  1534. number_of_results: 10
  1535. - name: wolframalpha
  1536. shortcut: wa
  1537. # You can use the engine using the official stable API, but you need an API
  1538. # key. See: https://products.wolframalpha.com/api/
  1539. #
  1540. # engine: wolframalpha_api
  1541. # api_key: ''
  1542. #
  1543. # Or you can use the html non-stable engine, activated by default
  1544. engine: wolframalpha_noapi
  1545. timeout: 6.0
  1546. categories: general
  1547. disabled: true
  1548. - name: dictzone
  1549. engine: dictzone
  1550. shortcut: dc
  1551. - name: mymemory translated
  1552. engine: translated
  1553. shortcut: tl
  1554. timeout: 5.0
  1555. # You can use without an API key, but you are limited to 1000 words/day
  1556. # See: https://mymemory.translated.net/doc/usagelimits.php
  1557. # api_key: ''
  1558. # Required dependency: mysql-connector-python
  1559. # - name: mysql
  1560. # engine: mysql_server
  1561. # database: mydatabase
  1562. # username: user
  1563. # password: pass
  1564. # limit: 10
  1565. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1566. # shortcut: mysql
  1567. - name: 1337x
  1568. engine: 1337x
  1569. shortcut: 1337x
  1570. disabled: true
  1571. - name: duden
  1572. engine: duden
  1573. shortcut: du
  1574. disabled: true
  1575. - name: seznam
  1576. shortcut: szn
  1577. engine: seznam
  1578. disabled: true
  1579. # - name: deepl
  1580. # engine: deepl
  1581. # shortcut: dpl
  1582. # # You can use the engine using the official stable API, but you need an API key
  1583. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  1584. # api_key: '' # required!
  1585. # timeout: 5.0
  1586. # disabled: true
  1587. - name: mojeek
  1588. shortcut: mjk
  1589. engine: xpath
  1590. paging: true
  1591. categories: [general, web]
  1592. search_url: https://www.mojeek.com/search?q={query}&s={pageno}&lang={lang}&lb={lang}
  1593. results_xpath: //ul[@class="results-standard"]/li/a[@class="ob"]
  1594. url_xpath: ./@href
  1595. title_xpath: ../h2/a
  1596. content_xpath: ..//p[@class="s"]
  1597. suggestion_xpath: //div[@class="top-info"]/p[@class="top-info spell"]/em/a
  1598. first_page_num: 0
  1599. page_size: 10
  1600. disabled: true
  1601. about:
  1602. website: https://www.mojeek.com/
  1603. wikidata_id: Q60747299
  1604. official_api_documentation: https://www.mojeek.com/services/api.html/
  1605. use_official_api: false
  1606. require_api_key: false
  1607. results: HTML
  1608. - name: moviepilot
  1609. engine: moviepilot
  1610. shortcut: mp
  1611. disabled: true
  1612. - name: naver
  1613. shortcut: nvr
  1614. categories: [general, web]
  1615. engine: xpath
  1616. paging: true
  1617. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1618. url_xpath: //a[@class="link_tit"]/@href
  1619. title_xpath: //a[@class="link_tit"]
  1620. content_xpath: //a[@class="total_dsc"]/div
  1621. first_page_num: 1
  1622. page_size: 10
  1623. disabled: true
  1624. about:
  1625. website: https://www.naver.com/
  1626. wikidata_id: Q485639
  1627. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1628. use_official_api: false
  1629. require_api_key: false
  1630. results: HTML
  1631. language: ko
  1632. - name: rubygems
  1633. shortcut: rbg
  1634. engine: xpath
  1635. paging: true
  1636. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1637. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1638. url_xpath: ./@href
  1639. title_xpath: ./span/h2
  1640. content_xpath: ./span/p
  1641. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1642. first_page_num: 1
  1643. categories: [it, packages]
  1644. disabled: true
  1645. about:
  1646. website: https://rubygems.org/
  1647. wikidata_id: Q1853420
  1648. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1649. use_official_api: false
  1650. require_api_key: false
  1651. results: HTML
  1652. - name: peertube
  1653. engine: peertube
  1654. shortcut: ptb
  1655. paging: true
  1656. # alternatives see: https://instances.joinpeertube.org/instances
  1657. # base_url: https://tube.4aem.com
  1658. categories: videos
  1659. disabled: true
  1660. timeout: 6.0
  1661. - name: mediathekviewweb
  1662. engine: mediathekviewweb
  1663. shortcut: mvw
  1664. disabled: true
  1665. # - name: yacy
  1666. # engine: yacy
  1667. # shortcut: ya
  1668. # base_url: http://localhost:8090
  1669. # # required if you aren't using HTTPS for your local yacy instance'
  1670. # enable_http: true
  1671. # timeout: 3.0
  1672. # # Yacy search mode. 'global' or 'local'.
  1673. # search_mode: 'global'
  1674. - name: rumble
  1675. engine: rumble
  1676. shortcut: ru
  1677. base_url: https://rumble.com/
  1678. paging: true
  1679. categories: videos
  1680. disabled: true
  1681. - name: wordnik
  1682. engine: wordnik
  1683. shortcut: def
  1684. base_url: https://www.wordnik.com/
  1685. categories: [dictionaries]
  1686. timeout: 5.0
  1687. - name: woxikon.de synonyme
  1688. engine: xpath
  1689. shortcut: woxi
  1690. categories: [dictionaries]
  1691. timeout: 5.0
  1692. disabled: true
  1693. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  1694. url_xpath: //div[@class="upper-synonyms"]/a/@href
  1695. content_xpath: //div[@class="synonyms-list-group"]
  1696. title_xpath: //div[@class="upper-synonyms"]/a
  1697. no_result_for_http_status: [404]
  1698. about:
  1699. website: https://www.woxikon.de/
  1700. wikidata_id: # No Wikidata ID
  1701. use_official_api: false
  1702. require_api_key: false
  1703. results: HTML
  1704. language: de
  1705. - name: seekr news
  1706. engine: seekr
  1707. shortcut: senews
  1708. categories: news
  1709. seekr_category: news
  1710. disabled: true
  1711. - name: seekr images
  1712. engine: seekr
  1713. network: seekr news
  1714. shortcut: seimg
  1715. categories: images
  1716. seekr_category: images
  1717. disabled: true
  1718. - name: seekr videos
  1719. engine: seekr
  1720. network: seekr news
  1721. shortcut: sevid
  1722. categories: videos
  1723. seekr_category: videos
  1724. disabled: true
  1725. - name: sjp.pwn
  1726. engine: sjp
  1727. shortcut: sjp
  1728. base_url: https://sjp.pwn.pl/
  1729. timeout: 5.0
  1730. disabled: true
  1731. - name: svgrepo
  1732. engine: svgrepo
  1733. shortcut: svg
  1734. timeout: 10.0
  1735. disabled: true
  1736. - name: tootfinder
  1737. engine: json_engine
  1738. categories: ['social media']
  1739. paging: false
  1740. search_url: https://www.tootfinder.ch/rest/api/search/{query}
  1741. url_query: uri
  1742. title_query: card/title
  1743. content_query: content
  1744. thumbnail_query: card/image
  1745. shortcut: toot
  1746. about:
  1747. website: https://tootfinder.ch/
  1748. official_api_documentation: https://wiki.tootfinder.ch/index.php?name=the-tootfinder-rest-api
  1749. use_official_api: true
  1750. require_api_key: false
  1751. results: 'JSON'
  1752. - name: wallhaven
  1753. engine: wallhaven
  1754. # api_key: abcdefghijklmnopqrstuvwxyz
  1755. shortcut: wh
  1756. # wikimini: online encyclopedia for children
  1757. # The fulltext and title parameter is necessary for Wikimini because
  1758. # sometimes it will not show the results and redirect instead
  1759. - name: wikimini
  1760. engine: xpath
  1761. shortcut: wkmn
  1762. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  1763. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  1764. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  1765. content_xpath: //li/div[@class="searchresult"]
  1766. categories: general
  1767. disabled: true
  1768. about:
  1769. website: https://wikimini.org/
  1770. wikidata_id: Q3568032
  1771. use_official_api: false
  1772. require_api_key: false
  1773. results: HTML
  1774. language: fr
  1775. - name: wttr.in
  1776. engine: wttr
  1777. shortcut: wttr
  1778. timeout: 9.0
  1779. - name: yummly
  1780. engine: yummly
  1781. shortcut: yum
  1782. disabled: true
  1783. - name: brave
  1784. engine: brave
  1785. shortcut: br
  1786. time_range_support: true
  1787. paging: true
  1788. categories: [general, web]
  1789. brave_category: search
  1790. # brave_spellcheck: true
  1791. - name: brave.images
  1792. engine: brave
  1793. network: brave
  1794. shortcut: brimg
  1795. categories: [images, web]
  1796. brave_category: images
  1797. - name: brave.videos
  1798. engine: brave
  1799. network: brave
  1800. shortcut: brvid
  1801. categories: [videos, web]
  1802. brave_category: videos
  1803. - name: brave.news
  1804. engine: brave
  1805. network: brave
  1806. shortcut: brnews
  1807. categories: news
  1808. brave_category: news
  1809. - name: lib.rs
  1810. shortcut: lrs
  1811. engine: xpath
  1812. search_url: https://lib.rs/search?q={query}
  1813. results_xpath: /html/body/main/div/ol/li/a
  1814. url_xpath: ./@href
  1815. title_xpath: ./div[@class="h"]/h4
  1816. content_xpath: ./div[@class="h"]/p
  1817. categories: [it, packages]
  1818. disabled: true
  1819. about:
  1820. website: https://lib.rs
  1821. wikidata_id: Q113486010
  1822. use_official_api: false
  1823. require_api_key: false
  1824. results: HTML
  1825. - name: sourcehut
  1826. shortcut: srht
  1827. engine: xpath
  1828. paging: true
  1829. search_url: https://sr.ht/projects?page={pageno}&search={query}
  1830. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  1831. url_xpath: ./h4/a[2]/@href
  1832. title_xpath: ./h4/a[2]
  1833. content_xpath: ./p
  1834. first_page_num: 1
  1835. categories: [it, repos]
  1836. disabled: true
  1837. about:
  1838. website: https://sr.ht
  1839. wikidata_id: Q78514485
  1840. official_api_documentation: https://man.sr.ht/
  1841. use_official_api: false
  1842. require_api_key: false
  1843. results: HTML
  1844. - name: goo
  1845. shortcut: goo
  1846. engine: xpath
  1847. paging: true
  1848. search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
  1849. url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
  1850. title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
  1851. content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
  1852. first_page_num: 0
  1853. categories: [general, web]
  1854. disabled: true
  1855. timeout: 4.0
  1856. about:
  1857. website: https://search.goo.ne.jp
  1858. wikidata_id: Q249044
  1859. use_official_api: false
  1860. require_api_key: false
  1861. results: HTML
  1862. language: ja
  1863. - name: bt4g
  1864. engine: bt4g
  1865. shortcut: bt4g
  1866. - name: pkg.go.dev
  1867. engine: xpath
  1868. shortcut: pgo
  1869. search_url: https://pkg.go.dev/search?limit=100&m=package&q={query}
  1870. results_xpath: /html/body/main/div[contains(@class,"SearchResults")]/div[not(@class)]/div[@class="SearchSnippet"]
  1871. url_xpath: ./div[@class="SearchSnippet-headerContainer"]/h2/a/@href
  1872. title_xpath: ./div[@class="SearchSnippet-headerContainer"]/h2/a
  1873. content_xpath: ./p[@class="SearchSnippet-synopsis"]
  1874. categories: [packages, it]
  1875. timeout: 3.0
  1876. disabled: true
  1877. about:
  1878. website: https://pkg.go.dev/
  1879. use_official_api: false
  1880. require_api_key: false
  1881. results: HTML
  1882. # Doku engine lets you access to any Doku wiki instance:
  1883. # A public one or a privete/corporate one.
  1884. # - name: ubuntuwiki
  1885. # engine: doku
  1886. # shortcut: uw
  1887. # base_url: 'https://doc.ubuntu-fr.org'
  1888. # Be careful when enabling this engine if you are
  1889. # running a public instance. Do not expose any sensitive
  1890. # information. You can restrict access by configuring a list
  1891. # of access tokens under tokens.
  1892. # - name: git grep
  1893. # engine: command
  1894. # command: ['git', 'grep', '{{QUERY}}']
  1895. # shortcut: gg
  1896. # tokens: []
  1897. # disabled: true
  1898. # delimiter:
  1899. # chars: ':'
  1900. # keys: ['filepath', 'code']
  1901. # Be careful when enabling this engine if you are
  1902. # running a public instance. Do not expose any sensitive
  1903. # information. You can restrict access by configuring a list
  1904. # of access tokens under tokens.
  1905. # - name: locate
  1906. # engine: command
  1907. # command: ['locate', '{{QUERY}}']
  1908. # shortcut: loc
  1909. # tokens: []
  1910. # disabled: true
  1911. # delimiter:
  1912. # chars: ' '
  1913. # keys: ['line']
  1914. # Be careful when enabling this engine if you are
  1915. # running a public instance. Do not expose any sensitive
  1916. # information. You can restrict access by configuring a list
  1917. # of access tokens under tokens.
  1918. # - name: find
  1919. # engine: command
  1920. # command: ['find', '.', '-name', '{{QUERY}}']
  1921. # query_type: path
  1922. # shortcut: fnd
  1923. # tokens: []
  1924. # disabled: true
  1925. # delimiter:
  1926. # chars: ' '
  1927. # keys: ['line']
  1928. # Be careful when enabling this engine if you are
  1929. # running a public instance. Do not expose any sensitive
  1930. # information. You can restrict access by configuring a list
  1931. # of access tokens under tokens.
  1932. # - name: pattern search in files
  1933. # engine: command
  1934. # command: ['fgrep', '{{QUERY}}']
  1935. # shortcut: fgr
  1936. # tokens: []
  1937. # disabled: true
  1938. # delimiter:
  1939. # chars: ' '
  1940. # keys: ['line']
  1941. # Be careful when enabling this engine if you are
  1942. # running a public instance. Do not expose any sensitive
  1943. # information. You can restrict access by configuring a list
  1944. # of access tokens under tokens.
  1945. # - name: regex search in files
  1946. # engine: command
  1947. # command: ['grep', '{{QUERY}}']
  1948. # shortcut: gr
  1949. # tokens: []
  1950. # disabled: true
  1951. # delimiter:
  1952. # chars: ' '
  1953. # keys: ['line']
  1954. doi_resolvers:
  1955. oadoi.org: 'https://oadoi.org/'
  1956. doi.org: 'https://doi.org/'
  1957. doai.io: 'https://dissem.in/'
  1958. sci-hub.se: 'https://sci-hub.se/'
  1959. sci-hub.st: 'https://sci-hub.st/'
  1960. sci-hub.ru: 'https://sci-hub.ru/'
  1961. default_doi_resolver: 'oadoi.org'