settings.yml 24 KB

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