settings.yml 31 KB

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