settings.yml 22 KB

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