settings.yml 26 KB

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