settings.yml 31 KB

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