settings.yml 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956
  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 : microsoft academic
  400. engine : microsoft_academic
  401. categories : science
  402. shortcut : ma
  403. - name : mixcloud
  404. engine : mixcloud
  405. shortcut : mc
  406. - name : npm
  407. engine : json_engine
  408. paging : True
  409. search_url : https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  410. results_query : results
  411. url_query : package/links/npm
  412. title_query : package/name
  413. content_query : package/description
  414. page_size : 25
  415. categories : it
  416. disabled: True
  417. timeout: 5.0
  418. shortcut : npm
  419. - name : nyaa
  420. engine : nyaa
  421. shortcut : nt
  422. disabled : True
  423. - name : acgsou
  424. engine : acgsou
  425. shortcut : acg
  426. disabled : True
  427. timeout: 5.0
  428. - name : openairedatasets
  429. engine : json_engine
  430. paging : True
  431. search_url : https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  432. results_query : response/results/result
  433. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  434. title_query : metadata/oaf:entity/oaf:result/title/$
  435. content_query : metadata/oaf:entity/oaf:result/description/$
  436. categories : science
  437. shortcut : oad
  438. timeout: 5.0
  439. - name : openairepublications
  440. engine : json_engine
  441. paging : True
  442. search_url : https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  443. results_query : response/results/result
  444. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  445. title_query : metadata/oaf:entity/oaf:result/title/$
  446. content_query : metadata/oaf:entity/oaf:result/description/$
  447. categories : science
  448. shortcut : oap
  449. timeout: 5.0
  450. - name : openstreetmap
  451. engine : openstreetmap
  452. shortcut : osm
  453. - name : openrepos
  454. engine : xpath
  455. paging : True
  456. search_url : https://openrepos.net/search/node/{query}?page={pageno}
  457. url_xpath : //li[@class="search-result"]//h3[@class="title"]/a/@href
  458. title_xpath : //li[@class="search-result"]//h3[@class="title"]/a
  459. content_xpath : //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  460. categories : files
  461. timeout : 4.0
  462. disabled : True
  463. shortcut : or
  464. - name : pdbe
  465. engine : pdbe
  466. shortcut : pdb
  467. # Hide obsolete PDB entries.
  468. # Default is not to hide obsolete structures
  469. # hide_obsolete : False
  470. - name : photon
  471. engine : photon
  472. shortcut : ph
  473. - name : piratebay
  474. engine : piratebay
  475. shortcut : tpb
  476. url: https://pirateproxy.red/
  477. timeout : 3.0
  478. - name : pubmed
  479. engine : pubmed
  480. shortcut : pub
  481. categories: science
  482. timeout : 3.0
  483. - name : qwant
  484. engine : qwant
  485. shortcut : qw
  486. categories : general
  487. disabled : True
  488. - name : qwant images
  489. engine : qwant
  490. shortcut : qwi
  491. categories : images
  492. - name : qwant news
  493. engine : qwant
  494. shortcut : qwn
  495. categories : news
  496. - name : qwant social
  497. engine : qwant
  498. shortcut : qws
  499. categories : social media
  500. - name : reddit
  501. engine : reddit
  502. shortcut : re
  503. page_size : 25
  504. timeout : 10.0
  505. disabled : True
  506. # tmp suspended: bad certificate
  507. # - name : scanr structures
  508. # shortcut: scs
  509. # engine : scanr_structures
  510. # disabled : True
  511. - name : soundcloud
  512. engine : soundcloud
  513. shortcut : sc
  514. - name : stackoverflow
  515. engine : stackoverflow
  516. shortcut : st
  517. - name : searchcode doc
  518. engine : searchcode_doc
  519. shortcut : scd
  520. - name : searchcode code
  521. engine : searchcode_code
  522. shortcut : scc
  523. disabled : True
  524. - name : framalibre
  525. engine : framalibre
  526. shortcut : frl
  527. disabled : True
  528. # - name : searx
  529. # engine : searx_engine
  530. # shortcut : se
  531. # instance_urls :
  532. # - http://127.0.0.1:8888/
  533. # - ...
  534. # disabled : True
  535. - name : semantic scholar
  536. engine : xpath
  537. paging : True
  538. search_url : https://www.semanticscholar.org/search?q={query}&sort=relevance&page={pageno}&ae=false
  539. results_xpath : //article
  540. url_xpath : .//div[@class="search-result-title"]/a/@href
  541. title_xpath : .//div[@class="search-result-title"]/a
  542. content_xpath : .//div[@class="search-result-abstract"]
  543. shortcut : se
  544. categories : science
  545. # Spotify needs API credentials
  546. # - name : spotify
  547. # engine : spotify
  548. # shortcut : stf
  549. # api_client_id : *******
  550. # api_client_secret : *******
  551. - name : startpage
  552. engine : startpage
  553. shortcut : sp
  554. timeout : 6.0
  555. disabled : True
  556. - name : tokyotoshokan
  557. engine : tokyotoshokan
  558. shortcut : tt
  559. timeout : 6.0
  560. disabled : True
  561. - name : torrentz
  562. engine : torrentz
  563. shortcut : tor
  564. url: https://torrentz2.eu/
  565. timeout : 3.0
  566. - name : twitter
  567. engine : twitter
  568. shortcut : tw
  569. # maybe in a fun category
  570. # - name : uncyclopedia
  571. # engine : mediawiki
  572. # shortcut : unc
  573. # base_url : https://uncyclopedia.wikia.com/
  574. # number_of_results : 5
  575. # tmp suspended - too slow, too many errors
  576. # - name : urbandictionary
  577. # engine : xpath
  578. # search_url : http://www.urbandictionary.com/define.php?term={query}
  579. # url_xpath : //*[@class="word"]/@href
  580. # title_xpath : //*[@class="def-header"]
  581. # content_xpath : //*[@class="meaning"]
  582. # shortcut : ud
  583. - name : unsplash
  584. engine : unsplash
  585. disabled: True
  586. shortcut : us
  587. - name : yahoo
  588. engine : yahoo
  589. shortcut : yh
  590. disabled : True
  591. - name : yandex
  592. engine : yandex
  593. shortcut : yn
  594. disabled : True
  595. - name : yahoo news
  596. engine : yahoo_news
  597. shortcut : yhn
  598. - name : youtube
  599. shortcut : yt
  600. # You can use the engine using the official stable API, but you need an API key
  601. # See : https://console.developers.google.com/project
  602. # engine : youtube_api
  603. # api_key: 'apikey' # required!
  604. # Or you can use the html non-stable engine, activated by default
  605. engine : youtube_noapi
  606. - name : dailymotion
  607. engine : dailymotion
  608. shortcut : dm
  609. - name : vimeo
  610. engine : vimeo
  611. shortcut : vm
  612. - name : wikibooks
  613. engine : mediawiki
  614. shortcut : wb
  615. categories : general
  616. base_url : "https://{language}.wikibooks.org/"
  617. number_of_results : 5
  618. search_type : text
  619. disabled : True
  620. - name : wikinews
  621. engine : mediawiki
  622. shortcut : wn
  623. categories : news
  624. base_url : "https://{language}.wikinews.org/"
  625. number_of_results : 5
  626. search_type : text
  627. disabled : True
  628. - name : wikiquote
  629. engine : mediawiki
  630. shortcut : wq
  631. categories : general
  632. base_url : "https://{language}.wikiquote.org/"
  633. number_of_results : 5
  634. search_type : text
  635. disabled : True
  636. - name : wikisource
  637. engine : mediawiki
  638. shortcut : ws
  639. categories : general
  640. base_url : "https://{language}.wikisource.org/"
  641. number_of_results : 5
  642. search_type : text
  643. disabled : True
  644. - name : wiktionary
  645. engine : mediawiki
  646. shortcut : wt
  647. categories : general
  648. base_url : "https://{language}.wiktionary.org/"
  649. number_of_results : 5
  650. search_type : text
  651. disabled : True
  652. - name : wikiversity
  653. engine : mediawiki
  654. shortcut : wv
  655. categories : general
  656. base_url : "https://{language}.wikiversity.org/"
  657. number_of_results : 5
  658. search_type : text
  659. disabled : True
  660. - name : wikivoyage
  661. engine : mediawiki
  662. shortcut : wy
  663. categories : general
  664. base_url : "https://{language}.wikivoyage.org/"
  665. number_of_results : 5
  666. search_type : text
  667. disabled : True
  668. - name : wolframalpha
  669. shortcut : wa
  670. # You can use the engine using the official stable API, but you need an API key
  671. # See : http://products.wolframalpha.com/api/
  672. # engine : wolframalpha_api
  673. # api_key: '' # required!
  674. engine : wolframalpha_noapi
  675. timeout: 6.0
  676. categories : science
  677. - name : dictzone
  678. engine : dictzone
  679. shortcut : dc
  680. - name : mymemory translated
  681. engine : translated
  682. shortcut : tl
  683. timeout : 5.0
  684. disabled : True
  685. # You can use without an API key, but you are limited to 1000 words/day
  686. # See : http://mymemory.translated.net/doc/usagelimits.php
  687. # api_key : ''
  688. - name : voat
  689. engine: xpath
  690. shortcut: vo
  691. categories: social media
  692. search_url : https://searchvoat.co/?t={query}
  693. url_xpath : //div[@class="entry"]//p[@class="title"]/a/@href
  694. title_xpath : //div[@class="entry"]//p[@class="title"]/a/text()
  695. content_xpath : //div[@class="entry"]//span[@class="domain"]/a/text()
  696. timeout : 10.0
  697. disabled : True
  698. - name : 1337x
  699. engine : 1337x
  700. shortcut : 1337x
  701. disabled : True
  702. - name : duden
  703. engine : duden
  704. shortcut : du
  705. disabled : True
  706. - name : seznam
  707. shortcut: szn
  708. engine: xpath
  709. paging : True
  710. search_url : https://search.seznam.cz/?q={query}&count=10&from={pageno}
  711. results_xpath: //div[@class="Page-content"]//div[contains(@class, "Result ")]
  712. url_xpath : ./h3/a/@href
  713. title_xpath : ./h3
  714. content_xpath : .//p[@class="Result-description"]
  715. suggestion_xpath: //div[@class="Related-container"]//div[@class="RelatedItem"]/div/span/a
  716. first_page_num : 0
  717. page_size : 10
  718. disabled : True
  719. - name : mojeek
  720. shortcut: mjk
  721. engine: xpath
  722. paging : True
  723. search_url : https://www.mojeek.com/search?q={query}&s={pageno}
  724. results_xpath: /html/body//div[@class="results"]/ul[@class="results-standard"]/li
  725. url_xpath : ./h2/a/@href
  726. title_xpath : ./h2
  727. content_xpath : ./p[@class="s"]
  728. suggestion_xpath : /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
  729. first_page_num : 0
  730. page_size : 10
  731. disabled : True
  732. - name : seedpeer
  733. shortcut : speu
  734. engine : seedpeer
  735. categories: files, music, videos
  736. - name : naver
  737. shortcut: nvr
  738. engine: xpath
  739. paging : True
  740. search_url : https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  741. results_xpath: /html/body//ul[@id="elThumbnailResultArea"]/li
  742. url_xpath : ./dl/dt/a[@class="title_link"]/@href
  743. title_xpath : ./dl/dt/a[@class="title_link"]
  744. content_xpath : ./dl/dd[@class="sh_web_passage"]
  745. suggestion_xpath : /html/body//div[@class="sp_keyword section"]//a
  746. first_page_num : 1
  747. page_size : 10
  748. disabled : True
  749. - name : rubygems
  750. shortcut: rbg
  751. engine: xpath
  752. paging : True
  753. search_url : https://rubygems.org/search?page={pageno}&query={query}
  754. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  755. url_xpath : ./@href
  756. title_xpath : ./span/h2
  757. content_xpath : ./span/p
  758. suggestion_xpath : /html/body/main/div/div[@class="search__suggestions"]/p/a
  759. first_page_num : 1
  760. categories: it
  761. disabled : True
  762. - name : peertube
  763. engine: peertube
  764. shortcut: ptb
  765. paging : True
  766. base_url : https://peer.tube/
  767. categories: videos
  768. disabled : True
  769. # - name : yacy
  770. # engine : yacy
  771. # shortcut : ya
  772. # base_url : 'http://localhost:8090'
  773. # number_of_results : 5
  774. # timeout : 3.0
  775. # Doku engine lets you access to any Doku wiki instance:
  776. # A public one or a privete/corporate one.
  777. # - name : ubuntuwiki
  778. # engine : doku
  779. # shortcut : uw
  780. # base_url : 'http://doc.ubuntu-fr.org'
  781. locales:
  782. en : English
  783. ar : العَرَبِيَّة (Arabic)
  784. bg : Български (Bulgarian)
  785. bo : བོད་སྐད་ (Tibetian)
  786. ca : Català (Catalan)
  787. cs : Čeština (Czech)
  788. cy : Cymraeg (Welsh)
  789. da : Dansk (Danish)
  790. de : Deutsch (German)
  791. el_GR : Ελληνικά (Greek_Greece)
  792. eo : Esperanto (Esperanto)
  793. es : Español (Spanish)
  794. et : Eesti (Estonian)
  795. eu : Euskara (Basque)
  796. fa_IR : (fārsī) فارسى (Persian)
  797. fi : Suomi (Finnish)
  798. fil : Wikang Filipino (Filipino)
  799. fr : Français (French)
  800. gl : Galego (Galician)
  801. he : עברית (Hebrew)
  802. hr : Hrvatski (Croatian)
  803. hu : Magyar (Hungarian)
  804. ia : Interlingua (Interlingua)
  805. it : Italiano (Italian)
  806. ja : 日本語 (Japanese)
  807. lt : Lietuvių (Lithuanian)
  808. nl : Nederlands (Dutch)
  809. nl_BE : Vlaams (Dutch_Belgium)
  810. oc : Lenga D'òc (Occitan)
  811. pl : Polski (Polish)
  812. pt : Português (Portuguese)
  813. pt_BR : Português (Portuguese_Brazil)
  814. ro : Română (Romanian)
  815. ru : Русский (Russian)
  816. sk : Slovenčina (Slovak)
  817. sl : Slovenski (Slovene)
  818. sr : српски (Serbian)
  819. sv : Svenska (Swedish)
  820. te : తెలుగు (telugu)
  821. ta : தமிழ் (Tamil)
  822. tr : Türkçe (Turkish)
  823. uk : українська мова (Ukrainian)
  824. vi : tiếng việt (Vietnamese)
  825. zh : 中文 (Chinese)
  826. zh_TW : 國語 (Taiwanese Mandarin)
  827. doi_resolvers :
  828. oadoi.org : 'https://oadoi.org/'
  829. doi.org : 'https://doi.org/'
  830. doai.io : 'https://dissem.in/'
  831. sci-hub.tw : 'https://sci-hub.tw/'
  832. default_doi_resolver : 'sci-hub.tw'