settings.yml 24 KB

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