settings.yml 29 KB

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