settings.yml 26 KB

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