settings.yml 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533
  1. general:
  2. debug : False # Debug mode, only for development
  3. instance_name : "searxng" # displayed name
  4. contact_url: False # mailto:contact@example.com
  5. brand:
  6. git_url: https://github.com/searxng/searxng
  7. git_branch: master
  8. issue_url: https://github.com/searxng/searxng/issues
  9. new_issue_url: https://github.com/searxng/searxng/issues/new
  10. docs_url: https://searxng.github.io/searxng
  11. public_instances: https://searx.space
  12. wiki_url: https://github.com/searxng/searxng/wiki
  13. search:
  14. safe_search : 0 # Filter results. 0: None, 1: Moderate, 2: Strict
  15. autocomplete : "" # Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "startpage", "swisscows", "qwant", "wikipedia" - leave blank to turn it off by default
  16. default_lang : "" # Default search language - leave blank to detect from browser information or use codes from 'languages.py'
  17. ban_time_on_fail : 5 # ban time in seconds after engine errors
  18. max_ban_time_on_fail : 120 # max ban time in seconds after engine errors
  19. formats: [html, csv, json, rss] # remove format to deny access, use lower case.
  20. server:
  21. port : 8888
  22. bind_address : "127.0.0.1" # address to listen on
  23. secret_key : "ultrasecretkey" # change this!
  24. base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/"
  25. image_proxy : False # Proxying image results through searx
  26. http_protocol_version : "1.0" # 1.0 and 1.1 are supported
  27. method: "POST" # POST queries are more secure as they don't show up in history but may cause problems when using Firefox containers
  28. default_http_headers:
  29. X-Content-Type-Options : nosniff
  30. X-XSS-Protection : 1; mode=block
  31. X-Download-Options : noopen
  32. X-Robots-Tag : noindex, nofollow
  33. Referrer-Policy : no-referrer
  34. ui:
  35. static_path : "" # Custom static path - leave it blank if you didn't change
  36. templates_path : "" # Custom templates path - leave it blank if you didn't change
  37. default_theme : oscar # ui theme
  38. default_locale : "" # Default interface locale - leave blank to detect from browser information or use codes from the 'locales' config section
  39. theme_args :
  40. oscar_style : logicodev # default style of oscar
  41. # results_on_new_tab: False # Open result links in a new tab by default
  42. # categories_order :
  43. # - general
  44. # - files
  45. # - map
  46. # - it
  47. # - science
  48. # Lock arbitrary settings on the preferences page.
  49. # To find the ID of the user setting you want to lock, check
  50. # the ID of the form on the page "preferences".
  51. #preferences:
  52. # lock:
  53. # - language
  54. # - autocomplete
  55. # - method
  56. # searx supports result proxification using an external service: https://github.com/asciimoo/morty
  57. # uncomment below section if you have running morty proxy
  58. # the key is base64 encoded (keep the !!binary notation)
  59. # Note: since commit af77ec3, morty accepts a base64 encoded key.
  60. #result_proxy:
  61. # url : http://127.0.0.1:3000/
  62. # key : !!binary "your_morty_proxy_key"
  63. # proxify_results : True # [True|False] enable the "proxy" button next to each result
  64. outgoing: # communication with search engines
  65. request_timeout : 3.0 # default timeout in seconds, can be override by engine
  66. # max_request_timeout: 10.0 # the maximum timeout in seconds
  67. useragent_suffix : "" # suffix of searx_useragent, could contain informations like an email address to the administrator
  68. pool_connections : 100 # The maximum number of concurrent connections that may be established.
  69. pool_maxsize : 20 # Allow the connection pool to maintain keep-alive connections below this point.
  70. enable_http2: True # See https://www.python-httpx.org/http2/
  71. # uncomment below section if you want to use a proxy
  72. # see https://2.python-requests.org/en/latest/user/advanced/#proxies
  73. # SOCKS proxies are also supported: see https://2.python-requests.org/en/latest/user/advanced/#socks
  74. # proxies:
  75. # all://:
  76. # - http://proxy1:8080
  77. # - http://proxy2:8080
  78. # using_tor_proxy : True
  79. # extra_proxy_timeout : 10.0 # Extra seconds to add in order to account for the time taken by the proxy
  80. # uncomment below section only if you have more than one network interface
  81. # which can be the source of outgoing search requests
  82. # source_ips:
  83. # - 1.1.1.1
  84. # - 1.1.1.2
  85. # - fe80::/126
  86. # External plugin configuration
  87. # See https://searxng.github.io/searxng/dev/plugins.html for more details
  88. #
  89. # plugins:
  90. # - plugin1
  91. # - plugin2
  92. # - ...
  93. # uncomment below section if you want to configure which plugin is enabled by default
  94. #
  95. # enabled_plugins:
  96. # - "HTTPS rewrite"
  97. # - ...
  98. checker:
  99. # disable checker when in debug mode
  100. off_when_debug: True
  101. # scheduling: interval or int
  102. # use "scheduling: False" to disable scheduling
  103. # to activate the scheduler:
  104. # * uncomment "scheduling" section
  105. # * add "cache2 = name=searxcache,items=2000,blocks=2000,blocksize=4096,bitmap=1" to your uwsgi.ini
  106. # scheduling:
  107. # start_after: [300, 1800] # delay to start the first run of the checker
  108. # every: [86400, 90000] # how often the checker runs
  109. # additional tests: only for the YAML anchors (see the engines section)
  110. additional_tests:
  111. rosebud: &test_rosebud
  112. matrix:
  113. query: rosebud
  114. lang: en
  115. result_container:
  116. - not_empty
  117. - ['one_title_contains', 'citizen kane']
  118. test:
  119. - unique_results
  120. android: &test_android
  121. matrix:
  122. query: ['android']
  123. lang: ['en', 'de', 'fr', 'zh-CN']
  124. result_container:
  125. - not_empty
  126. - ['one_title_contains', 'google']
  127. test:
  128. - unique_results
  129. # tests: only for the YAML anchors (see the engines section)
  130. tests:
  131. infobox: &tests_infobox
  132. infobox:
  133. matrix:
  134. query: ["linux", "new york", "bbc"]
  135. result_container:
  136. - has_infobox
  137. engines:
  138. - name: apk mirror
  139. engine: apkmirror
  140. timeout: 4.0
  141. shortcut: apkm
  142. disabled: True
  143. # Requires Tor
  144. - name : ahmia
  145. engine : ahmia
  146. categories : onions
  147. enable_http : True
  148. shortcut : ah
  149. - name : arch linux wiki
  150. engine : archlinux
  151. shortcut : al
  152. - name : archive is
  153. engine : xpath
  154. search_url : https://archive.is/search/?q={query}
  155. url_xpath : (//div[@class="TEXT-BLOCK"]/a)/@href
  156. title_xpath : (//div[@class="TEXT-BLOCK"]/a)
  157. content_xpath : //div[@class="TEXT-BLOCK"]/ul/li
  158. categories : general
  159. timeout : 7.0
  160. disabled : True
  161. shortcut : ai
  162. soft_max_redirects: 1
  163. about:
  164. website: https://archive.is/
  165. wikidata_id: Q13515725
  166. official_api_documentation: http://mementoweb.org/depot/native/archiveis/
  167. use_official_api: false
  168. require_api_key: false
  169. results: HTML
  170. - name : artic
  171. engine : artic
  172. shortcut : arc
  173. timeout : 4.0
  174. - name : arxiv
  175. engine : arxiv
  176. shortcut : arx
  177. categories : science
  178. timeout : 4.0
  179. # tmp suspended: dh key too small
  180. # - name : base
  181. # engine : base
  182. # shortcut : bs
  183. - name: bandcamp
  184. engine: bandcamp
  185. shortcut: bc
  186. categories: music
  187. - name : wikipedia
  188. engine : wikipedia
  189. shortcut : wp
  190. base_url : 'https://{language}.wikipedia.org/'
  191. - name : bing
  192. engine : bing
  193. shortcut : bi
  194. - name : bing images
  195. engine : bing_images
  196. shortcut : bii
  197. - name : bing news
  198. engine : bing_news
  199. shortcut : bin
  200. - name : bing videos
  201. engine : bing_videos
  202. shortcut : biv
  203. - name : bitbucket
  204. engine : xpath
  205. paging : True
  206. search_url : https://bitbucket.org/repo/all/{pageno}?name={query}
  207. url_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  208. title_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]
  209. content_xpath : //article[@class="repo-summary"]/p
  210. categories : it
  211. timeout : 4.0
  212. disabled : True
  213. shortcut : bb
  214. about:
  215. website: https://bitbucket.org/
  216. wikidata_id: Q2493781
  217. official_api_documentation: https://developer.atlassian.com/bitbucket
  218. use_official_api: false
  219. require_api_key: false
  220. results: HTML
  221. - name : btdigg
  222. engine : btdigg
  223. shortcut : bt
  224. - name : ccc-tv
  225. engine : xpath
  226. paging : False
  227. search_url : https://media.ccc.de/search/?q={query}
  228. url_xpath : //div[@class="caption"]/h3/a/@href
  229. title_xpath : //div[@class="caption"]/h3/a/text()
  230. content_xpath : //div[@class="caption"]/h4/@title
  231. categories : videos
  232. disabled : True
  233. shortcut : c3tv
  234. about:
  235. website: https://media.ccc.de/
  236. wikidata_id: Q80729951
  237. official_api_documentation: https://github.com/voc/voctoweb
  238. use_official_api: false
  239. require_api_key: false
  240. results: HTML
  241. - name : ccengine
  242. engine : ccengine
  243. categories : images
  244. shortcut : cce
  245. # - name : core.ac.uk
  246. # engine : core
  247. # categories : science
  248. # shortcut : cor
  249. # # get your API key from: https://core.ac.uk/api-keys/register/
  250. # api_key : 'unset'
  251. - name : crossref
  252. engine : json_engine
  253. paging : True
  254. search_url : https://search.crossref.org/dois?q={query}&page={pageno}
  255. url_query : doi
  256. title_query : title
  257. title_html_to_text: True
  258. content_query : fullCitation
  259. content_html_to_text: True
  260. categories : science
  261. shortcut : cr
  262. about:
  263. website: https://www.crossref.org/
  264. wikidata_id: Q5188229
  265. official_api_documentation: https://github.com/CrossRef/rest-api-doc
  266. use_official_api: false
  267. require_api_key: false
  268. results: JSON
  269. - name : currency
  270. engine : currency_convert
  271. categories : general
  272. shortcut : cc
  273. - name : deezer
  274. engine : deezer
  275. shortcut : dz
  276. - name : deviantart
  277. engine : deviantart
  278. shortcut : da
  279. timeout : 3.0
  280. - name : ddg definitions
  281. engine : duckduckgo_definitions
  282. shortcut : ddd
  283. weight : 2
  284. disabled : True
  285. tests: *tests_infobox
  286. # cloudflare protected
  287. # - name : digbt
  288. # engine : digbt
  289. # shortcut : dbt
  290. # timeout : 6.0
  291. # disabled : True
  292. - name : digg
  293. engine : digg
  294. shortcut : dg
  295. - name : erowid
  296. engine : xpath
  297. paging : True
  298. first_page_num : 0
  299. page_size : 30
  300. search_url : https://www.erowid.org/search.php?q={query}&s={pageno}
  301. url_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  302. title_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  303. content_xpath : //dl[@class="results-list"]/dd[@class="result-details"]
  304. categories : general
  305. shortcut : ew
  306. disabled : True
  307. about:
  308. website: https://www.erowid.org/
  309. wikidata_id: Q1430691
  310. official_api_documentation:
  311. use_official_api: false
  312. require_api_key: false
  313. results: HTML
  314. # - name : elasticsearch
  315. # shortcut : es
  316. # engine : elasticsearch
  317. # base_url : http://localhost:9200
  318. # username : elastic
  319. # password : changeme
  320. # index : my-index
  321. # # available options: match, simple_query_string, term, terms, custom
  322. # query_type : match
  323. # # if query_type is set to custom, provide your query here
  324. # #custom_query_json: {"query":{"match_all": {}}}
  325. # #show_metadata: False
  326. # disabled : True
  327. - name : wikidata
  328. engine : wikidata
  329. shortcut : wd
  330. timeout : 3.0
  331. weight : 2
  332. tests: *tests_infobox
  333. - name : duckduckgo
  334. engine : duckduckgo
  335. shortcut : ddg
  336. disabled : True
  337. - name : duckduckgo images
  338. engine : duckduckgo_images
  339. shortcut : ddi
  340. timeout: 3.0
  341. disabled : True
  342. - name : etools
  343. engine : etools
  344. shortcut : eto
  345. disabled : True
  346. additional_tests:
  347. rosebud: *test_rosebud
  348. - name : etymonline
  349. engine : xpath
  350. paging : True
  351. search_url : https://etymonline.com/search?page={pageno}&q={query}
  352. url_xpath : //a[contains(@class, "word__name--")]/@href
  353. title_xpath : //a[contains(@class, "word__name--")]
  354. content_xpath : //section[contains(@class, "word__defination")]
  355. first_page_num : 1
  356. shortcut : et
  357. disabled : True
  358. about:
  359. website: https://www.etymonline.com/
  360. wikidata_id: Q1188617
  361. official_api_documentation:
  362. use_official_api: false
  363. require_api_key: false
  364. results: HTML
  365. # - name : ebay
  366. # engine : ebay
  367. # shortcut : eb
  368. # disabled : True
  369. # timeout: 5
  370. - name : 1x
  371. engine : www1x
  372. shortcut : 1x
  373. timeout : 3.0
  374. disabled : True
  375. - name : fdroid
  376. engine : fdroid
  377. shortcut : fd
  378. disabled : True
  379. - name : flickr
  380. categories : images
  381. shortcut : fl
  382. # You can use the engine using the official stable API, but you need an API key
  383. # See : https://www.flickr.com/services/apps/create/
  384. # engine : flickr
  385. # api_key: 'apikey' # required!
  386. # Or you can use the html non-stable engine, activated by default
  387. engine : flickr_noapi
  388. - name : free software directory
  389. engine : mediawiki
  390. shortcut : fsd
  391. categories : it
  392. base_url : https://directory.fsf.org/
  393. number_of_results : 5
  394. # what part of a page matches the query string: title, text, nearmatch
  395. # title - query matches title, text - query matches the text of page, nearmatch - nearmatch in title
  396. search_type : title
  397. timeout : 5.0
  398. disabled : True
  399. about:
  400. website: https://directory.fsf.org/
  401. wikidata_id: Q2470288
  402. # - name : freesound
  403. # engine : freesound
  404. # shortcut : fnd
  405. # disabled : True
  406. # timeout : 15.0
  407. # api_key : MyAPIkey
  408. # API key required, see : https://freesound.org/docs/api/overview.html
  409. - name : frinkiac
  410. engine : frinkiac
  411. shortcut : frk
  412. disabled : True
  413. - name : genius
  414. engine : genius
  415. shortcut : gen
  416. - name : gigablast
  417. engine : gigablast
  418. shortcut : gb
  419. timeout : 3.0
  420. disabled: True
  421. additional_tests:
  422. rosebud: *test_rosebud
  423. - name : gentoo
  424. engine : gentoo
  425. shortcut : ge
  426. - name : gitlab
  427. engine : json_engine
  428. paging : True
  429. search_url : https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  430. url_query : web_url
  431. title_query : name_with_namespace
  432. content_query : description
  433. page_size : 20
  434. categories : it
  435. shortcut : gl
  436. timeout : 10.0
  437. disabled : True
  438. about:
  439. website: https://about.gitlab.com/
  440. wikidata_id: Q16639197
  441. official_api_documentation: https://docs.gitlab.com/ee/api/
  442. use_official_api: false
  443. require_api_key: false
  444. results: JSON
  445. - name : github
  446. engine : github
  447. shortcut : gh
  448. # This a Gitea service. If you would like to use a different instance,
  449. # change codeberg.org to URL of the desired Gitea host. Or you can create
  450. # a new engine by copying this and changing the name, shortcut and search_url.
  451. - name : codeberg
  452. engine : json_engine
  453. search_url : https://codeberg.org/api/v1/repos/search?q={query}&limit=10
  454. url_query : html_url
  455. title_query : name
  456. content_query : description
  457. categories : it
  458. shortcut : cb
  459. disabled : True
  460. about:
  461. website: https://codeberg.org/
  462. wikidata_id:
  463. official_api_documentation: https://try.gitea.io/api/swagger
  464. use_official_api: false
  465. require_api_key: false
  466. results: JSON
  467. - name : google
  468. engine : google
  469. shortcut : go
  470. # additional_tests:
  471. # android: *test_android
  472. - name : google images
  473. engine : google_images
  474. shortcut : goi
  475. # additional_tests:
  476. # android: *test_android
  477. # dali:
  478. # matrix:
  479. # query: ['Dali Christ']
  480. # lang: ['en', 'de', 'fr', 'zh-CN']
  481. # result_container:
  482. # - ['one_title_contains', 'Salvador']
  483. - name : google news
  484. engine : google_news
  485. shortcut : gon
  486. # additional_tests:
  487. # android: *test_android
  488. - name : google videos
  489. engine : google_videos
  490. shortcut : gov
  491. # additional_tests:
  492. # android: *test_android
  493. - name : google scholar
  494. engine : google_scholar
  495. shortcut : gos
  496. - name : google play apps
  497. engine : xpath
  498. search_url : https://play.google.com/store/search?q={query}&c=apps
  499. results_xpath : '//div[@class="ImZGtf mpg5gc"]'
  500. title_xpath : './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a'
  501. url_xpath : './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a/@href'
  502. content_xpath : './/div[@class="RZEgze"]//a[@class="mnKHRc"]'
  503. thumbnail_xpath : './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  504. categories : files
  505. shortcut : gpa
  506. disabled : True
  507. about:
  508. website: https://play.google.com/
  509. wikidata_id: Q79576
  510. official_api_documentation:
  511. use_official_api: false
  512. require_api_key: false
  513. results: HTML
  514. - name : google play movies
  515. engine : xpath
  516. search_url : https://play.google.com/store/search?q={query}&c=movies
  517. results_xpath : '//div[@class="ImZGtf mpg5gc"]'
  518. title_xpath : './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a'
  519. url_xpath : './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a/@href'
  520. content_xpath : './/div[@class="kCSSQe"]'
  521. thumbnail_xpath : './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  522. categories : videos
  523. shortcut : gpm
  524. disabled : True
  525. about:
  526. website: https://play.google.com/
  527. wikidata_id: Q79576
  528. official_api_documentation:
  529. use_official_api: false
  530. require_api_key: false
  531. results: HTML
  532. - name : geektimes
  533. engine : xpath
  534. paging : True
  535. search_url : https://habr.com/en/search/page{pageno}/?q={query}
  536. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  537. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  538. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  539. categories : it
  540. timeout : 4.0
  541. disabled : True
  542. shortcut : gt
  543. about:
  544. website: https://geektimes.ru/
  545. wikidata_id: Q50572423
  546. official_api_documentation:
  547. use_official_api: false
  548. require_api_key: false
  549. results: HTML
  550. - name : habrahabr
  551. engine : xpath
  552. paging : True
  553. search_url : https://habrahabr.ru/search/page{pageno}/?q={query}
  554. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  555. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  556. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  557. categories : it
  558. timeout : 4.0
  559. disabled : True
  560. shortcut : habr
  561. about:
  562. website: https://habr.com/
  563. wikidata_id: Q4494434
  564. official_api_documentation: https://habr.com/en/docs/help/api/
  565. use_official_api: false
  566. require_api_key: false
  567. results: HTML
  568. - name : hoogle
  569. engine : xpath
  570. paging : True
  571. search_url : https://hoogle.haskell.org/?hoogle={query}&start={pageno}
  572. results_xpath : '//div[@class="result"]'
  573. title_xpath : './/div[@class="ans"]//a'
  574. url_xpath : './/div[@class="ans"]//a/@href'
  575. content_xpath : './/div[@class="from"]'
  576. page_size : 20
  577. categories : it
  578. shortcut : ho
  579. about:
  580. website: https://www.haskell.org/
  581. wikidata_id: Q34010
  582. official_api_documentation: https://hackage.haskell.org/api
  583. use_official_api: false
  584. require_api_key: false
  585. results: JSON
  586. - name : ina
  587. engine : ina
  588. shortcut : in
  589. timeout : 6.0
  590. disabled : True
  591. - name : invidious
  592. engine : invidious
  593. base_url :
  594. - https://invidious.tube/
  595. - https://invidious.snopyta.org/
  596. shortcut: iv
  597. timeout : 5.0
  598. disabled : True
  599. - name: kickass
  600. engine : kickass
  601. shortcut : kc
  602. timeout : 4.0
  603. disabled : True
  604. - name : library genesis
  605. engine : xpath
  606. enable_http: True
  607. search_url : http://libgen.rs/search.php?req={query}
  608. url_xpath : //a[contains(@href,"bookfi.net/md5")]/@href
  609. title_xpath : //a[contains(@href,"book/")]/text()[1]
  610. content_xpath : //td/a[1][contains(@href,"=author")]/text()
  611. categories : general
  612. timeout : 7.0
  613. disabled : True
  614. shortcut : lg
  615. about:
  616. website: http://libgen.rs/
  617. wikidata_id: Q22017206
  618. official_api_documentation:
  619. use_official_api: false
  620. require_api_key: false
  621. results: HTML
  622. - name : library of congress
  623. engine : loc
  624. shortcut : loc
  625. categories : images
  626. - name : lobste.rs
  627. engine : xpath
  628. search_url : https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  629. results_xpath : //li[contains(@class, "story")]
  630. url_xpath : .//a[@class="u-url"]/@href
  631. title_xpath : .//a[@class="u-url"]
  632. content_xpath : .//a[@class="domain"]
  633. categories : it
  634. shortcut : lo
  635. timeout : 5.0
  636. disabled: True
  637. about:
  638. website: https://lobste.rs/
  639. wikidata_id: Q60762874
  640. official_api_documentation:
  641. use_official_api: false
  642. require_api_key: false
  643. results: HTML
  644. # - name : meilisearch
  645. # engine : meilisearch
  646. # shortcut: mes
  647. # enable_http: True
  648. # base_url : http://localhost:7700
  649. # index : my-index
  650. - name : microsoft academic
  651. engine : microsoft_academic
  652. categories : science
  653. shortcut : ma
  654. - name : mixcloud
  655. engine : mixcloud
  656. shortcut : mc
  657. - name : npm
  658. engine : json_engine
  659. paging : True
  660. search_url : https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  661. results_query : results
  662. url_query : package/links/npm
  663. title_query : package/name
  664. content_query : package/description
  665. page_size : 25
  666. categories : it
  667. disabled: True
  668. timeout: 5.0
  669. shortcut : npm
  670. about:
  671. website: https://npms.io/
  672. wikidata_id: Q7067518
  673. official_api_documentation: https://api-docs.npms.io/
  674. use_official_api: false
  675. require_api_key: false
  676. results: JSON
  677. # Requires Tor
  678. - name : not evil
  679. engine : not_evil
  680. categories : onions
  681. enable_http : True
  682. shortcut : ne
  683. - name : nyaa
  684. engine : nyaa
  685. shortcut : nt
  686. disabled : True
  687. - name : openairedatasets
  688. engine : json_engine
  689. paging : True
  690. search_url : https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  691. results_query : response/results/result
  692. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  693. title_query : metadata/oaf:entity/oaf:result/title/$
  694. content_query : metadata/oaf:entity/oaf:result/description/$
  695. content_html_to_text: True
  696. categories : science
  697. shortcut : oad
  698. timeout: 5.0
  699. about:
  700. website: https://www.openaire.eu/
  701. wikidata_id: Q25106053
  702. official_api_documentation: https://api.openaire.eu/
  703. use_official_api: false
  704. require_api_key: false
  705. results: JSON
  706. - name : openairepublications
  707. engine : json_engine
  708. paging : True
  709. search_url : https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  710. results_query : response/results/result
  711. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  712. title_query : metadata/oaf:entity/oaf:result/title/$
  713. content_query : metadata/oaf:entity/oaf:result/description/$
  714. content_html_to_text: True
  715. categories : science
  716. shortcut : oap
  717. timeout: 5.0
  718. about:
  719. website: https://www.openaire.eu/
  720. wikidata_id: Q25106053
  721. official_api_documentation: https://api.openaire.eu/
  722. use_official_api: false
  723. require_api_key: false
  724. results: JSON
  725. # - name : opensemanticsearch
  726. # engine : opensemantic
  727. # shortcut : oss
  728. # base_url : 'http://localhost:8983/solr/opensemanticsearch/'
  729. - name : openstreetmap
  730. engine : openstreetmap
  731. shortcut : osm
  732. - name : openrepos
  733. engine : xpath
  734. paging : True
  735. search_url : https://openrepos.net/search/node/{query}?page={pageno}
  736. url_xpath : //li[@class="search-result"]//h3[@class="title"]/a/@href
  737. title_xpath : //li[@class="search-result"]//h3[@class="title"]/a
  738. content_xpath : //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  739. categories : files
  740. timeout : 4.0
  741. disabled : True
  742. shortcut : or
  743. about:
  744. website: https://openrepos.net/
  745. wikidata_id:
  746. official_api_documentation:
  747. use_official_api: false
  748. require_api_key: false
  749. results: HTML
  750. - name : pdbe
  751. engine : pdbe
  752. shortcut : pdb
  753. # Hide obsolete PDB entries.
  754. # Default is not to hide obsolete structures
  755. # hide_obsolete : False
  756. - name : photon
  757. engine : photon
  758. shortcut : ph
  759. - name : piratebay
  760. engine : piratebay
  761. shortcut : tpb
  762. # You may need to change this URL to a proxy if piratebay is blocked in your country
  763. url: https://thepiratebay.org/
  764. timeout : 3.0
  765. - name : pubmed
  766. engine : pubmed
  767. shortcut : pub
  768. categories: science
  769. timeout : 3.0
  770. - name: pypi
  771. shortcut: pypi
  772. engine: xpath
  773. paging: true
  774. search_url : https://pypi.org/search?q={query}&page={pageno}
  775. results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"]
  776. url_xpath: ./@href
  777. title_xpath: ./h3/span[@class="package-snippet__name"]
  778. content_xpath: ./p
  779. suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"]
  780. first_page_num: 1
  781. categories: it
  782. about:
  783. website: https://pypi.org
  784. wikidata_id: Q2984686
  785. official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html
  786. use_official_api: false
  787. require_api_key: false
  788. results: HTML
  789. - name : qwant
  790. engine : qwant
  791. shortcut : qw
  792. categories : general
  793. disabled : True
  794. additional_tests:
  795. rosebud: *test_rosebud
  796. - name : qwant images
  797. engine : qwant
  798. shortcut : qwi
  799. categories : images
  800. network: qwant
  801. - name : qwant news
  802. engine : qwant
  803. shortcut : qwn
  804. categories : news
  805. network: qwant
  806. # - name: library
  807. # engine: recoll
  808. # shortcut: lib
  809. # base_url: 'https://recoll.example.org/'
  810. # search_dir: ''
  811. # mount_prefix: /export
  812. # dl_prefix: 'https://download.example.org'
  813. # timeout: 30.0
  814. # categories: files
  815. # disabled: True
  816. # - name: recoll library reference
  817. # engine: recoll
  818. # base_url: 'https://recoll.example.org/'
  819. # search_dir: reference
  820. # mount_prefix: /export
  821. # dl_prefix: 'https://download.example.org'
  822. # shortcut: libr
  823. # timeout: 30.0
  824. # categories: files
  825. # disabled: True
  826. - name : reddit
  827. engine : reddit
  828. shortcut : re
  829. page_size : 25
  830. timeout : 10.0
  831. disabled : True
  832. # tmp suspended: bad certificate
  833. # - name : scanr structures
  834. # shortcut: scs
  835. # engine : scanr_structures
  836. # disabled : True
  837. - name: sepiasearch
  838. engine: sepiasearch
  839. shortcut: sep
  840. - name : soundcloud
  841. engine : soundcloud
  842. shortcut : sc
  843. - name : stackoverflow
  844. engine : stackoverflow
  845. shortcut : st
  846. - name : searchcode code
  847. engine : searchcode_code
  848. shortcut : scc
  849. disabled : True
  850. - name : framalibre
  851. engine : framalibre
  852. shortcut : frl
  853. disabled : True
  854. # - name : searx
  855. # engine : searx_engine
  856. # shortcut : se
  857. # instance_urls :
  858. # - http://127.0.0.1:8888/
  859. # - ...
  860. # disabled : True
  861. - name : semantic scholar
  862. engine : semantic_scholar
  863. disabled : True
  864. shortcut : se
  865. categories : science
  866. about:
  867. website: https://www.semanticscholar.org/
  868. wikidata_id: Q22908627
  869. official_api_documentation: https://api.semanticscholar.org/
  870. use_official_api: false
  871. require_api_key: false
  872. results: JSON
  873. # Spotify needs API credentials
  874. # - name : spotify
  875. # engine : spotify
  876. # shortcut : stf
  877. # api_client_id : *******
  878. # api_client_secret : *******
  879. # - name : solr
  880. # engine : solr
  881. # shortcut : slr
  882. # base_url : http://localhost:8983
  883. # collection : collection_name
  884. # sort : '' # sorting: asc or desc
  885. # field_list : '' # comma separated list of field names to display on the UI
  886. # default_fields : '' # default field to query
  887. # query_fields : '' # query fields
  888. # enable_http : True
  889. # - name : springer nature
  890. # engine : springer
  891. # # get your API key from: https://dev.springernature.com/signup
  892. # api_key : 'unset' # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  893. # shortcut : springer
  894. # categories : science
  895. # timeout : 6.0
  896. - name : startpage
  897. engine : startpage
  898. shortcut : sp
  899. timeout : 6.0
  900. disabled : True
  901. additional_tests:
  902. rosebud: *test_rosebud
  903. - name : tokyotoshokan
  904. engine : tokyotoshokan
  905. shortcut : tt
  906. timeout : 6.0
  907. disabled : True
  908. - name : solidtorrents
  909. engine : solidtorrents
  910. shortcut : solid
  911. timeout : 3.0
  912. disabled : True
  913. # For this demo of the sqlite engine download:
  914. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  915. # and unpack into searx/data/filmliste-v2.db
  916. # Query to test: "!demo concert"
  917. #
  918. # - name : demo
  919. # engine : sqlite
  920. # shortcut: demo
  921. # categories: general
  922. # result_template: default.html
  923. # database : searx/data/filmliste-v2.db
  924. # query_str : >-
  925. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  926. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  927. # description AS content
  928. # FROM film
  929. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  930. # ORDER BY duration DESC
  931. # disabled : False
  932. - name : torrentz
  933. engine : torrentz
  934. shortcut : tor
  935. url: https://torrentz2.eu/
  936. timeout : 3.0
  937. # Requires Tor
  938. - name : torch
  939. engine : xpath
  940. paging : True
  941. search_url : http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  942. results_xpath : //table//tr
  943. url_xpath : ./td[2]/a
  944. title_xpath : ./td[2]/b
  945. content_xpath : ./td[2]/small
  946. categories : onions
  947. enable_http : True
  948. shortcut : tch
  949. # maybe in a fun category
  950. # - name : uncyclopedia
  951. # engine : mediawiki
  952. # shortcut : unc
  953. # base_url : https://uncyclopedia.wikia.com/
  954. # number_of_results : 5
  955. # tmp suspended - too slow, too many errors
  956. # - name : urbandictionary
  957. # engine : xpath
  958. # search_url : http://www.urbandictionary.com/define.php?term={query}
  959. # url_xpath : //*[@class="word"]/@href
  960. # title_xpath : //*[@class="def-header"]
  961. # content_xpath : //*[@class="meaning"]
  962. # shortcut : ud
  963. - name : unsplash
  964. engine : unsplash
  965. shortcut : us
  966. - name : yahoo
  967. engine : yahoo
  968. shortcut : yh
  969. disabled : True
  970. - name : yahoo news
  971. engine : yahoo_news
  972. shortcut : yhn
  973. - name : youtube
  974. shortcut : yt
  975. # You can use the engine using the official stable API, but you need an API key
  976. # See : https://console.developers.google.com/project
  977. # engine : youtube_api
  978. # api_key: 'apikey' # required!
  979. # Or you can use the html non-stable engine, activated by default
  980. engine : youtube_noapi
  981. - name : yggtorrent
  982. engine : yggtorrent
  983. shortcut : ygg
  984. url: https://www4.yggtorrent.li/
  985. disabled : True
  986. timeout : 4.0
  987. - name : dailymotion
  988. engine : dailymotion
  989. shortcut : dm
  990. - name : vimeo
  991. engine : vimeo
  992. shortcut : vm
  993. - name : wiby
  994. engine : json_engine
  995. search_url : https://wiby.me/json/?q={query}
  996. url_query : URL
  997. title_query : Title
  998. content_query : Snippet
  999. categories : general
  1000. shortcut : wib
  1001. disabled : True
  1002. - name : wikibooks
  1003. engine : mediawiki
  1004. shortcut : wb
  1005. categories : general
  1006. base_url : "https://{language}.wikibooks.org/"
  1007. number_of_results : 5
  1008. search_type : text
  1009. disabled : True
  1010. about:
  1011. website: https://www.wikibooks.org/
  1012. wikidata_id: Q367
  1013. - name : wikinews
  1014. engine : mediawiki
  1015. shortcut : wn
  1016. categories : news
  1017. base_url : "https://{language}.wikinews.org/"
  1018. number_of_results : 5
  1019. search_type : text
  1020. disabled : True
  1021. about:
  1022. website: https://www.wikinews.org/
  1023. wikidata_id: Q964
  1024. - name : wikiquote
  1025. engine : mediawiki
  1026. shortcut : wq
  1027. categories : general
  1028. base_url : "https://{language}.wikiquote.org/"
  1029. number_of_results : 5
  1030. search_type : text
  1031. disabled : True
  1032. additional_tests:
  1033. rosebud: *test_rosebud
  1034. about:
  1035. website: https://www.wikiquote.org/
  1036. wikidata_id: Q369
  1037. - name : wikisource
  1038. engine : mediawiki
  1039. shortcut : ws
  1040. categories : general
  1041. base_url : "https://{language}.wikisource.org/"
  1042. number_of_results : 5
  1043. search_type : text
  1044. disabled : True
  1045. about:
  1046. website: https://www.wikisource.org/
  1047. wikidata_id: Q263
  1048. - name : wiktionary
  1049. engine : mediawiki
  1050. shortcut : wt
  1051. categories : general
  1052. base_url : "https://{language}.wiktionary.org/"
  1053. number_of_results : 5
  1054. search_type : text
  1055. disabled : True
  1056. about:
  1057. website: https://www.wiktionary.org/
  1058. wikidata_id: Q151
  1059. - name : wikiversity
  1060. engine : mediawiki
  1061. shortcut : wv
  1062. categories : general
  1063. base_url : "https://{language}.wikiversity.org/"
  1064. number_of_results : 5
  1065. search_type : text
  1066. disabled : True
  1067. about:
  1068. website: https://www.wikiversity.org/
  1069. wikidata_id: Q370
  1070. - name : wikivoyage
  1071. engine : mediawiki
  1072. shortcut : wy
  1073. categories : general
  1074. base_url : "https://{language}.wikivoyage.org/"
  1075. number_of_results : 5
  1076. search_type : text
  1077. disabled : True
  1078. about:
  1079. website: https://www.wikivoyage.org/
  1080. wikidata_id: Q373
  1081. - name : wolframalpha
  1082. shortcut : wa
  1083. # You can use the engine using the official stable API, but you need an API key
  1084. # See : http://products.wolframalpha.com/api/
  1085. # engine : wolframalpha_api
  1086. # api_key: '' # required!
  1087. engine : wolframalpha_noapi
  1088. timeout: 6.0
  1089. categories : science
  1090. - name : dictzone
  1091. engine : dictzone
  1092. shortcut : dc
  1093. - name : mymemory translated
  1094. engine : translated
  1095. shortcut : tl
  1096. timeout : 5.0
  1097. disabled : True
  1098. # You can use without an API key, but you are limited to 1000 words/day
  1099. # See : http://mymemory.translated.net/doc/usagelimits.php
  1100. # api_key : ''
  1101. - name : 1337x
  1102. engine : 1337x
  1103. shortcut : 1337x
  1104. disabled : True
  1105. - name : duden
  1106. engine : duden
  1107. shortcut : du
  1108. disabled : True
  1109. - name : seznam
  1110. shortcut: szn
  1111. engine: seznam
  1112. disabled : True
  1113. - name : mojeek
  1114. shortcut: mjk
  1115. engine: xpath
  1116. paging : True
  1117. search_url : https://www.mojeek.com/search?q={query}&s={pageno}
  1118. results_xpath: /html/body//div[@class="results"]/ul[@class="results-standard"]/li
  1119. url_xpath : ./h2/a/@href
  1120. title_xpath : ./h2
  1121. content_xpath : ./p[@class="s"]
  1122. suggestion_xpath : /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
  1123. first_page_num : 0
  1124. page_size : 10
  1125. disabled : True
  1126. about:
  1127. website: https://www.mojeek.com/
  1128. wikidata_id: Q60747299
  1129. official_api_documentation: https://www.mojeek.com/services/api.html/
  1130. use_official_api: false
  1131. require_api_key: false
  1132. results: HTML
  1133. - name : naver
  1134. shortcut: nvr
  1135. engine: xpath
  1136. paging : True
  1137. search_url : https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1138. url_xpath : //a[@class="link_tit"]/@href
  1139. title_xpath : //a[@class="link_tit"]
  1140. content_xpath : //a[@class="total_dsc"]/div
  1141. first_page_num : 1
  1142. page_size : 10
  1143. disabled : True
  1144. about:
  1145. website: https://www.naver.com/
  1146. wikidata_id: Q485639
  1147. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1148. use_official_api: false
  1149. require_api_key: false
  1150. results: HTML
  1151. - name : rubygems
  1152. shortcut: rbg
  1153. engine: xpath
  1154. paging : True
  1155. search_url : https://rubygems.org/search?page={pageno}&query={query}
  1156. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1157. url_xpath : ./@href
  1158. title_xpath : ./span/h2
  1159. content_xpath : ./span/p
  1160. suggestion_xpath : /html/body/main/div/div[@class="search__suggestions"]/p/a
  1161. first_page_num : 1
  1162. categories: it
  1163. disabled : True
  1164. about:
  1165. website: https://rubygems.org/
  1166. wikidata_id: Q1853420
  1167. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1168. use_official_api: false
  1169. require_api_key: false
  1170. results: HTML
  1171. - name : peertube
  1172. engine: peertube
  1173. shortcut: ptb
  1174. paging : True
  1175. base_url : https://peer.tube/
  1176. categories: videos
  1177. disabled : True
  1178. - name : mediathekviewweb
  1179. engine : mediathekviewweb
  1180. shortcut : mvw
  1181. # - name : yacy
  1182. # engine : yacy
  1183. # shortcut : ya
  1184. # base_url : 'http://localhost:8090'
  1185. # enable_http: True # required if you aren't using HTTPS for your local yacy instance
  1186. # number_of_results : 5
  1187. # timeout : 3.0
  1188. - name : rumble
  1189. engine : rumble
  1190. shortcut : ru
  1191. base_url : https://rumble.com/
  1192. paging : True
  1193. categories: videos
  1194. disabled : True
  1195. - name: wordnik
  1196. engine: wordnik
  1197. shortcut: def
  1198. base_url: https://www.wordnik.com/
  1199. categories: general
  1200. timeout: 5.0
  1201. disabled: True
  1202. - name: słownik języka polskiego
  1203. engine: sjp
  1204. shortcut: sjp
  1205. base_url: https://sjp.pwn.pl/
  1206. categories: general
  1207. timeout: 5.0
  1208. disabled: True
  1209. # wikimini: online encyclopedia for children
  1210. # Tthe fulltext and title parameter is necessary for Wikimini because
  1211. # sometimes it will not show the results and redirect instead
  1212. - name: wikimini
  1213. engine: xpath
  1214. shortcut: wkmn
  1215. search_url : https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  1216. url_xpath : //li/div[@class="mw-search-result-heading"]/a/@href
  1217. title_xpath : //li//div[@class="mw-search-result-heading"]/a
  1218. content_xpath : //li/div[@class="searchresult"]
  1219. categories : general
  1220. disabled: True
  1221. about:
  1222. website: https://wikimini.org/
  1223. wikidata_id: Q3568032
  1224. use_official_api: false
  1225. require_api_key: false
  1226. results: HTML
  1227. - name: dogpile
  1228. shortcut: dp
  1229. engine: xpath
  1230. paging: true
  1231. page_size: 9
  1232. # Doesn't work without the 'sc' parameter
  1233. search_url: https://www.dogpile.com/serp?q={query}&page={pageno}&sc=Gp0GqqlRVflv20
  1234. url_xpath: //span[@class="web-bing__url"]
  1235. title_xpath: //a[@class="web-bing__title"]
  1236. content_xpath: //span[@class="web-bing__description"]
  1237. categories: general
  1238. timeout: 3.0
  1239. disabled: true
  1240. about:
  1241. website: https://www.dogpile.com
  1242. wikidata_id: Q3595363
  1243. use_official_api: false
  1244. require_api_key: false
  1245. results: html
  1246. # Doku engine lets you access to any Doku wiki instance:
  1247. # A public one or a privete/corporate one.
  1248. # - name : ubuntuwiki
  1249. # engine : doku
  1250. # shortcut : uw
  1251. # base_url : 'http://doc.ubuntu-fr.org'
  1252. # Be careful when enabling this engine if you are
  1253. # running a public instance. Do not expose any sensitive
  1254. # information. You can restrict access by configuring a list
  1255. # of access tokens under tokens.
  1256. # - name: git grep
  1257. # engine: command
  1258. # command: ['git', 'grep', '{{QUERY}}']
  1259. # shortcut: gg
  1260. # tokens: []
  1261. # disabled: True
  1262. # delimiter:
  1263. # chars: ':'
  1264. # keys: ['filepath', 'code']
  1265. # Be careful when enabling this engine if you are
  1266. # running a public instance. Do not expose any sensitive
  1267. # information. You can restrict access by configuring a list
  1268. # of access tokens under tokens.
  1269. # - name: locate
  1270. # engine: command
  1271. # command: ['locate', '{{QUERY}}']
  1272. # shortcut: loc
  1273. # tokens: []
  1274. # disabled: True
  1275. # delimiter:
  1276. # chars: ' '
  1277. # keys: ['line']
  1278. # Be careful when enabling this engine if you are
  1279. # running a public instance. Do not expose any sensitive
  1280. # information. You can restrict access by configuring a list
  1281. # of access tokens under tokens.
  1282. # - name: find
  1283. # engine: command
  1284. # command: ['find', '.', '-name', '{{QUERY}}']
  1285. # query_type: path
  1286. # shortcut: fnd
  1287. # tokens: []
  1288. # disabled: True
  1289. # delimiter:
  1290. # chars: ' '
  1291. # keys: ['line']
  1292. # Be careful when enabling this engine if you are
  1293. # running a public instance. Do not expose any sensitive
  1294. # information. You can restrict access by configuring a list
  1295. # of access tokens under tokens.
  1296. # - name: pattern search in files
  1297. # engine: command
  1298. # command: ['fgrep', '{{QUERY}}']
  1299. # shortcut: fgr
  1300. # tokens: []
  1301. # disabled: True
  1302. # delimiter:
  1303. # chars: ' '
  1304. # keys: ['line']
  1305. # Be careful when enabling this engine if you are
  1306. # running a public instance. Do not expose any sensitive
  1307. # information. You can restrict access by configuring a list
  1308. # of access tokens under tokens.
  1309. # - name: regex search in files
  1310. # engine: command
  1311. # command: ['grep', '{{QUERY}}']
  1312. # shortcut: gr
  1313. # tokens: []
  1314. # disabled: True
  1315. # delimiter:
  1316. # chars: ' '
  1317. # keys: ['line']
  1318. locales:
  1319. en : English
  1320. ar : العَرَبِيَّة (Arabic)
  1321. bg : Български (Bulgarian)
  1322. bo : བོད་སྐད་ (Tibetian)
  1323. ca : Català (Catalan)
  1324. cs : Čeština (Czech)
  1325. cy : Cymraeg (Welsh)
  1326. da : Dansk (Danish)
  1327. de : Deutsch (German)
  1328. el_GR : Ελληνικά (Greek_Greece)
  1329. eo : Esperanto (Esperanto)
  1330. es : Español (Spanish)
  1331. et : Eesti (Estonian)
  1332. eu : Euskara (Basque)
  1333. fa_IR : (fārsī) فارسى (Persian)
  1334. fi : Suomi (Finnish)
  1335. fil : Wikang Filipino (Filipino)
  1336. fr : Français (French)
  1337. gl : Galego (Galician)
  1338. he : עברית (Hebrew)
  1339. hr : Hrvatski (Croatian)
  1340. hu : Magyar (Hungarian)
  1341. ia : Interlingua (Interlingua)
  1342. it : Italiano (Italian)
  1343. ja : 日本語 (Japanese)
  1344. lt : Lietuvių (Lithuanian)
  1345. nl : Nederlands (Dutch)
  1346. nl_BE : Vlaams (Dutch_Belgium)
  1347. oc : Lenga D'òc (Occitan)
  1348. pl : Polski (Polish)
  1349. pt : Português (Portuguese)
  1350. pt_BR : Português (Portuguese_Brazil)
  1351. ro : Română (Romanian)
  1352. ru : Русский (Russian)
  1353. sk : Slovenčina (Slovak)
  1354. sl : Slovenski (Slovene)
  1355. sr : српски (Serbian)
  1356. sv : Svenska (Swedish)
  1357. te : తెలుగు (telugu)
  1358. ta : தமிழ் (Tamil)
  1359. tr : Türkçe (Turkish)
  1360. uk : українська мова (Ukrainian)
  1361. vi : tiếng việt (Vietnamese)
  1362. zh : 中文 (Chinese)
  1363. zh_TW : 國語 (Taiwanese Mandarin)
  1364. doi_resolvers :
  1365. oadoi.org : 'https://oadoi.org/'
  1366. doi.org : 'https://doi.org/'
  1367. doai.io : 'https://dissem.in/'
  1368. sci-hub.se : 'https://sci-hub.se/'
  1369. sci-hub.do : 'https://sci-hub.do/'
  1370. scihubtw.tw : 'https://scihubtw.tw/'
  1371. sci-hub.st : 'https://sci-hub.st/'
  1372. sci-hub.bar : 'https://sci-hub.bar/'
  1373. sci-hub.it.nf : 'https://sci-hub.it.nf/'
  1374. default_doi_resolver : 'oadoi.org'