settings.yml 29 KB

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