settings.yml 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957
  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 : dailymotion
  608. engine : dailymotion
  609. shortcut : dm
  610. - name : vimeo
  611. engine : vimeo
  612. shortcut : vm
  613. - name : wikibooks
  614. engine : mediawiki
  615. shortcut : wb
  616. categories : general
  617. base_url : "https://{language}.wikibooks.org/"
  618. number_of_results : 5
  619. search_type : text
  620. disabled : True
  621. - name : wikinews
  622. engine : mediawiki
  623. shortcut : wn
  624. categories : news
  625. base_url : "https://{language}.wikinews.org/"
  626. number_of_results : 5
  627. search_type : text
  628. disabled : True
  629. - name : wikiquote
  630. engine : mediawiki
  631. shortcut : wq
  632. categories : general
  633. base_url : "https://{language}.wikiquote.org/"
  634. number_of_results : 5
  635. search_type : text
  636. disabled : True
  637. - name : wikisource
  638. engine : mediawiki
  639. shortcut : ws
  640. categories : general
  641. base_url : "https://{language}.wikisource.org/"
  642. number_of_results : 5
  643. search_type : text
  644. disabled : True
  645. - name : wiktionary
  646. engine : mediawiki
  647. shortcut : wt
  648. categories : general
  649. base_url : "https://{language}.wiktionary.org/"
  650. number_of_results : 5
  651. search_type : text
  652. disabled : True
  653. - name : wikiversity
  654. engine : mediawiki
  655. shortcut : wv
  656. categories : general
  657. base_url : "https://{language}.wikiversity.org/"
  658. number_of_results : 5
  659. search_type : text
  660. disabled : True
  661. - name : wikivoyage
  662. engine : mediawiki
  663. shortcut : wy
  664. categories : general
  665. base_url : "https://{language}.wikivoyage.org/"
  666. number_of_results : 5
  667. search_type : text
  668. disabled : True
  669. - name : wolframalpha
  670. shortcut : wa
  671. # You can use the engine using the official stable API, but you need an API key
  672. # See : http://products.wolframalpha.com/api/
  673. # engine : wolframalpha_api
  674. # api_key: '' # required!
  675. engine : wolframalpha_noapi
  676. timeout: 6.0
  677. categories : science
  678. - name : dictzone
  679. engine : dictzone
  680. shortcut : dc
  681. - name : mymemory translated
  682. engine : translated
  683. shortcut : tl
  684. timeout : 5.0
  685. disabled : True
  686. # You can use without an API key, but you are limited to 1000 words/day
  687. # See : http://mymemory.translated.net/doc/usagelimits.php
  688. # api_key : ''
  689. - name : voat
  690. engine: xpath
  691. shortcut: vo
  692. categories: social media
  693. search_url : https://searchvoat.co/?t={query}
  694. url_xpath : //div[@class="entry"]//p[@class="title"]/a/@href
  695. title_xpath : //div[@class="entry"]//p[@class="title"]/a/text()
  696. content_xpath : //div[@class="entry"]//span[@class="domain"]/a/text()
  697. timeout : 10.0
  698. disabled : True
  699. - name : 1337x
  700. engine : 1337x
  701. shortcut : 1337x
  702. disabled : True
  703. - name : duden
  704. engine : duden
  705. shortcut : du
  706. disabled : True
  707. - name : seznam
  708. shortcut: szn
  709. engine: xpath
  710. paging : True
  711. search_url : https://search.seznam.cz/?q={query}&count=10&from={pageno}
  712. results_xpath: //div[@class="Page-content"]//div[contains(@class, "Result ")]
  713. url_xpath : ./h3/a/@href
  714. title_xpath : ./h3
  715. content_xpath : .//p[@class="Result-description"]
  716. suggestion_xpath: //div[@class="Related-container"]//div[@class="RelatedItem"]/div/span/a
  717. first_page_num : 0
  718. page_size : 10
  719. disabled : True
  720. - name : mojeek
  721. shortcut: mjk
  722. engine: xpath
  723. paging : True
  724. search_url : https://www.mojeek.com/search?q={query}&s={pageno}
  725. results_xpath: /html/body//div[@class="results"]/ul[@class="results-standard"]/li
  726. url_xpath : ./h2/a/@href
  727. title_xpath : ./h2
  728. content_xpath : ./p[@class="s"]
  729. suggestion_xpath : /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
  730. first_page_num : 0
  731. page_size : 10
  732. disabled : True
  733. - name : seedpeer
  734. shortcut : speu
  735. engine : seedpeer
  736. categories: files, music, videos
  737. - name : naver
  738. shortcut: nvr
  739. engine: xpath
  740. paging : True
  741. search_url : https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  742. results_xpath: /html/body//ul[@id="elThumbnailResultArea"]/li
  743. url_xpath : ./dl/dt/a[@class="title_link"]/@href
  744. title_xpath : ./dl/dt/a[@class="title_link"]
  745. content_xpath : ./dl/dd[@class="sh_web_passage"]
  746. suggestion_xpath : /html/body//div[@class="sp_keyword section"]//a
  747. first_page_num : 1
  748. page_size : 10
  749. disabled : True
  750. - name : rubygems
  751. shortcut: rbg
  752. engine: xpath
  753. paging : True
  754. search_url : https://rubygems.org/search?page={pageno}&query={query}
  755. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  756. url_xpath : ./@href
  757. title_xpath : ./span/h2
  758. content_xpath : ./span/p
  759. suggestion_xpath : /html/body/main/div/div[@class="search__suggestions"]/p/a
  760. first_page_num : 1
  761. categories: it
  762. disabled : True
  763. - name : peertube
  764. engine: peertube
  765. shortcut: ptb
  766. paging : True
  767. base_url : https://peer.tube/
  768. categories: videos
  769. disabled : True
  770. # - name : yacy
  771. # engine : yacy
  772. # shortcut : ya
  773. # base_url : 'http://localhost:8090'
  774. # number_of_results : 5
  775. # timeout : 3.0
  776. # Doku engine lets you access to any Doku wiki instance:
  777. # A public one or a privete/corporate one.
  778. # - name : ubuntuwiki
  779. # engine : doku
  780. # shortcut : uw
  781. # base_url : 'http://doc.ubuntu-fr.org'
  782. locales:
  783. en : English
  784. ar : العَرَبِيَّة (Arabic)
  785. bg : Български (Bulgarian)
  786. bo : བོད་སྐད་ (Tibetian)
  787. ca : Català (Catalan)
  788. cs : Čeština (Czech)
  789. cy : Cymraeg (Welsh)
  790. da : Dansk (Danish)
  791. de : Deutsch (German)
  792. el_GR : Ελληνικά (Greek_Greece)
  793. eo : Esperanto (Esperanto)
  794. es : Español (Spanish)
  795. et : Eesti (Estonian)
  796. eu : Euskara (Basque)
  797. fa_IR : (fārsī) فارسى (Persian)
  798. fi : Suomi (Finnish)
  799. fil : Wikang Filipino (Filipino)
  800. fr : Français (French)
  801. gl : Galego (Galician)
  802. he : עברית (Hebrew)
  803. hr : Hrvatski (Croatian)
  804. hu : Magyar (Hungarian)
  805. ia : Interlingua (Interlingua)
  806. it : Italiano (Italian)
  807. ja : 日本語 (Japanese)
  808. lt : Lietuvių (Lithuanian)
  809. nl : Nederlands (Dutch)
  810. nl_BE : Vlaams (Dutch_Belgium)
  811. oc : Lenga D'òc (Occitan)
  812. pl : Polski (Polish)
  813. pt : Português (Portuguese)
  814. pt_BR : Português (Portuguese_Brazil)
  815. ro : Română (Romanian)
  816. ru : Русский (Russian)
  817. sk : Slovenčina (Slovak)
  818. sl : Slovenski (Slovene)
  819. sr : српски (Serbian)
  820. sv : Svenska (Swedish)
  821. te : తెలుగు (telugu)
  822. ta : தமிழ் (Tamil)
  823. tr : Türkçe (Turkish)
  824. uk : українська мова (Ukrainian)
  825. vi : tiếng việt (Vietnamese)
  826. zh : 中文 (Chinese)
  827. zh_TW : 國語 (Taiwanese Mandarin)
  828. doi_resolvers :
  829. oadoi.org : 'https://oadoi.org/'
  830. doi.org : 'https://doi.org/'
  831. doai.io : 'https://dissem.in/'
  832. sci-hub.tw : 'https://sci-hub.tw/'
  833. default_doi_resolver : 'sci-hub.tw'