settings.yml 22 KB

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