settings.yml 26 KB

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