settings.yml 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047
  1. general:
  2. debug : False # Debug mode, only for development
  3. instance_name : "searx" # displayed name
  4. search:
  5. safe_search : 0 # Filter results. 0: None, 1: Moderate, 2: Strict
  6. autocomplete : "" # Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "startpage", "swisscows", "qwant", "wikipedia" - leave blank to turn it off by default
  7. default_lang : "" # Default search language - leave blank to detect from browser information or use codes from 'languages.py'
  8. ban_time_on_fail : 5 # ban time in seconds after engine errors
  9. max_ban_time_on_fail : 120 # max ban time in seconds after engine errors
  10. server:
  11. port : 8888
  12. bind_address : "127.0.0.1" # address to listen on
  13. secret_key : "ultrasecretkey" # change this!
  14. base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/"
  15. image_proxy : False # Proxying image results through searx
  16. http_protocol_version : "1.0" # 1.0 and 1.1 are supported
  17. method: "POST" # POST queries are more secure as they don't show up in history but may cause problems when using Firefox containers
  18. ui:
  19. static_path : "" # Custom static path - leave it blank if you didn't change
  20. templates_path : "" # Custom templates path - leave it blank if you didn't change
  21. default_theme : oscar # ui theme
  22. default_locale : "" # Default interface locale - leave blank to detect from browser information or use codes from the 'locales' config section
  23. theme_args :
  24. oscar_style : logicodev # default style of oscar
  25. # results_on_new_tab: False # Open result links in a new tab by default
  26. # categories_order :
  27. # - general
  28. # - files
  29. # - map
  30. # - it
  31. # - science
  32. # searx supports result proxification using an external service: https://github.com/asciimoo/morty
  33. # uncomment below section if you have running morty proxy
  34. # the key is base64 encoded (keep the !!binary notation)
  35. # Note: since commit af77ec3, morty accepts a base64 encoded key.
  36. #result_proxy:
  37. # url : http://127.0.0.1:3000/
  38. # key : !!binary "your_morty_proxy_key"
  39. outgoing: # communication with search engines
  40. request_timeout : 2.0 # default timeout in seconds, can be override by engine
  41. # max_request_timeout: 10.0 # the maximum timeout in seconds
  42. useragent_suffix : "" # suffix of searx_useragent, could contain informations like an email address to the administrator
  43. pool_connections : 100 # Number of different hosts
  44. pool_maxsize : 10 # Number of simultaneous requests by host
  45. # uncomment below section if you want to use a proxy
  46. # see http://docs.python-requests.org/en/latest/user/advanced/#proxies
  47. # SOCKS proxies are also supported: see http://requests.readthedocs.io/en/master/user/advanced/#socks
  48. # proxies :
  49. # http : http://127.0.0.1:8080
  50. # https: http://127.0.0.1:8080
  51. # uncomment below section only if you have more than one network interface
  52. # which can be the source of outgoing search requests
  53. # source_ips:
  54. # - 1.1.1.1
  55. # - 1.1.1.2
  56. # External plugin configuration
  57. # See http://asciimoo.github.io/searx/dev/plugins.html for more details
  58. #
  59. # plugins:
  60. # - plugin1
  61. # - plugin2
  62. # - ...
  63. engines:
  64. - name: apk mirror
  65. engine: apkmirror
  66. timeout: 4.0
  67. shortcut: apkm
  68. disabled: True
  69. - name : arch linux wiki
  70. engine : archlinux
  71. shortcut : al
  72. - name : archive is
  73. engine : xpath
  74. search_url : https://archive.is/{query}
  75. url_xpath : (//div[@class="TEXT-BLOCK"]/a)/@href
  76. title_xpath : (//div[@class="TEXT-BLOCK"]/a)
  77. content_xpath : //div[@class="TEXT-BLOCK"]/ul/li
  78. categories : general
  79. timeout : 7.0
  80. disabled : True
  81. shortcut : ai
  82. - name : arxiv
  83. engine : arxiv
  84. shortcut : arx
  85. categories : science
  86. timeout : 4.0
  87. # tmp suspended: dh key too small
  88. # - name : base
  89. # engine : base
  90. # shortcut : bs
  91. - name : wikipedia
  92. engine : wikipedia
  93. shortcut : wp
  94. base_url : 'https://{language}.wikipedia.org/'
  95. - name : bing
  96. engine : bing
  97. shortcut : bi
  98. - name : bing images
  99. engine : bing_images
  100. shortcut : bii
  101. - name : bing news
  102. engine : bing_news
  103. shortcut : bin
  104. - name : bing videos
  105. engine : bing_videos
  106. shortcut : biv
  107. - name : bitbucket
  108. engine : xpath
  109. paging : True
  110. search_url : https://bitbucket.org/repo/all/{pageno}?name={query}
  111. url_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  112. title_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]
  113. content_xpath : //article[@class="repo-summary"]/p
  114. categories : it
  115. timeout : 4.0
  116. disabled : True
  117. shortcut : bb
  118. - name : btdigg
  119. engine : btdigg
  120. shortcut : bt
  121. - name : ccc-tv
  122. engine : xpath
  123. paging : False
  124. search_url : https://media.ccc.de/search/?q={query}
  125. url_xpath : //div[@class="caption"]/h3/a/@href
  126. title_xpath : //div[@class="caption"]/h3/a/text()
  127. content_xpath : //div[@class="caption"]/h4/@title
  128. categories : videos
  129. disabled : True
  130. shortcut : c3tv
  131. - name : crossref
  132. engine : json_engine
  133. paging : True
  134. search_url : https://search.crossref.org/dois?q={query}&page={pageno}
  135. url_query : doi
  136. title_query : title
  137. content_query : fullCitation
  138. categories : science
  139. shortcut : cr
  140. - name : currency
  141. engine : currency_convert
  142. categories : general
  143. shortcut : cc
  144. - name : deezer
  145. engine : deezer
  146. shortcut : dz
  147. - name : deviantart
  148. engine : deviantart
  149. shortcut : da
  150. timeout: 3.0
  151. - name : ddg definitions
  152. engine : duckduckgo_definitions
  153. shortcut : ddd
  154. weight : 2
  155. disabled : True
  156. # cloudflare protected
  157. # - name : digbt
  158. # engine : digbt
  159. # shortcut : dbt
  160. # timeout : 6.0
  161. # disabled : True
  162. - name : digg
  163. engine : digg
  164. shortcut : dg
  165. - name : erowid
  166. engine : xpath
  167. paging : True
  168. first_page_num : 0
  169. page_size : 30
  170. search_url : https://www.erowid.org/search.php?q={query}&s={pageno}
  171. url_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  172. title_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  173. content_xpath : //dl[@class="results-list"]/dd[@class="result-details"]
  174. categories : general
  175. shortcut : ew
  176. disabled : True
  177. - name : wikidata
  178. engine : wikidata
  179. shortcut : wd
  180. timeout : 3.0
  181. weight : 2
  182. - name : duckduckgo
  183. engine : duckduckgo
  184. shortcut : ddg
  185. disabled : True
  186. - name : duckduckgo images
  187. engine : duckduckgo_images
  188. shortcut : ddi
  189. timeout: 3.0
  190. disabled : True
  191. - name : etools
  192. engine : etools
  193. shortcut : eto
  194. disabled : True
  195. - name : etymonline
  196. engine : xpath
  197. paging : True
  198. search_url : https://etymonline.com/search?page={pageno}&q={query}
  199. url_xpath : //a[contains(@class, "word__name--")]/@href
  200. title_xpath : //a[contains(@class, "word__name--")]
  201. content_xpath : //section[contains(@class, "word__defination")]
  202. first_page_num : 1
  203. shortcut : et
  204. disabled : True
  205. - name : 1x
  206. engine : www1x
  207. shortcut : 1x
  208. disabled : True
  209. - name : fdroid
  210. engine : fdroid
  211. shortcut : fd
  212. disabled : True
  213. - name : flickr
  214. categories : images
  215. shortcut : fl
  216. # You can use the engine using the official stable API, but you need an API key
  217. # See : https://www.flickr.com/services/apps/create/
  218. # engine : flickr
  219. # api_key: 'apikey' # required!
  220. # Or you can use the html non-stable engine, activated by default
  221. engine : flickr_noapi
  222. - name : free software directory
  223. engine : mediawiki
  224. shortcut : fsd
  225. categories : it
  226. base_url : https://directory.fsf.org/
  227. number_of_results : 5
  228. # what part of a page matches the query string: title, text, nearmatch
  229. # title - query matches title, text - query matches the text of page, nearmatch - nearmatch in title
  230. search_type : title
  231. timeout : 5.0
  232. disabled : True
  233. - name : frinkiac
  234. engine : frinkiac
  235. shortcut : frk
  236. disabled : True
  237. - name : genius
  238. engine : genius
  239. shortcut : gen
  240. - name : gigablast
  241. engine : gigablast
  242. shortcut : gb
  243. timeout : 3.0
  244. disabled: True
  245. - name : gentoo
  246. engine : gentoo
  247. shortcut : ge
  248. - name : gitlab
  249. engine : json_engine
  250. paging : True
  251. search_url : https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  252. url_query : web_url
  253. title_query : name_with_namespace
  254. content_query : description
  255. page_size : 20
  256. categories : it
  257. shortcut : gl
  258. timeout : 10.0
  259. disabled : True
  260. - name : github
  261. engine : github
  262. shortcut : gh
  263. # This a Gitea service. If you would like to use a different instance,
  264. # change codeberg.org to URL of the desired Gitea host. Or you can create
  265. # a new engine by copying this and changing the name, shortcut and search_url.
  266. - name : codeberg
  267. engine : json_engine
  268. search_url : https://codeberg.org/api/v1/repos/search?q={query}&limit=10
  269. url_query : html_url
  270. title_query : name
  271. content_query : description
  272. categories : it
  273. shortcut : cb
  274. disabled : True
  275. - name : google
  276. engine : google
  277. shortcut : go
  278. - name : google images
  279. engine : google_images
  280. shortcut : goi
  281. - name : google news
  282. engine : google_news
  283. shortcut : gon
  284. - name : google videos
  285. engine : google_videos
  286. shortcut : gov
  287. - name : google scholar
  288. engine : xpath
  289. paging : True
  290. search_url : https://scholar.google.com/scholar?start={pageno}&q={query}&hl=en&as_sdt=0,5&as_vis=1
  291. results_xpath : //div[contains(@class, "gs_r")]/div[@class="gs_ri"]
  292. url_xpath : .//h3/a/@href
  293. title_xpath : .//h3/a
  294. content_xpath : .//div[@class="gs_rs"]
  295. suggestion_xpath : //div[@id="gs_res_ccl_top"]//a/b
  296. page_size : 10
  297. first_page_num : 0
  298. categories : science
  299. shortcut : gos
  300. - name : google play apps
  301. engine : xpath
  302. search_url : https://play.google.com/store/search?q={query}&c=apps
  303. results_xpath : '//div[@class="WHE7ib mpg5gc"]'
  304. title_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a'
  305. url_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a/@href'
  306. content_xpath : './/div[@class="RZEgze"]//a[@class="mnKHRc"]'
  307. thumbnail_xpath : './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  308. categories : files
  309. shortcut : gpa
  310. disabled : True
  311. - name : google play movies
  312. engine : xpath
  313. search_url : https://play.google.com/store/search?q={query}&c=movies
  314. results_xpath : '//div[@class="WHE7ib mpg5gc"]'
  315. title_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a'
  316. url_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a/@href'
  317. content_xpath : './/div[@class="RZEgze"]//a[@class="mnKHRc"]'
  318. thumbnail_xpath : './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  319. categories : videos
  320. shortcut : gpm
  321. disabled : True
  322. - name : google play music
  323. engine : xpath
  324. search_url : https://play.google.com/store/search?q={query}&c=music
  325. results_xpath : '//div[@class="WHE7ib mpg5gc"]'
  326. title_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a'
  327. url_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a/@href'
  328. content_xpath : './/div[@class="RZEgze"]//a[@class="mnKHRc"]'
  329. thumbnail_xpath : './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  330. categories : music
  331. shortcut : gps
  332. disabled : True
  333. - name : geektimes
  334. engine : xpath
  335. paging : True
  336. search_url : https://geektimes.ru/search/page{pageno}/?q={query}
  337. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  338. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  339. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  340. categories : it
  341. timeout : 4.0
  342. disabled : True
  343. shortcut : gt
  344. - name : habrahabr
  345. engine : xpath
  346. paging : True
  347. search_url : https://habrahabr.ru/search/page{pageno}/?q={query}
  348. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  349. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  350. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  351. categories : it
  352. timeout : 4.0
  353. disabled : True
  354. shortcut : habr
  355. - name : hoogle
  356. engine : json_engine
  357. paging : True
  358. search_url : https://www.haskell.org/hoogle/?mode=json&hoogle={query}&start={pageno}
  359. results_query : results
  360. url_query : location
  361. title_query : self
  362. content_query : docs
  363. page_size : 20
  364. categories : it
  365. shortcut : ho
  366. - name : ina
  367. engine : ina
  368. shortcut : in
  369. timeout : 6.0
  370. disabled : True
  371. - name : invidious
  372. engine : invidious
  373. base_url : 'https://invidio.us/'
  374. shortcut: iv
  375. timeout : 5.0
  376. - name: kickass
  377. engine : kickass
  378. shortcut : kc
  379. timeout : 4.0
  380. disabled : True
  381. - name : library genesis
  382. engine : xpath
  383. search_url : https://libgen.is/search.php?req={query}
  384. url_xpath : //a[contains(@href,"bookfi.net")]/@href
  385. title_xpath : //a[contains(@href,"book/")]/text()[1]
  386. content_xpath : //td/a[1][contains(@href,"=author")]/text()
  387. categories : general
  388. timeout : 7.0
  389. disabled : True
  390. shortcut : lg
  391. - name : lobste.rs
  392. engine : xpath
  393. search_url : https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  394. results_xpath : //li[contains(@class, "story")]
  395. url_xpath : .//span[@class="link"]/a/@href
  396. title_xpath : .//span[@class="link"]/a
  397. content_xpath : .//a[@class="domain"]
  398. categories : it
  399. shortcut : lo
  400. - name : metager
  401. engine : xpath
  402. paging : False
  403. search_url : https://metager.org/meta/meta.ger3?eingabe={query}
  404. url_xpath : //div[@class="result-subheadline"]/a/@href
  405. title_xpath : //div[@class="result-headline"]/h2/@title
  406. content_xpath : //div[@class="result-description"]/text()
  407. categories : general
  408. shortcut : mg
  409. disabled : True
  410. - name : microsoft academic
  411. engine : microsoft_academic
  412. categories : science
  413. shortcut : ma
  414. - name : mixcloud
  415. engine : mixcloud
  416. shortcut : mc
  417. - name : npm
  418. engine : json_engine
  419. paging : True
  420. search_url : https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  421. results_query : results
  422. url_query : package/links/npm
  423. title_query : package/name
  424. content_query : package/description
  425. page_size : 25
  426. categories : it
  427. disabled: True
  428. timeout: 5.0
  429. shortcut : npm
  430. - name : nyaa
  431. engine : nyaa
  432. shortcut : nt
  433. disabled : True
  434. - name : acgsou
  435. engine : acgsou
  436. shortcut : acg
  437. disabled : True
  438. timeout: 5.0
  439. - name : openairedatasets
  440. engine : json_engine
  441. paging : True
  442. search_url : https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  443. results_query : response/results/result
  444. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  445. title_query : metadata/oaf:entity/oaf:result/title/$
  446. content_query : metadata/oaf:entity/oaf:result/description/$
  447. categories : science
  448. shortcut : oad
  449. timeout: 5.0
  450. - name : openairepublications
  451. engine : json_engine
  452. paging : True
  453. search_url : https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  454. results_query : response/results/result
  455. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  456. title_query : metadata/oaf:entity/oaf:result/title/$
  457. content_query : metadata/oaf:entity/oaf:result/description/$
  458. categories : science
  459. shortcut : oap
  460. timeout: 5.0
  461. - name : openstreetmap
  462. engine : openstreetmap
  463. shortcut : osm
  464. - name : openrepos
  465. engine : xpath
  466. paging : True
  467. search_url : https://openrepos.net/search/node/{query}?page={pageno}
  468. url_xpath : //li[@class="search-result"]//h3[@class="title"]/a/@href
  469. title_xpath : //li[@class="search-result"]//h3[@class="title"]/a
  470. content_xpath : //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  471. categories : files
  472. timeout : 4.0
  473. disabled : True
  474. shortcut : or
  475. - name : pdbe
  476. engine : pdbe
  477. shortcut : pdb
  478. # Hide obsolete PDB entries.
  479. # Default is not to hide obsolete structures
  480. # hide_obsolete : False
  481. - name : photon
  482. engine : photon
  483. shortcut : ph
  484. - name : piratebay
  485. engine : piratebay
  486. shortcut : tpb
  487. # You may need to change this URL to a proxy if piratebay is blocked in your country
  488. url: https://thepiratebay.org/
  489. timeout : 3.0
  490. - name : pubmed
  491. engine : pubmed
  492. shortcut : pub
  493. categories: science
  494. timeout : 3.0
  495. - name : qwant
  496. engine : qwant
  497. shortcut : qw
  498. categories : general
  499. disabled : True
  500. - name : qwant images
  501. engine : qwant
  502. shortcut : qwi
  503. categories : images
  504. - name : qwant news
  505. engine : qwant
  506. shortcut : qwn
  507. categories : news
  508. - name : qwant social
  509. engine : qwant
  510. shortcut : qws
  511. categories : social media
  512. - name : reddit
  513. engine : reddit
  514. shortcut : re
  515. page_size : 25
  516. timeout : 10.0
  517. disabled : True
  518. # tmp suspended: bad certificate
  519. # - name : scanr structures
  520. # shortcut: scs
  521. # engine : scanr_structures
  522. # disabled : True
  523. - name : soundcloud
  524. engine : soundcloud
  525. shortcut : sc
  526. - name : stackoverflow
  527. engine : stackoverflow
  528. shortcut : st
  529. - name : searchcode doc
  530. engine : searchcode_doc
  531. shortcut : scd
  532. - name : searchcode code
  533. engine : searchcode_code
  534. shortcut : scc
  535. disabled : True
  536. - name : framalibre
  537. engine : framalibre
  538. shortcut : frl
  539. disabled : True
  540. # - name : searx
  541. # engine : searx_engine
  542. # shortcut : se
  543. # instance_urls :
  544. # - http://127.0.0.1:8888/
  545. # - ...
  546. # disabled : True
  547. - name : semantic scholar
  548. engine : xpath
  549. paging : True
  550. search_url : https://www.semanticscholar.org/search?q={query}&sort=relevance&page={pageno}&ae=false
  551. results_xpath : //article
  552. url_xpath : .//div[@class="search-result-title"]/a/@href
  553. title_xpath : .//div[@class="search-result-title"]/a
  554. content_xpath : .//div[@class="search-result-abstract"]
  555. shortcut : se
  556. categories : science
  557. # Spotify needs API credentials
  558. # - name : spotify
  559. # engine : spotify
  560. # shortcut : stf
  561. # api_client_id : *******
  562. # api_client_secret : *******
  563. - name : startpage
  564. engine : startpage
  565. shortcut : sp
  566. timeout : 6.0
  567. disabled : True
  568. - name : tokyotoshokan
  569. engine : tokyotoshokan
  570. shortcut : tt
  571. timeout : 6.0
  572. disabled : True
  573. - name : torrentz
  574. engine : torrentz
  575. shortcut : tor
  576. url: https://torrentz2.eu/
  577. timeout : 3.0
  578. - name : twitter
  579. engine : twitter
  580. shortcut : tw
  581. # maybe in a fun category
  582. # - name : uncyclopedia
  583. # engine : mediawiki
  584. # shortcut : unc
  585. # base_url : https://uncyclopedia.wikia.com/
  586. # number_of_results : 5
  587. # tmp suspended - too slow, too many errors
  588. # - name : urbandictionary
  589. # engine : xpath
  590. # search_url : http://www.urbandictionary.com/define.php?term={query}
  591. # url_xpath : //*[@class="word"]/@href
  592. # title_xpath : //*[@class="def-header"]
  593. # content_xpath : //*[@class="meaning"]
  594. # shortcut : ud
  595. - name : unsplash
  596. engine : unsplash
  597. disabled: True
  598. shortcut : us
  599. - name : yahoo
  600. engine : yahoo
  601. shortcut : yh
  602. disabled : True
  603. - name : yandex
  604. engine : yandex
  605. shortcut : yn
  606. disabled : True
  607. - name : yahoo news
  608. engine : yahoo_news
  609. shortcut : yhn
  610. - name : youtube
  611. shortcut : yt
  612. # You can use the engine using the official stable API, but you need an API key
  613. # See : https://console.developers.google.com/project
  614. # engine : youtube_api
  615. # api_key: 'apikey' # required!
  616. # Or you can use the html non-stable engine, activated by default
  617. engine : youtube_noapi
  618. - name : yggtorrent
  619. engine : yggtorrent
  620. shortcut : ygg
  621. url: https://www2.yggtorrent.si/
  622. disabled : True
  623. timeout : 4.0
  624. - name : dailymotion
  625. engine : dailymotion
  626. shortcut : dm
  627. - name : vimeo
  628. engine : vimeo
  629. shortcut : vm
  630. - name : wikibooks
  631. engine : mediawiki
  632. shortcut : wb
  633. categories : general
  634. base_url : "https://{language}.wikibooks.org/"
  635. number_of_results : 5
  636. search_type : text
  637. disabled : True
  638. - name : wikinews
  639. engine : mediawiki
  640. shortcut : wn
  641. categories : news
  642. base_url : "https://{language}.wikinews.org/"
  643. number_of_results : 5
  644. search_type : text
  645. disabled : True
  646. - name : wikiquote
  647. engine : mediawiki
  648. shortcut : wq
  649. categories : general
  650. base_url : "https://{language}.wikiquote.org/"
  651. number_of_results : 5
  652. search_type : text
  653. disabled : True
  654. - name : wikisource
  655. engine : mediawiki
  656. shortcut : ws
  657. categories : general
  658. base_url : "https://{language}.wikisource.org/"
  659. number_of_results : 5
  660. search_type : text
  661. disabled : True
  662. - name : wiktionary
  663. engine : mediawiki
  664. shortcut : wt
  665. categories : general
  666. base_url : "https://{language}.wiktionary.org/"
  667. number_of_results : 5
  668. search_type : text
  669. disabled : True
  670. - name : wikiversity
  671. engine : mediawiki
  672. shortcut : wv
  673. categories : general
  674. base_url : "https://{language}.wikiversity.org/"
  675. number_of_results : 5
  676. search_type : text
  677. disabled : True
  678. - name : wikivoyage
  679. engine : mediawiki
  680. shortcut : wy
  681. categories : general
  682. base_url : "https://{language}.wikivoyage.org/"
  683. number_of_results : 5
  684. search_type : text
  685. disabled : True
  686. - name : wolframalpha
  687. shortcut : wa
  688. # You can use the engine using the official stable API, but you need an API key
  689. # See : http://products.wolframalpha.com/api/
  690. # engine : wolframalpha_api
  691. # api_key: '' # required!
  692. engine : wolframalpha_noapi
  693. timeout: 6.0
  694. categories : science
  695. - name : dictzone
  696. engine : dictzone
  697. shortcut : dc
  698. - name : mymemory translated
  699. engine : translated
  700. shortcut : tl
  701. timeout : 5.0
  702. disabled : True
  703. # You can use without an API key, but you are limited to 1000 words/day
  704. # See : http://mymemory.translated.net/doc/usagelimits.php
  705. # api_key : ''
  706. - name : voat
  707. engine: xpath
  708. shortcut: vo
  709. categories: social media
  710. search_url : https://searchvoat.co/?t={query}
  711. url_xpath : //div[@class="entry"]//p[@class="title"]/a/@href
  712. title_xpath : //div[@class="entry"]//p[@class="title"]/a/text()
  713. content_xpath : //div[@class="entry"]//span[@class="domain"]/a/text()
  714. timeout : 10.0
  715. disabled : True
  716. - name : 1337x
  717. engine : 1337x
  718. shortcut : 1337x
  719. disabled : True
  720. - name : duden
  721. engine : duden
  722. shortcut : du
  723. disabled : True
  724. - name : seznam
  725. shortcut: szn
  726. engine: xpath
  727. paging : True
  728. search_url : https://search.seznam.cz/?q={query}&count=10&from={pageno}
  729. results_xpath: //div[@class="Page-content"]//div[contains(@class, "Result ")]
  730. url_xpath : ./h3/a/@href
  731. title_xpath : ./h3
  732. content_xpath : .//p[@class="Result-description"]
  733. suggestion_xpath: //div[@class="Related-container"]//div[@class="RelatedItem"]/div/span/a
  734. first_page_num : 0
  735. page_size : 10
  736. disabled : True
  737. - name : mojeek
  738. shortcut: mjk
  739. engine: xpath
  740. paging : True
  741. search_url : https://www.mojeek.com/search?q={query}&s={pageno}
  742. results_xpath: /html/body//div[@class="results"]/ul[@class="results-standard"]/li
  743. url_xpath : ./h2/a/@href
  744. title_xpath : ./h2
  745. content_xpath : ./p[@class="s"]
  746. suggestion_xpath : /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
  747. first_page_num : 0
  748. page_size : 10
  749. disabled : True
  750. - name : seedpeer
  751. shortcut : speu
  752. engine : seedpeer
  753. categories: files, music, videos
  754. - name : naver
  755. shortcut: nvr
  756. engine: xpath
  757. paging : True
  758. search_url : https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  759. results_xpath: /html/body//ul[@id="elThumbnailResultArea"]/li
  760. url_xpath : ./dl/dt/a[@class="title_link"]/@href
  761. title_xpath : ./dl/dt/a[@class="title_link"]
  762. content_xpath : ./dl/dd[@class="sh_web_passage"]
  763. suggestion_xpath : /html/body//div[@class="sp_keyword section"]//a
  764. first_page_num : 1
  765. page_size : 10
  766. disabled : True
  767. - name : rubygems
  768. shortcut: rbg
  769. engine: xpath
  770. paging : True
  771. search_url : https://rubygems.org/search?page={pageno}&query={query}
  772. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  773. url_xpath : ./@href
  774. title_xpath : ./span/h2
  775. content_xpath : ./span/p
  776. suggestion_xpath : /html/body/main/div/div[@class="search__suggestions"]/p/a
  777. first_page_num : 1
  778. categories: it
  779. disabled : True
  780. - name : peertube
  781. engine: peertube
  782. shortcut: ptb
  783. paging : True
  784. base_url : https://peer.tube/
  785. categories: videos
  786. disabled : True
  787. # - name : yacy
  788. # engine : yacy
  789. # shortcut : ya
  790. # base_url : 'http://localhost:8090'
  791. # number_of_results : 5
  792. # timeout : 3.0
  793. # Doku engine lets you access to any Doku wiki instance:
  794. # A public one or a privete/corporate one.
  795. # - name : ubuntuwiki
  796. # engine : doku
  797. # shortcut : uw
  798. # base_url : 'http://doc.ubuntu-fr.org'
  799. # Be careful when enabling this engine if you are
  800. # running a public instance. Do not expose any sensitive
  801. # information. You can restrict access by configuring a list
  802. # of access tokens under tokens.
  803. # - name: git grep
  804. # engine: command
  805. # command: ['git', 'grep', '{{QUERY}}']
  806. # shortcut: gg
  807. # tokens: []
  808. # disabled: True
  809. # delimiter:
  810. # chars: ':'
  811. # keys: ['filepath', 'code']
  812. # Be careful when enabling this engine if you are
  813. # running a public instance. Do not expose any sensitive
  814. # information. You can restrict access by configuring a list
  815. # of access tokens under tokens.
  816. # - name: locate
  817. # engine: command
  818. # command: ['locate', '{{QUERY}}']
  819. # shortcut: loc
  820. # tokens: []
  821. # disabled: True
  822. # delimiter:
  823. # chars: ' '
  824. # keys: ['line']
  825. # Be careful when enabling this engine if you are
  826. # running a public instance. Do not expose any sensitive
  827. # information. You can restrict access by configuring a list
  828. # of access tokens under tokens.
  829. # - name: find
  830. # engine: command
  831. # command: ['find', '.', '-name', '{{QUERY}}']
  832. # query_type: path
  833. # shortcut: fnd
  834. # tokens: []
  835. # disabled: True
  836. # delimiter:
  837. # chars: ' '
  838. # keys: ['line']
  839. # Be careful when enabling this engine if you are
  840. # running a public instance. Do not expose any sensitive
  841. # information. You can restrict access by configuring a list
  842. # of access tokens under tokens.
  843. # - name: pattern search in files
  844. # engine: command
  845. # command: ['fgrep', '{{QUERY}}']
  846. # shortcut: fgr
  847. # tokens: []
  848. # disabled: True
  849. # delimiter:
  850. # chars: ' '
  851. # keys: ['line']
  852. # Be careful when enabling this engine if you are
  853. # running a public instance. Do not expose any sensitive
  854. # information. You can restrict access by configuring a list
  855. # of access tokens under tokens.
  856. # - name: regex search in files
  857. # engine: command
  858. # command: ['grep', '{{QUERY}}']
  859. # shortcut: gr
  860. # tokens: []
  861. # disabled: True
  862. # delimiter:
  863. # chars: ' '
  864. # keys: ['line']
  865. locales:
  866. en : English
  867. ar : العَرَبِيَّة (Arabic)
  868. bg : Български (Bulgarian)
  869. bo : བོད་སྐད་ (Tibetian)
  870. ca : Català (Catalan)
  871. cs : Čeština (Czech)
  872. cy : Cymraeg (Welsh)
  873. da : Dansk (Danish)
  874. de : Deutsch (German)
  875. el_GR : Ελληνικά (Greek_Greece)
  876. eo : Esperanto (Esperanto)
  877. es : Español (Spanish)
  878. et : Eesti (Estonian)
  879. eu : Euskara (Basque)
  880. fa_IR : (fārsī) فارسى (Persian)
  881. fi : Suomi (Finnish)
  882. fil : Wikang Filipino (Filipino)
  883. fr : Français (French)
  884. gl : Galego (Galician)
  885. he : עברית (Hebrew)
  886. hr : Hrvatski (Croatian)
  887. hu : Magyar (Hungarian)
  888. ia : Interlingua (Interlingua)
  889. it : Italiano (Italian)
  890. ja : 日本語 (Japanese)
  891. lt : Lietuvių (Lithuanian)
  892. nl : Nederlands (Dutch)
  893. nl_BE : Vlaams (Dutch_Belgium)
  894. oc : Lenga D'òc (Occitan)
  895. pl : Polski (Polish)
  896. pt : Português (Portuguese)
  897. pt_BR : Português (Portuguese_Brazil)
  898. ro : Română (Romanian)
  899. ru : Русский (Russian)
  900. sk : Slovenčina (Slovak)
  901. sl : Slovenski (Slovene)
  902. sr : српски (Serbian)
  903. sv : Svenska (Swedish)
  904. te : తెలుగు (telugu)
  905. ta : தமிழ் (Tamil)
  906. tr : Türkçe (Turkish)
  907. uk : українська мова (Ukrainian)
  908. vi : tiếng việt (Vietnamese)
  909. zh : 中文 (Chinese)
  910. zh_TW : 國語 (Taiwanese Mandarin)
  911. doi_resolvers :
  912. oadoi.org : 'https://oadoi.org/'
  913. doi.org : 'https://doi.org/'
  914. doai.io : 'https://dissem.in/'
  915. sci-hub.tw : 'https://sci-hub.tw/'
  916. default_doi_resolver : 'sci-hub.tw'