settings.yml 29 KB

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