settings.yml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818
  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. language : "en-US"
  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. - 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 : http://libgen.io/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 : http://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 : http://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. - name : scanr structures
  480. shortcut: scs
  481. engine : scanr_structures
  482. disabled : True
  483. - name : soundcloud
  484. engine : soundcloud
  485. shortcut : sc
  486. - name : stackoverflow
  487. engine : stackoverflow
  488. shortcut : st
  489. - name : searchcode doc
  490. engine : searchcode_doc
  491. shortcut : scd
  492. - name : searchcode code
  493. engine : searchcode_code
  494. shortcut : scc
  495. disabled : True
  496. - name : framalibre
  497. engine : framalibre
  498. shortcut : frl
  499. disabled : True
  500. # - name : searx
  501. # engine : searx_engine
  502. # shortcut : se
  503. # instance_urls :
  504. # - http://127.0.0.1:8888/
  505. # - ...
  506. # disabled : True
  507. - name : semantic scholar
  508. engine : xpath
  509. paging : True
  510. search_url : https://www.semanticscholar.org/search?q={query}&sort=relevance&page={pageno}&ae=false
  511. results_xpath : //article
  512. url_xpath : .//div[@class="search-result-title"]/a/@href
  513. title_xpath : .//div[@class="search-result-title"]/a
  514. content_xpath : .//div[@class="search-result-abstract"]
  515. shortcut : se
  516. categories : science
  517. - name : spotify
  518. engine : spotify
  519. shortcut : stf
  520. - name : startpage
  521. engine : startpage
  522. shortcut : sp
  523. timeout : 6.0
  524. disabled : True
  525. - name : tokyotoshokan
  526. engine : tokyotoshokan
  527. shortcut : tt
  528. timeout : 6.0
  529. disabled : True
  530. - name : torrentz
  531. engine : torrentz
  532. shortcut : tor
  533. url: https://torrentz2.eu/
  534. timeout : 3.0
  535. - name : twitter
  536. engine : twitter
  537. shortcut : tw
  538. # maybe in a fun category
  539. # - name : uncyclopedia
  540. # engine : mediawiki
  541. # shortcut : unc
  542. # base_url : https://uncyclopedia.wikia.com/
  543. # number_of_results : 5
  544. # tmp suspended - too slow, too many errors
  545. # - name : urbandictionary
  546. # engine : xpath
  547. # search_url : http://www.urbandictionary.com/define.php?term={query}
  548. # url_xpath : //*[@class="word"]/@href
  549. # title_xpath : //*[@class="def-header"]
  550. # content_xpath : //*[@class="meaning"]
  551. # shortcut : ud
  552. - name : unsplash
  553. engine : unsplash
  554. disabled: True
  555. shortcut : us
  556. - name : yahoo
  557. engine : yahoo
  558. shortcut : yh
  559. disabled : True
  560. - name : yandex
  561. engine : yandex
  562. shortcut : yn
  563. disabled : True
  564. - name : yahoo news
  565. engine : yahoo_news
  566. shortcut : yhn
  567. - name : youtube
  568. shortcut : yt
  569. # You can use the engine using the official stable API, but you need an API key
  570. # See : https://console.developers.google.com/project
  571. # engine : youtube_api
  572. # api_key: 'apikey' # required!
  573. # Or you can use the html non-stable engine, activated by default
  574. engine : youtube_noapi
  575. - name : dailymotion
  576. engine : dailymotion
  577. shortcut : dm
  578. - name : vimeo
  579. engine : vimeo
  580. shortcut : vm
  581. - name : wolframalpha
  582. shortcut : wa
  583. # You can use the engine using the official stable API, but you need an API key
  584. # See : http://products.wolframalpha.com/api/
  585. # engine : wolframalpha_api
  586. # api_key: '' # required!
  587. engine : wolframalpha_noapi
  588. timeout: 6.0
  589. categories : science
  590. - name : dictzone
  591. engine : dictzone
  592. shortcut : dc
  593. - name : mymemory translated
  594. engine : translated
  595. shortcut : tl
  596. timeout : 5.0
  597. disabled : True
  598. # You can use without an API key, but you are limited to 1000 words/day
  599. # See : http://mymemory.translated.net/doc/usagelimits.php
  600. # api_key : ''
  601. - name : voat
  602. engine: xpath
  603. shortcut: vo
  604. categories: social media
  605. search_url : https://searchvoat.co/?t={query}
  606. url_xpath : //div[@class="entry"]//p[@class="title"]/a/@href
  607. title_xpath : //div[@class="entry"]//p[@class="title"]/a/text()
  608. content_xpath : //div[@class="entry"]//span[@class="domain"]/a/text()
  609. timeout : 10.0
  610. disabled : True
  611. - name : 1337x
  612. engine : 1337x
  613. shortcut : 1337x
  614. disabled : True
  615. - name : duden
  616. engine : duden
  617. shortcut : du
  618. disabled : True
  619. - name : seznam
  620. shortcut: szn
  621. engine: xpath
  622. paging : True
  623. search_url : https://search.seznam.cz/?q={query}&count=10&from={pageno}
  624. results_xpath: //div[@class="Page-content"]//div[contains(@class, "Result ")]
  625. url_xpath : ./h3/a/@href
  626. title_xpath : ./h3
  627. content_xpath : .//p[@class="Result-description"]
  628. suggestion_xpath: //div[@class="Related-container"]//div[@class="RelatedItem"]/div/span/a
  629. first_page_num : 0
  630. page_size : 10
  631. disabled : True
  632. - name : mojeek
  633. shortcut: mjk
  634. engine: xpath
  635. paging : True
  636. search_url : https://www.mojeek.com/search?q={query}&s={pageno}
  637. results_xpath: /html/body//div[@class="results"]/ul[@class="results-standard"]/li
  638. url_xpath : ./h2/a/@href
  639. title_xpath : ./h2
  640. content_xpath : ./p[@class="s"]
  641. suggestion_xpath : /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
  642. first_page_num : 0
  643. page_size : 10
  644. disabled : True
  645. - name : seedpeer
  646. shortcut : speu
  647. engine : seedpeer
  648. categories: files, music, videos
  649. # - name : yacy
  650. # engine : yacy
  651. # shortcut : ya
  652. # base_url : 'http://localhost:8090'
  653. # number_of_results : 5
  654. # timeout : 3.0
  655. # Doku engine lets you access to any Doku wiki instance:
  656. # A public one or a privete/corporate one.
  657. # - name : ubuntuwiki
  658. # engine : doku
  659. # shortcut : uw
  660. # base_url : 'http://doc.ubuntu-fr.org'
  661. locales:
  662. en : English
  663. ar : العَرَبِيَّة (Arabic)
  664. bg : Български (Bulgarian)
  665. ca : Català (Catalan)
  666. cs : Čeština (Czech)
  667. cy : Cymraeg (Welsh)
  668. da : Dansk (Danish)
  669. de : Deutsch (German)
  670. el_GR : Ελληνικά (Greek_Greece)
  671. eo : Esperanto (Esperanto)
  672. es : Español (Spanish)
  673. eu : Euskara (Basque)
  674. fa_IR : (fārsī) فارسى (Persian)
  675. fi : Suomi (Finnish)
  676. fil : Wikang Filipino (Filipino)
  677. fr : Français (French)
  678. gl : Galego (Galician)
  679. he : עברית (Hebrew)
  680. hr : Hrvatski (Croatian)
  681. hu : Magyar (Hungarian)
  682. ia : Interlingua (Interlingua)
  683. it : Italiano (Italian)
  684. ja : 日本語 (Japanese)
  685. nl : Nederlands (Dutch)
  686. nl_BE : Vlaams (Dutch_Belgium)
  687. pl : Polski (Polish)
  688. pt : Português (Portuguese)
  689. pt_BR : Português (Portuguese_Brazil)
  690. ro : Română (Romanian)
  691. ru : Русский (Russian)
  692. sk : Slovenčina (Slovak)
  693. sl : Slovenski (Slovene)
  694. sr : српски (Serbian)
  695. sv : Svenska (Swedish)
  696. te : తెలుగు (telugu)
  697. tr : Türkçe (Turkish)
  698. uk : українська мова (Ukrainian)
  699. vi : tiếng việt (Vietnamese)
  700. zh : 中文 (Chinese)
  701. zh_TW : 國語 (Taiwanese Mandarin)
  702. doi_resolvers :
  703. oadoi.org : 'https://oadoi.org/'
  704. doi.org : 'https://doi.org/'
  705. doai.io : 'http://doai.io/'
  706. sci-hub.tw : 'http://sci-hub.tw/'
  707. default_doi_resolver : 'oadoi.org'