settings.yml 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157
  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. # If your instance owns a /etc/searxng/settings.yml file, then set the following
  74. # values there.
  75. secret_key: "ultrasecretkey" # Is overwritten by ${SEARXNG_SECRET}
  76. # Proxying image results through searx
  77. image_proxy: false
  78. # 1.0 and 1.1 are supported
  79. http_protocol_version: "1.0"
  80. # POST queries are more secure as they don't show up in history but may cause
  81. # problems when using Firefox containers
  82. method: "POST"
  83. default_http_headers:
  84. X-Content-Type-Options: nosniff
  85. X-XSS-Protection: 1; mode=block
  86. X-Download-Options: noopen
  87. X-Robots-Tag: noindex, nofollow
  88. Referrer-Policy: no-referrer
  89. redis:
  90. # URL to connect redis database. Is overwritten by ${SEARXNG_REDIS_URL}.
  91. # https://redis-py.readthedocs.io/en/stable/connections.html#redis.client.Redis.from_url
  92. url: false
  93. ui:
  94. # Custom static path - leave it blank if you didn't change
  95. static_path: ""
  96. static_use_hash: false
  97. # Custom templates path - leave it blank if you didn't change
  98. templates_path: ""
  99. # query_in_title: When true, the result page's titles contains the query
  100. # it decreases the privacy, since the browser can records the page titles.
  101. query_in_title: false
  102. # infinite_scroll: When true, automatically loads the next page when scrolling to bottom of the current page.
  103. infinite_scroll: false
  104. # ui theme
  105. default_theme: simple
  106. # center the results ?
  107. center_alignment: false
  108. # URL prefix of the internet archive, don't forget trailing slash (if needed).
  109. # cache_url: "https://webcache.googleusercontent.com/search?q=cache:"
  110. # Default interface locale - leave blank to detect from browser information or
  111. # use codes from the 'locales' config section
  112. default_locale: ""
  113. # Open result links in a new tab by default
  114. # results_on_new_tab: false
  115. theme_args:
  116. # style of simple theme: auto, light, dark
  117. simple_style: auto
  118. # Perform search immediately if a category selected.
  119. # Disable to select multiple categories at once and start the search manually.
  120. search_on_category_select: true
  121. # Lock arbitrary settings on the preferences page. To find the ID of the user
  122. # setting you want to lock, check the ID of the form on the page "preferences".
  123. #
  124. # preferences:
  125. # lock:
  126. # - language
  127. # - autocomplete
  128. # - method
  129. # - query_in_title
  130. # searx supports result proxification using an external service:
  131. # https://github.com/asciimoo/morty uncomment below section if you have running
  132. # morty proxy the key is base64 encoded (keep the !!binary notation)
  133. # Note: since commit af77ec3, morty accepts a base64 encoded key.
  134. #
  135. # result_proxy:
  136. # url: http://127.0.0.1:3000/
  137. # # the key is a base64 encoded string, the YAML !!binary prefix is optional
  138. # key: !!binary "your_morty_proxy_key"
  139. # # [true|false] enable the "proxy" button next to each result
  140. # proxify_results: true
  141. # communication with search engines
  142. #
  143. outgoing:
  144. # default timeout in seconds, can be override by engine
  145. request_timeout: 3.0
  146. # the maximum timeout in seconds
  147. # max_request_timeout: 10.0
  148. # suffix of searx_useragent, could contain information like an email address
  149. # to the administrator
  150. useragent_suffix: ""
  151. # The maximum number of concurrent connections that may be established.
  152. pool_connections: 100
  153. # Allow the connection pool to maintain keep-alive connections below this
  154. # point.
  155. pool_maxsize: 20
  156. # See https://www.python-httpx.org/http2/
  157. enable_http2: true
  158. # uncomment below section if you want to use a custom server certificate
  159. # see https://www.python-httpx.org/advanced/#changing-the-verification-defaults
  160. # and https://www.python-httpx.org/compatibility/#ssl-configuration
  161. # verify: ~/.mitmproxy/mitmproxy-ca-cert.cer
  162. #
  163. # uncomment below section if you want to use a proxyq see: SOCKS proxies
  164. # https://2.python-requests.org/en/latest/user/advanced/#proxies
  165. # are also supported: see
  166. # https://2.python-requests.org/en/latest/user/advanced/#socks
  167. #
  168. # proxies:
  169. # all://:
  170. # - http://proxy1:8080
  171. # - http://proxy2:8080
  172. #
  173. # using_tor_proxy: true
  174. #
  175. # Extra seconds to add in order to account for the time taken by the proxy
  176. #
  177. # extra_proxy_timeout: 10.0
  178. #
  179. # uncomment below section only if you have more than one network interface
  180. # which can be the source of outgoing search requests
  181. #
  182. # source_ips:
  183. # - 1.1.1.1
  184. # - 1.1.1.2
  185. # - fe80::/126
  186. # External plugin configuration, for more details see
  187. # https://docs.searxng.org/dev/plugins.html
  188. #
  189. # plugins:
  190. # - plugin1
  191. # - plugin2
  192. # - ...
  193. # Comment or un-comment plugin to activate / deactivate by default.
  194. #
  195. # enabled_plugins:
  196. # # these plugins are enabled if nothing is configured ..
  197. # - 'Hash plugin'
  198. # - 'Search on category select'
  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. shortcut: kc
  819. timeout: 4.0
  820. disabled: true
  821. - name: lemmy communities
  822. engine: lemmy
  823. lemmy_type: Communities
  824. shortcut: leco
  825. - name: lemmy users
  826. engine: lemmy
  827. network: lemmy communities
  828. lemmy_type: Users
  829. shortcut: leus
  830. - name: lemmy posts
  831. engine: lemmy
  832. network: lemmy communities
  833. lemmy_type: Posts
  834. shortcut: lepo
  835. - name: lemmy comments
  836. engine: lemmy
  837. network: lemmy communities
  838. lemmy_type: Comments
  839. shortcut: lecom
  840. - name: library genesis
  841. engine: xpath
  842. search_url: https://libgen.fun/search.php?req={query}
  843. url_xpath: //a[contains(@href,"get.php?md5")]/@href
  844. title_xpath: //a[contains(@href,"book/")]/text()[1]
  845. content_xpath: //td/a[1][contains(@href,"=author")]/text()
  846. categories: files
  847. timeout: 7.0
  848. disabled: true
  849. shortcut: lg
  850. about:
  851. website: https://libgen.fun/
  852. wikidata_id: Q22017206
  853. official_api_documentation:
  854. use_official_api: false
  855. require_api_key: false
  856. results: HTML
  857. - name: z-library
  858. engine: zlibrary
  859. shortcut: zlib
  860. categories: files
  861. timeout: 7.0
  862. - name: library of congress
  863. engine: loc
  864. shortcut: loc
  865. categories: images
  866. - name: lingva
  867. engine: lingva
  868. shortcut: lv
  869. # set lingva instance in url, by default it will use the official instance
  870. # url: https://lingva.ml
  871. - name: lobste.rs
  872. engine: xpath
  873. search_url: https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  874. results_xpath: //li[contains(@class, "story")]
  875. url_xpath: .//a[@class="u-url"]/@href
  876. title_xpath: .//a[@class="u-url"]
  877. content_xpath: .//a[@class="domain"]
  878. categories: it
  879. shortcut: lo
  880. timeout: 5.0
  881. disabled: true
  882. about:
  883. website: https://lobste.rs/
  884. wikidata_id: Q60762874
  885. official_api_documentation:
  886. use_official_api: false
  887. require_api_key: false
  888. results: HTML
  889. - name: azlyrics
  890. shortcut: lyrics
  891. engine: xpath
  892. timeout: 4.0
  893. disabled: true
  894. categories: [music, lyrics]
  895. paging: true
  896. search_url: https://search.azlyrics.com/search.php?q={query}&w=lyrics&p={pageno}
  897. url_xpath: //td[@class="text-left visitedlyr"]/a/@href
  898. title_xpath: //span/b/text()
  899. content_xpath: //td[@class="text-left visitedlyr"]/a/small
  900. about:
  901. website: https://azlyrics.com
  902. wikidata_id: Q66372542
  903. official_api_documentation:
  904. use_official_api: false
  905. require_api_key: false
  906. results: HTML
  907. - name: metacpan
  908. engine: metacpan
  909. shortcut: cpan
  910. disabled: true
  911. number_of_results: 20
  912. # - name: meilisearch
  913. # engine: meilisearch
  914. # shortcut: mes
  915. # enable_http: true
  916. # base_url: http://localhost:7700
  917. # index: my-index
  918. - name: mixcloud
  919. engine: mixcloud
  920. shortcut: mc
  921. # MongoDB engine
  922. # Required dependency: pymongo
  923. # - name: mymongo
  924. # engine: mongodb
  925. # shortcut: md
  926. # exact_match_only: false
  927. # host: '127.0.0.1'
  928. # port: 27017
  929. # enable_http: true
  930. # results_per_page: 20
  931. # database: 'business'
  932. # collection: 'reviews' # name of the db collection
  933. # key: 'name' # key in the collection to search for
  934. - name: mwmbl
  935. engine: mwmbl
  936. # api_url: https://api.mwmbl.org
  937. shortcut: mwm
  938. disabled: true
  939. - name: npm
  940. engine: json_engine
  941. paging: true
  942. first_page_num: 0
  943. search_url: https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  944. results_query: results
  945. url_query: package/links/npm
  946. title_query: package/name
  947. content_query: package/description
  948. page_size: 25
  949. categories: [it, packages]
  950. disabled: true
  951. timeout: 5.0
  952. shortcut: npm
  953. about:
  954. website: https://npms.io/
  955. wikidata_id: Q7067518
  956. official_api_documentation: https://api-docs.npms.io/
  957. use_official_api: false
  958. require_api_key: false
  959. results: JSON
  960. - name: nyaa
  961. engine: nyaa
  962. shortcut: nt
  963. disabled: true
  964. - name: mankier
  965. engine: json_engine
  966. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  967. results_query: results
  968. url_query: url
  969. title_query: name
  970. content_query: description
  971. categories: it
  972. shortcut: man
  973. about:
  974. website: https://www.mankier.com/
  975. official_api_documentation: https://www.mankier.com/api
  976. use_official_api: true
  977. require_api_key: false
  978. results: JSON
  979. - name: odysee
  980. engine: odysee
  981. shortcut: od
  982. disabled: true
  983. - name: openairedatasets
  984. engine: json_engine
  985. paging: true
  986. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  987. results_query: response/results/result
  988. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  989. title_query: metadata/oaf:entity/oaf:result/title/$
  990. content_query: metadata/oaf:entity/oaf:result/description/$
  991. content_html_to_text: true
  992. categories: "science"
  993. shortcut: oad
  994. timeout: 5.0
  995. about:
  996. website: https://www.openaire.eu/
  997. wikidata_id: Q25106053
  998. official_api_documentation: https://api.openaire.eu/
  999. use_official_api: false
  1000. require_api_key: false
  1001. results: JSON
  1002. - name: openairepublications
  1003. engine: json_engine
  1004. paging: true
  1005. search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  1006. results_query: response/results/result
  1007. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1008. title_query: metadata/oaf:entity/oaf:result/title/$
  1009. content_query: metadata/oaf:entity/oaf:result/description/$
  1010. content_html_to_text: true
  1011. categories: science
  1012. shortcut: oap
  1013. timeout: 5.0
  1014. about:
  1015. website: https://www.openaire.eu/
  1016. wikidata_id: Q25106053
  1017. official_api_documentation: https://api.openaire.eu/
  1018. use_official_api: false
  1019. require_api_key: false
  1020. results: JSON
  1021. # - name: opensemanticsearch
  1022. # engine: opensemantic
  1023. # shortcut: oss
  1024. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  1025. - name: openstreetmap
  1026. engine: openstreetmap
  1027. shortcut: osm
  1028. - name: openrepos
  1029. engine: xpath
  1030. paging: true
  1031. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  1032. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  1033. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  1034. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  1035. categories: files
  1036. timeout: 4.0
  1037. disabled: true
  1038. shortcut: or
  1039. about:
  1040. website: https://openrepos.net/
  1041. wikidata_id:
  1042. official_api_documentation:
  1043. use_official_api: false
  1044. require_api_key: false
  1045. results: HTML
  1046. - name: packagist
  1047. engine: json_engine
  1048. paging: true
  1049. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  1050. results_query: results
  1051. url_query: url
  1052. title_query: name
  1053. content_query: description
  1054. categories: [it, packages]
  1055. disabled: true
  1056. timeout: 5.0
  1057. shortcut: pack
  1058. about:
  1059. website: https://packagist.org
  1060. wikidata_id: Q108311377
  1061. official_api_documentation: https://packagist.org/apidoc
  1062. use_official_api: true
  1063. require_api_key: false
  1064. results: JSON
  1065. - name: pdbe
  1066. engine: pdbe
  1067. shortcut: pdb
  1068. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1069. # hide_obsolete: false
  1070. - name: photon
  1071. engine: photon
  1072. shortcut: ph
  1073. - name: piped
  1074. engine: piped
  1075. shortcut: ppd
  1076. categories: videos
  1077. piped_filter: videos
  1078. timeout: 3.0
  1079. # URL to use as link and for embeds
  1080. frontend_url: https://srv.piped.video
  1081. # Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
  1082. backend_url:
  1083. - https://pipedapi.kavin.rocks
  1084. - https://pipedapi-libre.kavin.rocks
  1085. - https://pipedapi.adminforge.de
  1086. - name: piped.music
  1087. engine: piped
  1088. network: piped
  1089. shortcut: ppdm
  1090. categories: music
  1091. piped_filter: music_songs
  1092. timeout: 3.0
  1093. - name: piratebay
  1094. engine: piratebay
  1095. shortcut: tpb
  1096. # You may need to change this URL to a proxy if piratebay is blocked in your
  1097. # country
  1098. url: https://thepiratebay.org/
  1099. timeout: 3.0
  1100. # Required dependency: psychopg2
  1101. # - name: postgresql
  1102. # engine: postgresql
  1103. # database: postgres
  1104. # username: postgres
  1105. # password: postgres
  1106. # limit: 10
  1107. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1108. # shortcut : psql
  1109. - name: pub.dev
  1110. engine: xpath
  1111. shortcut: pd
  1112. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1113. paging: true
  1114. results_xpath: //div[contains(@class,"packages-item")]
  1115. url_xpath: ./div/h3/a/@href
  1116. title_xpath: ./div/h3/a
  1117. content_xpath: ./div/div/div[contains(@class,"packages-description")]/span
  1118. categories: [packages, it]
  1119. timeout: 3.0
  1120. disabled: true
  1121. first_page_num: 1
  1122. about:
  1123. website: https://pub.dev/
  1124. official_api_documentation: https://pub.dev/help/api
  1125. use_official_api: false
  1126. require_api_key: false
  1127. results: HTML
  1128. - name: pubmed
  1129. engine: pubmed
  1130. shortcut: pub
  1131. timeout: 3.0
  1132. - name: pypi
  1133. shortcut: pypi
  1134. engine: xpath
  1135. paging: true
  1136. search_url: https://pypi.org/search/?q={query}&page={pageno}
  1137. results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"]
  1138. url_xpath: ./@href
  1139. title_xpath: ./h3/span[@class="package-snippet__name"]
  1140. content_xpath: ./p
  1141. suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"]
  1142. first_page_num: 1
  1143. categories: [it, packages]
  1144. about:
  1145. website: https://pypi.org
  1146. wikidata_id: Q2984686
  1147. official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html
  1148. use_official_api: false
  1149. require_api_key: false
  1150. results: HTML
  1151. - name: qwant
  1152. qwant_categ: web
  1153. engine: qwant
  1154. shortcut: qw
  1155. categories: [general, web]
  1156. additional_tests:
  1157. rosebud: *test_rosebud
  1158. - name: qwant news
  1159. qwant_categ: news
  1160. engine: qwant
  1161. shortcut: qwn
  1162. categories: news
  1163. network: qwant
  1164. - name: qwant images
  1165. qwant_categ: images
  1166. engine: qwant
  1167. shortcut: qwi
  1168. categories: [images, web]
  1169. network: qwant
  1170. - name: qwant videos
  1171. qwant_categ: videos
  1172. engine: qwant
  1173. shortcut: qwv
  1174. categories: [videos, web]
  1175. network: qwant
  1176. # - name: library
  1177. # engine: recoll
  1178. # shortcut: lib
  1179. # base_url: 'https://recoll.example.org/'
  1180. # search_dir: ''
  1181. # mount_prefix: /export
  1182. # dl_prefix: 'https://download.example.org'
  1183. # timeout: 30.0
  1184. # categories: files
  1185. # disabled: true
  1186. # - name: recoll library reference
  1187. # engine: recoll
  1188. # base_url: 'https://recoll.example.org/'
  1189. # search_dir: reference
  1190. # mount_prefix: /export
  1191. # dl_prefix: 'https://download.example.org'
  1192. # shortcut: libr
  1193. # timeout: 30.0
  1194. # categories: files
  1195. # disabled: true
  1196. - name: reddit
  1197. engine: reddit
  1198. shortcut: re
  1199. page_size: 25
  1200. # Required dependency: redis
  1201. # - name: myredis
  1202. # shortcut : rds
  1203. # engine: redis_server
  1204. # exact_match_only: false
  1205. # host: '127.0.0.1'
  1206. # port: 6379
  1207. # enable_http: true
  1208. # password: ''
  1209. # db: 0
  1210. # tmp suspended: bad certificate
  1211. # - name: scanr structures
  1212. # shortcut: scs
  1213. # engine: scanr_structures
  1214. # disabled: true
  1215. - name: sepiasearch
  1216. engine: sepiasearch
  1217. shortcut: sep
  1218. - name: soundcloud
  1219. engine: soundcloud
  1220. shortcut: sc
  1221. - name: stackoverflow
  1222. engine: stackexchange
  1223. shortcut: st
  1224. api_site: 'stackoverflow'
  1225. categories: [it, q&a]
  1226. - name: askubuntu
  1227. engine: stackexchange
  1228. shortcut: ubuntu
  1229. api_site: 'askubuntu'
  1230. categories: [it, q&a]
  1231. - name: internetarchivescholar
  1232. engine: internet_archive_scholar
  1233. shortcut: ias
  1234. timeout: 5.0
  1235. - name: superuser
  1236. engine: stackexchange
  1237. shortcut: su
  1238. api_site: 'superuser'
  1239. categories: [it, q&a]
  1240. - name: searchcode code
  1241. engine: searchcode_code
  1242. shortcut: scc
  1243. disabled: true
  1244. - name: framalibre
  1245. engine: framalibre
  1246. shortcut: frl
  1247. disabled: true
  1248. # - name: searx
  1249. # engine: searx_engine
  1250. # shortcut: se
  1251. # instance_urls :
  1252. # - http://127.0.0.1:8888/
  1253. # - ...
  1254. # disabled: true
  1255. - name: semantic scholar
  1256. engine: semantic_scholar
  1257. disabled: true
  1258. shortcut: se
  1259. # Spotify needs API credentials
  1260. # - name: spotify
  1261. # engine: spotify
  1262. # shortcut: stf
  1263. # api_client_id: *******
  1264. # api_client_secret: *******
  1265. # - name: solr
  1266. # engine: solr
  1267. # shortcut: slr
  1268. # base_url: http://localhost:8983
  1269. # collection: collection_name
  1270. # sort: '' # sorting: asc or desc
  1271. # field_list: '' # comma separated list of field names to display on the UI
  1272. # default_fields: '' # default field to query
  1273. # query_fields: '' # query fields
  1274. # enable_http: true
  1275. # - name: springer nature
  1276. # engine: springer
  1277. # # get your API key from: https://dev.springernature.com/signup
  1278. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1279. # api_key: 'unset'
  1280. # shortcut: springer
  1281. # timeout: 15.0
  1282. - name: startpage
  1283. engine: startpage
  1284. shortcut: sp
  1285. timeout: 6.0
  1286. disabled: true
  1287. additional_tests:
  1288. rosebud: *test_rosebud
  1289. - name: tokyotoshokan
  1290. engine: tokyotoshokan
  1291. shortcut: tt
  1292. timeout: 6.0
  1293. disabled: true
  1294. - name: solidtorrents
  1295. engine: solidtorrents
  1296. shortcut: solid
  1297. timeout: 4.0
  1298. base_url:
  1299. - https://solidtorrents.to
  1300. - https://bitsearch.to
  1301. # For this demo of the sqlite engine download:
  1302. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1303. # and unpack into searx/data/filmliste-v2.db
  1304. # Query to test: "!demo concert"
  1305. #
  1306. # - name: demo
  1307. # engine: sqlite
  1308. # shortcut: demo
  1309. # categories: general
  1310. # result_template: default.html
  1311. # database: searx/data/filmliste-v2.db
  1312. # query_str: >-
  1313. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1314. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1315. # description AS content
  1316. # FROM film
  1317. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1318. # ORDER BY duration DESC
  1319. - name: tagesschau
  1320. engine: tagesschau
  1321. shortcut: ts
  1322. disabled: true
  1323. - name: tmdb
  1324. engine: xpath
  1325. paging: true
  1326. search_url: https://www.themoviedb.org/search?page={pageno}&query={query}
  1327. results_xpath: //div[contains(@class,"movie") or contains(@class,"tv")]//div[contains(@class,"card")]
  1328. url_xpath: .//div[contains(@class,"poster")]/a/@href
  1329. thumbnail_xpath: .//img/@src
  1330. title_xpath: .//div[contains(@class,"title")]//h2
  1331. content_xpath: .//div[contains(@class,"overview")]
  1332. shortcut: tm
  1333. disabled: true
  1334. # Requires Tor
  1335. - name: torch
  1336. engine: xpath
  1337. paging: true
  1338. search_url:
  1339. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1340. results_xpath: //table//tr
  1341. url_xpath: ./td[2]/a
  1342. title_xpath: ./td[2]/b
  1343. content_xpath: ./td[2]/small
  1344. categories: onions
  1345. enable_http: true
  1346. shortcut: tch
  1347. # torznab engine lets you query any torznab compatible indexer. Using this
  1348. # engine in combination with Jackett opens the possibility to query a lot of
  1349. # public and private indexers directly from SearXNG. More details at:
  1350. # https://docs.searxng.org/dev/engines/online/torznab.html
  1351. #
  1352. # - name: Torznab EZTV
  1353. # engine: torznab
  1354. # shortcut: eztv
  1355. # base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
  1356. # enable_http: true # if using localhost
  1357. # api_key: xxxxxxxxxxxxxxx
  1358. # show_magnet_links: true
  1359. # show_torrent_files: false
  1360. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1361. # torznab_categories: # optional
  1362. # - 2000
  1363. # - 5000
  1364. - name: twitter
  1365. shortcut: tw
  1366. engine: twitter
  1367. disabled: true
  1368. # tmp suspended - too slow, too many errors
  1369. # - name: urbandictionary
  1370. # engine : xpath
  1371. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1372. # url_xpath : //*[@class="word"]/@href
  1373. # title_xpath : //*[@class="def-header"]
  1374. # content_xpath: //*[@class="meaning"]
  1375. # shortcut: ud
  1376. - name: unsplash
  1377. engine: unsplash
  1378. shortcut: us
  1379. - name: yahoo
  1380. engine: yahoo
  1381. shortcut: yh
  1382. disabled: true
  1383. - name: yahoo news
  1384. engine: yahoo_news
  1385. shortcut: yhn
  1386. - name: youtube
  1387. shortcut: yt
  1388. # You can use the engine using the official stable API, but you need an API
  1389. # key See: https://console.developers.google.com/project
  1390. #
  1391. # engine: youtube_api
  1392. # api_key: 'apikey' # required!
  1393. #
  1394. # Or you can use the html non-stable engine, activated by default
  1395. engine: youtube_noapi
  1396. - name: dailymotion
  1397. engine: dailymotion
  1398. shortcut: dm
  1399. - name: vimeo
  1400. engine: vimeo
  1401. shortcut: vm
  1402. - name: wiby
  1403. engine: json_engine
  1404. paging: true
  1405. search_url: https://wiby.me/json/?q={query}&p={pageno}
  1406. url_query: URL
  1407. title_query: Title
  1408. content_query: Snippet
  1409. categories: [general, web]
  1410. shortcut: wib
  1411. disabled: true
  1412. about:
  1413. website: https://wiby.me/
  1414. - name: alexandria
  1415. engine: json_engine
  1416. shortcut: alx
  1417. categories: general
  1418. paging: true
  1419. search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
  1420. results_query: results
  1421. title_query: title
  1422. url_query: url
  1423. content_query: snippet
  1424. timeout: 1.5
  1425. disabled: true
  1426. about:
  1427. website: https://alexandria.org/
  1428. official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
  1429. use_official_api: true
  1430. require_api_key: false
  1431. results: JSON
  1432. - name: wikibooks
  1433. engine: mediawiki
  1434. weight: 0.5
  1435. shortcut: wb
  1436. categories: [general, wikimedia]
  1437. base_url: "https://{language}.wikibooks.org/"
  1438. search_type: text
  1439. disabled: true
  1440. about:
  1441. website: https://www.wikibooks.org/
  1442. wikidata_id: Q367
  1443. - name: wikinews
  1444. engine: mediawiki
  1445. shortcut: wn
  1446. categories: [news, wikimedia]
  1447. base_url: "https://{language}.wikinews.org/"
  1448. search_type: text
  1449. srsort: create_timestamp_desc
  1450. about:
  1451. website: https://www.wikinews.org/
  1452. wikidata_id: Q964
  1453. - name: wikiquote
  1454. engine: mediawiki
  1455. weight: 0.5
  1456. shortcut: wq
  1457. categories: [general, wikimedia]
  1458. base_url: "https://{language}.wikiquote.org/"
  1459. search_type: text
  1460. disabled: true
  1461. additional_tests:
  1462. rosebud: *test_rosebud
  1463. about:
  1464. website: https://www.wikiquote.org/
  1465. wikidata_id: Q369
  1466. - name: wikisource
  1467. engine: mediawiki
  1468. weight: 0.5
  1469. shortcut: ws
  1470. categories: [general, wikimedia]
  1471. base_url: "https://{language}.wikisource.org/"
  1472. search_type: text
  1473. disabled: true
  1474. about:
  1475. website: https://www.wikisource.org/
  1476. wikidata_id: Q263
  1477. - name: wikispecies
  1478. engine: mediawiki
  1479. shortcut: wsp
  1480. categories: [general, science, wikimedia]
  1481. base_url: "https://species.wikimedia.org/"
  1482. search_type: text
  1483. disabled: true
  1484. about:
  1485. website: https://species.wikimedia.org/
  1486. wikidata_id: Q13679
  1487. - name: wiktionary
  1488. engine: mediawiki
  1489. shortcut: wt
  1490. categories: [dictionaries, wikimedia]
  1491. base_url: "https://{language}.wiktionary.org/"
  1492. search_type: text
  1493. about:
  1494. website: https://www.wiktionary.org/
  1495. wikidata_id: Q151
  1496. - name: wikiversity
  1497. engine: mediawiki
  1498. weight: 0.5
  1499. shortcut: wv
  1500. categories: [general, wikimedia]
  1501. base_url: "https://{language}.wikiversity.org/"
  1502. search_type: text
  1503. disabled: true
  1504. about:
  1505. website: https://www.wikiversity.org/
  1506. wikidata_id: Q370
  1507. - name: wikivoyage
  1508. engine: mediawiki
  1509. weight: 0.5
  1510. shortcut: wy
  1511. categories: [general, wikimedia]
  1512. base_url: "https://{language}.wikivoyage.org/"
  1513. search_type: text
  1514. disabled: true
  1515. about:
  1516. website: https://www.wikivoyage.org/
  1517. wikidata_id: Q373
  1518. - name: wikicommons.images
  1519. engine: wikicommons
  1520. shortcut: wc
  1521. categories: images
  1522. number_of_results: 10
  1523. - name: wolframalpha
  1524. shortcut: wa
  1525. # You can use the engine using the official stable API, but you need an API
  1526. # key. See: https://products.wolframalpha.com/api/
  1527. #
  1528. # engine: wolframalpha_api
  1529. # api_key: ''
  1530. #
  1531. # Or you can use the html non-stable engine, activated by default
  1532. engine: wolframalpha_noapi
  1533. timeout: 6.0
  1534. categories: general
  1535. disabled: true
  1536. - name: dictzone
  1537. engine: dictzone
  1538. shortcut: dc
  1539. - name: mymemory translated
  1540. engine: translated
  1541. shortcut: tl
  1542. timeout: 5.0
  1543. # You can use without an API key, but you are limited to 1000 words/day
  1544. # See: https://mymemory.translated.net/doc/usagelimits.php
  1545. # api_key: ''
  1546. # Required dependency: mysql-connector-python
  1547. # - name: mysql
  1548. # engine: mysql_server
  1549. # database: mydatabase
  1550. # username: user
  1551. # password: pass
  1552. # limit: 10
  1553. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1554. # shortcut: mysql
  1555. - name: 1337x
  1556. engine: 1337x
  1557. shortcut: 1337x
  1558. disabled: true
  1559. - name: duden
  1560. engine: duden
  1561. shortcut: du
  1562. disabled: true
  1563. - name: seznam
  1564. shortcut: szn
  1565. engine: seznam
  1566. disabled: true
  1567. # - name: deepl
  1568. # engine: deepl
  1569. # shortcut: dpl
  1570. # # You can use the engine using the official stable API, but you need an API key
  1571. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  1572. # api_key: '' # required!
  1573. # timeout: 5.0
  1574. # disabled: true
  1575. - name: mojeek
  1576. shortcut: mjk
  1577. engine: xpath
  1578. paging: true
  1579. categories: [general, web]
  1580. search_url: https://www.mojeek.com/search?q={query}&s={pageno}&lang={lang}&lb={lang}
  1581. results_xpath: //ul[@class="results-standard"]/li/a[@class="ob"]
  1582. url_xpath: ./@href
  1583. title_xpath: ../h2/a
  1584. content_xpath: ..//p[@class="s"]
  1585. suggestion_xpath: //div[@class="top-info"]/p[@class="top-info spell"]/em/a
  1586. first_page_num: 0
  1587. page_size: 10
  1588. disabled: true
  1589. about:
  1590. website: https://www.mojeek.com/
  1591. wikidata_id: Q60747299
  1592. official_api_documentation: https://www.mojeek.com/services/api.html/
  1593. use_official_api: false
  1594. require_api_key: false
  1595. results: HTML
  1596. - name: moviepilot
  1597. engine: moviepilot
  1598. shortcut: mp
  1599. disabled: true
  1600. - name: naver
  1601. shortcut: nvr
  1602. categories: [general, web]
  1603. engine: xpath
  1604. paging: true
  1605. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1606. url_xpath: //a[@class="link_tit"]/@href
  1607. title_xpath: //a[@class="link_tit"]
  1608. content_xpath: //a[@class="total_dsc"]/div
  1609. first_page_num: 1
  1610. page_size: 10
  1611. disabled: true
  1612. about:
  1613. website: https://www.naver.com/
  1614. wikidata_id: Q485639
  1615. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1616. use_official_api: false
  1617. require_api_key: false
  1618. results: HTML
  1619. language: ko
  1620. - name: rubygems
  1621. shortcut: rbg
  1622. engine: xpath
  1623. paging: true
  1624. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1625. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1626. url_xpath: ./@href
  1627. title_xpath: ./span/h2
  1628. content_xpath: ./span/p
  1629. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1630. first_page_num: 1
  1631. categories: [it, packages]
  1632. disabled: true
  1633. about:
  1634. website: https://rubygems.org/
  1635. wikidata_id: Q1853420
  1636. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1637. use_official_api: false
  1638. require_api_key: false
  1639. results: HTML
  1640. - name: peertube
  1641. engine: peertube
  1642. shortcut: ptb
  1643. paging: true
  1644. # alternatives see: https://instances.joinpeertube.org/instances
  1645. # base_url: https://tube.4aem.com
  1646. categories: videos
  1647. disabled: true
  1648. timeout: 6.0
  1649. - name: mediathekviewweb
  1650. engine: mediathekviewweb
  1651. shortcut: mvw
  1652. disabled: true
  1653. # - name: yacy
  1654. # engine: yacy
  1655. # shortcut: ya
  1656. # base_url: http://localhost:8090
  1657. # # required if you aren't using HTTPS for your local yacy instance'
  1658. # enable_http: true
  1659. # timeout: 3.0
  1660. # # Yacy search mode. 'global' or 'local'.
  1661. # search_mode: 'global'
  1662. - name: rumble
  1663. engine: rumble
  1664. shortcut: ru
  1665. base_url: https://rumble.com/
  1666. paging: true
  1667. categories: videos
  1668. disabled: true
  1669. - name: wordnik
  1670. engine: wordnik
  1671. shortcut: def
  1672. base_url: https://www.wordnik.com/
  1673. categories: [dictionaries]
  1674. timeout: 5.0
  1675. - name: woxikon.de synonyme
  1676. engine: xpath
  1677. shortcut: woxi
  1678. categories: [dictionaries]
  1679. timeout: 5.0
  1680. disabled: true
  1681. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  1682. url_xpath: //div[@class="upper-synonyms"]/a/@href
  1683. content_xpath: //div[@class="synonyms-list-group"]
  1684. title_xpath: //div[@class="upper-synonyms"]/a
  1685. no_result_for_http_status: [404]
  1686. about:
  1687. website: https://www.woxikon.de/
  1688. wikidata_id: # No Wikidata ID
  1689. use_official_api: false
  1690. require_api_key: false
  1691. results: HTML
  1692. language: de
  1693. - name: seekr news
  1694. engine: seekr
  1695. shortcut: senews
  1696. categories: news
  1697. seekr_category: news
  1698. disabled: true
  1699. - name: seekr images
  1700. engine: seekr
  1701. network: seekr news
  1702. shortcut: seimg
  1703. categories: images
  1704. seekr_category: images
  1705. disabled: true
  1706. - name: seekr videos
  1707. engine: seekr
  1708. network: seekr news
  1709. shortcut: sevid
  1710. categories: videos
  1711. seekr_category: videos
  1712. disabled: true
  1713. - name: sjp.pwn
  1714. engine: sjp
  1715. shortcut: sjp
  1716. base_url: https://sjp.pwn.pl/
  1717. timeout: 5.0
  1718. disabled: true
  1719. - name: svgrepo
  1720. engine: svgrepo
  1721. shortcut: svg
  1722. timeout: 10.0
  1723. disabled: true
  1724. - name: wallhaven
  1725. engine: wallhaven
  1726. # api_key: abcdefghijklmnopqrstuvwxyz
  1727. shortcut: wh
  1728. # wikimini: online encyclopedia for children
  1729. # The fulltext and title parameter is necessary for Wikimini because
  1730. # sometimes it will not show the results and redirect instead
  1731. - name: wikimini
  1732. engine: xpath
  1733. shortcut: wkmn
  1734. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  1735. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  1736. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  1737. content_xpath: //li/div[@class="searchresult"]
  1738. categories: general
  1739. disabled: true
  1740. about:
  1741. website: https://wikimini.org/
  1742. wikidata_id: Q3568032
  1743. use_official_api: false
  1744. require_api_key: false
  1745. results: HTML
  1746. language: fr
  1747. - name: wttr.in
  1748. engine: wttr
  1749. shortcut: wttr
  1750. timeout: 9.0
  1751. - name: yummly
  1752. engine: yummly
  1753. shortcut: yum
  1754. disabled: true
  1755. - name: brave
  1756. engine: brave
  1757. shortcut: br
  1758. time_range_support: true
  1759. paging: true
  1760. categories: [general, web]
  1761. brave_category: search
  1762. # brave_spellcheck: true
  1763. - name: brave.images
  1764. engine: brave
  1765. network: brave
  1766. shortcut: brimg
  1767. categories: [images, web]
  1768. brave_category: images
  1769. - name: brave.videos
  1770. engine: brave
  1771. network: brave
  1772. shortcut: brvid
  1773. categories: [videos, web]
  1774. brave_category: videos
  1775. - name: brave.news
  1776. engine: brave
  1777. network: brave
  1778. shortcut: brnews
  1779. categories: news
  1780. brave_category: news
  1781. - name: lib.rs
  1782. shortcut: lrs
  1783. engine: xpath
  1784. search_url: https://lib.rs/search?q={query}
  1785. results_xpath: /html/body/main/div/ol/li/a
  1786. url_xpath: ./@href
  1787. title_xpath: ./div[@class="h"]/h4
  1788. content_xpath: ./div[@class="h"]/p
  1789. categories: [it, packages]
  1790. disabled: true
  1791. about:
  1792. website: https://lib.rs
  1793. wikidata_id: Q113486010
  1794. use_official_api: false
  1795. require_api_key: false
  1796. results: HTML
  1797. - name: sourcehut
  1798. shortcut: srht
  1799. engine: xpath
  1800. paging: true
  1801. search_url: https://sr.ht/projects?page={pageno}&search={query}
  1802. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  1803. url_xpath: ./h4/a[2]/@href
  1804. title_xpath: ./h4/a[2]
  1805. content_xpath: ./p
  1806. first_page_num: 1
  1807. categories: [it, repos]
  1808. disabled: true
  1809. about:
  1810. website: https://sr.ht
  1811. wikidata_id: Q78514485
  1812. official_api_documentation: https://man.sr.ht/
  1813. use_official_api: false
  1814. require_api_key: false
  1815. results: HTML
  1816. - name: goo
  1817. shortcut: goo
  1818. engine: xpath
  1819. paging: true
  1820. search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
  1821. url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
  1822. title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
  1823. content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
  1824. first_page_num: 0
  1825. categories: [general, web]
  1826. disabled: true
  1827. timeout: 4.0
  1828. about:
  1829. website: https://search.goo.ne.jp
  1830. wikidata_id: Q249044
  1831. use_official_api: false
  1832. require_api_key: false
  1833. results: HTML
  1834. language: ja
  1835. - name: bt4g
  1836. engine: bt4g
  1837. shortcut: bt4g
  1838. - name: pkg.go.dev
  1839. engine: xpath
  1840. shortcut: pgo
  1841. search_url: https://pkg.go.dev/search?limit=100&m=package&q={query}
  1842. results_xpath: /html/body/main/div[contains(@class,"SearchResults")]/div[not(@class)]/div[@class="SearchSnippet"]
  1843. url_xpath: ./div[@class="SearchSnippet-headerContainer"]/h2/a/@href
  1844. title_xpath: ./div[@class="SearchSnippet-headerContainer"]/h2/a
  1845. content_xpath: ./p[@class="SearchSnippet-synopsis"]
  1846. categories: [packages, it]
  1847. timeout: 3.0
  1848. disabled: true
  1849. about:
  1850. website: https://pkg.go.dev/
  1851. use_official_api: false
  1852. require_api_key: false
  1853. results: HTML
  1854. # Doku engine lets you access to any Doku wiki instance:
  1855. # A public one or a privete/corporate one.
  1856. # - name: ubuntuwiki
  1857. # engine: doku
  1858. # shortcut: uw
  1859. # base_url: 'https://doc.ubuntu-fr.org'
  1860. # Be careful when enabling this engine if you are
  1861. # running a public instance. Do not expose any sensitive
  1862. # information. You can restrict access by configuring a list
  1863. # of access tokens under tokens.
  1864. # - name: git grep
  1865. # engine: command
  1866. # command: ['git', 'grep', '{{QUERY}}']
  1867. # shortcut: gg
  1868. # tokens: []
  1869. # disabled: true
  1870. # delimiter:
  1871. # chars: ':'
  1872. # keys: ['filepath', 'code']
  1873. # Be careful when enabling this engine if you are
  1874. # running a public instance. Do not expose any sensitive
  1875. # information. You can restrict access by configuring a list
  1876. # of access tokens under tokens.
  1877. # - name: locate
  1878. # engine: command
  1879. # command: ['locate', '{{QUERY}}']
  1880. # shortcut: loc
  1881. # tokens: []
  1882. # disabled: true
  1883. # delimiter:
  1884. # chars: ' '
  1885. # keys: ['line']
  1886. # Be careful when enabling this engine if you are
  1887. # running a public instance. Do not expose any sensitive
  1888. # information. You can restrict access by configuring a list
  1889. # of access tokens under tokens.
  1890. # - name: find
  1891. # engine: command
  1892. # command: ['find', '.', '-name', '{{QUERY}}']
  1893. # query_type: path
  1894. # shortcut: fnd
  1895. # tokens: []
  1896. # disabled: true
  1897. # delimiter:
  1898. # chars: ' '
  1899. # keys: ['line']
  1900. # Be careful when enabling this engine if you are
  1901. # running a public instance. Do not expose any sensitive
  1902. # information. You can restrict access by configuring a list
  1903. # of access tokens under tokens.
  1904. # - name: pattern search in files
  1905. # engine: command
  1906. # command: ['fgrep', '{{QUERY}}']
  1907. # shortcut: fgr
  1908. # tokens: []
  1909. # disabled: true
  1910. # delimiter:
  1911. # chars: ' '
  1912. # keys: ['line']
  1913. # Be careful when enabling this engine if you are
  1914. # running a public instance. Do not expose any sensitive
  1915. # information. You can restrict access by configuring a list
  1916. # of access tokens under tokens.
  1917. # - name: regex search in files
  1918. # engine: command
  1919. # command: ['grep', '{{QUERY}}']
  1920. # shortcut: gr
  1921. # tokens: []
  1922. # disabled: true
  1923. # delimiter:
  1924. # chars: ' '
  1925. # keys: ['line']
  1926. doi_resolvers:
  1927. oadoi.org: 'https://oadoi.org/'
  1928. doi.org: 'https://doi.org/'
  1929. doai.io: 'https://dissem.in/'
  1930. sci-hub.se: 'https://sci-hub.se/'
  1931. sci-hub.st: 'https://sci-hub.st/'
  1932. sci-hub.ru: 'https://sci-hub.ru/'
  1933. default_doi_resolver: 'oadoi.org'