settings.yml 22 KB

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