settings.yml 29 KB

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