settings.yml 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132
  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 code
  607. engine : searchcode_code
  608. shortcut : scc
  609. disabled : True
  610. - name : framalibre
  611. engine : framalibre
  612. shortcut : frl
  613. disabled : True
  614. # - name : searx
  615. # engine : searx_engine
  616. # shortcut : se
  617. # instance_urls :
  618. # - http://127.0.0.1:8888/
  619. # - ...
  620. # disabled : True
  621. - name : semantic scholar
  622. engine : xpath
  623. paging : True
  624. search_url : https://www.semanticscholar.org/search?q={query}&sort=relevance&page={pageno}&ae=false
  625. results_xpath : //article
  626. url_xpath : .//div[@class="search-result-title"]/a/@href
  627. title_xpath : .//div[@class="search-result-title"]/a
  628. content_xpath : .//div[@class="search-result-abstract"]
  629. shortcut : se
  630. categories : science
  631. # Spotify needs API credentials
  632. # - name : spotify
  633. # engine : spotify
  634. # shortcut : stf
  635. # api_client_id : *******
  636. # api_client_secret : *******
  637. - name : startpage
  638. engine : startpage
  639. shortcut : sp
  640. timeout : 6.0
  641. disabled : True
  642. - name : tokyotoshokan
  643. engine : tokyotoshokan
  644. shortcut : tt
  645. timeout : 6.0
  646. disabled : True
  647. - name : torrentz
  648. engine : torrentz
  649. shortcut : tor
  650. url: https://torrentz2.eu/
  651. timeout : 3.0
  652. # Requires Tor
  653. - name : torch
  654. engine : xpath
  655. paging : True
  656. search_url : http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  657. results_xpath : //table//tr
  658. url_xpath : ./td[2]/a
  659. title_xpath : ./td[2]/b
  660. content_xpath : ./td[2]/small
  661. categories : onions
  662. shortcut : tch
  663. # maybe in a fun category
  664. # - name : uncyclopedia
  665. # engine : mediawiki
  666. # shortcut : unc
  667. # base_url : https://uncyclopedia.wikia.com/
  668. # number_of_results : 5
  669. # tmp suspended - too slow, too many errors
  670. # - name : urbandictionary
  671. # engine : xpath
  672. # search_url : http://www.urbandictionary.com/define.php?term={query}
  673. # url_xpath : //*[@class="word"]/@href
  674. # title_xpath : //*[@class="def-header"]
  675. # content_xpath : //*[@class="meaning"]
  676. # shortcut : ud
  677. - name : unsplash
  678. engine : unsplash
  679. disabled: True
  680. shortcut : us
  681. - name : yahoo
  682. engine : yahoo
  683. shortcut : yh
  684. disabled : True
  685. - name : yandex
  686. engine : yandex
  687. shortcut : yn
  688. disabled : True
  689. - name : yahoo news
  690. engine : yahoo_news
  691. shortcut : yhn
  692. - name : youtube
  693. shortcut : yt
  694. # You can use the engine using the official stable API, but you need an API key
  695. # See : https://console.developers.google.com/project
  696. # engine : youtube_api
  697. # api_key: 'apikey' # required!
  698. # Or you can use the html non-stable engine, activated by default
  699. engine : youtube_noapi
  700. # tmp suspended: Cloudflare CAPTCHA
  701. #- name : yggtorrent
  702. # engine : yggtorrent
  703. # shortcut : ygg
  704. # url: https://www2.yggtorrent.si/
  705. # disabled : True
  706. # timeout : 4.0
  707. - name : dailymotion
  708. engine : dailymotion
  709. shortcut : dm
  710. - name : vimeo
  711. engine : vimeo
  712. shortcut : vm
  713. - name : wikibooks
  714. engine : mediawiki
  715. shortcut : wb
  716. categories : general
  717. base_url : "https://{language}.wikibooks.org/"
  718. number_of_results : 5
  719. search_type : text
  720. disabled : True
  721. - name : wikinews
  722. engine : mediawiki
  723. shortcut : wn
  724. categories : news
  725. base_url : "https://{language}.wikinews.org/"
  726. number_of_results : 5
  727. search_type : text
  728. disabled : True
  729. - name : wikiquote
  730. engine : mediawiki
  731. shortcut : wq
  732. categories : general
  733. base_url : "https://{language}.wikiquote.org/"
  734. number_of_results : 5
  735. search_type : text
  736. disabled : True
  737. - name : wikisource
  738. engine : mediawiki
  739. shortcut : ws
  740. categories : general
  741. base_url : "https://{language}.wikisource.org/"
  742. number_of_results : 5
  743. search_type : text
  744. disabled : True
  745. - name : wiktionary
  746. engine : mediawiki
  747. shortcut : wt
  748. categories : general
  749. base_url : "https://{language}.wiktionary.org/"
  750. number_of_results : 5
  751. search_type : text
  752. disabled : True
  753. - name : wikiversity
  754. engine : mediawiki
  755. shortcut : wv
  756. categories : general
  757. base_url : "https://{language}.wikiversity.org/"
  758. number_of_results : 5
  759. search_type : text
  760. disabled : True
  761. - name : wikivoyage
  762. engine : mediawiki
  763. shortcut : wy
  764. categories : general
  765. base_url : "https://{language}.wikivoyage.org/"
  766. number_of_results : 5
  767. search_type : text
  768. disabled : True
  769. - name : wolframalpha
  770. shortcut : wa
  771. # You can use the engine using the official stable API, but you need an API key
  772. # See : http://products.wolframalpha.com/api/
  773. # engine : wolframalpha_api
  774. # api_key: '' # required!
  775. engine : wolframalpha_noapi
  776. timeout: 6.0
  777. categories : science
  778. - name : dictzone
  779. engine : dictzone
  780. shortcut : dc
  781. - name : mymemory translated
  782. engine : translated
  783. shortcut : tl
  784. timeout : 5.0
  785. disabled : True
  786. # You can use without an API key, but you are limited to 1000 words/day
  787. # See : http://mymemory.translated.net/doc/usagelimits.php
  788. # api_key : ''
  789. - name : voat
  790. engine: xpath
  791. shortcut: vo
  792. categories: social media
  793. search_url : https://searchvoat.co/?t={query}
  794. url_xpath : //div[@class="entry"]//p[@class="title"]/a/@href
  795. title_xpath : //div[@class="entry"]//p[@class="title"]/a/text()
  796. content_xpath : //div[@class="entry"]//span[@class="domain"]/a/text()
  797. timeout : 10.0
  798. disabled : True
  799. - name : 1337x
  800. engine : 1337x
  801. shortcut : 1337x
  802. disabled : True
  803. - name : duden
  804. engine : duden
  805. shortcut : du
  806. disabled : True
  807. - name : seznam
  808. shortcut: szn
  809. engine: xpath
  810. paging : True
  811. search_url : https://search.seznam.cz/?q={query}&count=10&from={pageno}
  812. results_xpath: //div[@class="Page-content"]//div[contains(@class, "Result ")]
  813. url_xpath : ./h3/a/@href
  814. title_xpath : ./h3
  815. content_xpath : .//p[@class="Result-description"]
  816. suggestion_xpath: //div[@class="Related-container"]//div[@class="RelatedItem"]/div/span/a
  817. first_page_num : 0
  818. page_size : 10
  819. disabled : True
  820. - name : mojeek
  821. shortcut: mjk
  822. engine: xpath
  823. paging : True
  824. search_url : https://www.mojeek.com/search?q={query}&s={pageno}
  825. results_xpath: /html/body//div[@class="results"]/ul[@class="results-standard"]/li
  826. url_xpath : ./h2/a/@href
  827. title_xpath : ./h2
  828. content_xpath : ./p[@class="s"]
  829. suggestion_xpath : /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
  830. first_page_num : 0
  831. page_size : 10
  832. disabled : True
  833. - name : naver
  834. shortcut: nvr
  835. engine: xpath
  836. paging : True
  837. search_url : https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  838. results_xpath: /html/body//ul[@id="elThumbnailResultArea"]/li
  839. url_xpath : ./dl/dt/a[@class="title_link"]/@href
  840. title_xpath : ./dl/dt/a[@class="title_link"]
  841. content_xpath : ./dl/dd[@class="sh_web_passage"]
  842. suggestion_xpath : /html/body//div[@class="sp_keyword section"]//a
  843. first_page_num : 1
  844. page_size : 10
  845. disabled : True
  846. - name : rubygems
  847. shortcut: rbg
  848. engine: xpath
  849. paging : True
  850. search_url : https://rubygems.org/search?page={pageno}&query={query}
  851. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  852. url_xpath : ./@href
  853. title_xpath : ./span/h2
  854. content_xpath : ./span/p
  855. suggestion_xpath : /html/body/main/div/div[@class="search__suggestions"]/p/a
  856. first_page_num : 1
  857. categories: it
  858. disabled : True
  859. - name : peertube
  860. engine: peertube
  861. shortcut: ptb
  862. paging : True
  863. base_url : https://peer.tube/
  864. categories: videos
  865. disabled : True
  866. # - name : yacy
  867. # engine : yacy
  868. # shortcut : ya
  869. # base_url : 'http://localhost:8090'
  870. # number_of_results : 5
  871. # timeout : 3.0
  872. # Doku engine lets you access to any Doku wiki instance:
  873. # A public one or a privete/corporate one.
  874. # - name : ubuntuwiki
  875. # engine : doku
  876. # shortcut : uw
  877. # base_url : 'http://doc.ubuntu-fr.org'
  878. # Be careful when enabling this engine if you are
  879. # running a public instance. Do not expose any sensitive
  880. # information. You can restrict access by configuring a list
  881. # of access tokens under tokens.
  882. # - name: git grep
  883. # engine: command
  884. # command: ['git', 'grep', '{{QUERY}}']
  885. # shortcut: gg
  886. # tokens: []
  887. # disabled: True
  888. # delimiter:
  889. # chars: ':'
  890. # keys: ['filepath', 'code']
  891. # Be careful when enabling this engine if you are
  892. # running a public instance. Do not expose any sensitive
  893. # information. You can restrict access by configuring a list
  894. # of access tokens under tokens.
  895. # - name: locate
  896. # engine: command
  897. # command: ['locate', '{{QUERY}}']
  898. # shortcut: loc
  899. # tokens: []
  900. # disabled: True
  901. # delimiter:
  902. # chars: ' '
  903. # keys: ['line']
  904. # Be careful when enabling this engine if you are
  905. # running a public instance. Do not expose any sensitive
  906. # information. You can restrict access by configuring a list
  907. # of access tokens under tokens.
  908. # - name: find
  909. # engine: command
  910. # command: ['find', '.', '-name', '{{QUERY}}']
  911. # query_type: path
  912. # shortcut: fnd
  913. # tokens: []
  914. # disabled: True
  915. # delimiter:
  916. # chars: ' '
  917. # keys: ['line']
  918. # Be careful when enabling this engine if you are
  919. # running a public instance. Do not expose any sensitive
  920. # information. You can restrict access by configuring a list
  921. # of access tokens under tokens.
  922. # - name: pattern search in files
  923. # engine: command
  924. # command: ['fgrep', '{{QUERY}}']
  925. # shortcut: fgr
  926. # tokens: []
  927. # disabled: True
  928. # delimiter:
  929. # chars: ' '
  930. # keys: ['line']
  931. # Be careful when enabling this engine if you are
  932. # running a public instance. Do not expose any sensitive
  933. # information. You can restrict access by configuring a list
  934. # of access tokens under tokens.
  935. # - name: regex search in files
  936. # engine: command
  937. # command: ['grep', '{{QUERY}}']
  938. # shortcut: gr
  939. # tokens: []
  940. # disabled: True
  941. # delimiter:
  942. # chars: ' '
  943. # keys: ['line']
  944. locales:
  945. en : English
  946. ar : العَرَبِيَّة (Arabic)
  947. bg : Български (Bulgarian)
  948. bo : བོད་སྐད་ (Tibetian)
  949. ca : Català (Catalan)
  950. cs : Čeština (Czech)
  951. cy : Cymraeg (Welsh)
  952. da : Dansk (Danish)
  953. de : Deutsch (German)
  954. el_GR : Ελληνικά (Greek_Greece)
  955. eo : Esperanto (Esperanto)
  956. es : Español (Spanish)
  957. et : Eesti (Estonian)
  958. eu : Euskara (Basque)
  959. fa_IR : (fārsī) فارسى (Persian)
  960. fi : Suomi (Finnish)
  961. fil : Wikang Filipino (Filipino)
  962. fr : Français (French)
  963. gl : Galego (Galician)
  964. he : עברית (Hebrew)
  965. hr : Hrvatski (Croatian)
  966. hu : Magyar (Hungarian)
  967. ia : Interlingua (Interlingua)
  968. it : Italiano (Italian)
  969. ja : 日本語 (Japanese)
  970. lt : Lietuvių (Lithuanian)
  971. nl : Nederlands (Dutch)
  972. nl_BE : Vlaams (Dutch_Belgium)
  973. oc : Lenga D'òc (Occitan)
  974. pl : Polski (Polish)
  975. pt : Português (Portuguese)
  976. pt_BR : Português (Portuguese_Brazil)
  977. ro : Română (Romanian)
  978. ru : Русский (Russian)
  979. sk : Slovenčina (Slovak)
  980. sl : Slovenski (Slovene)
  981. sr : српски (Serbian)
  982. sv : Svenska (Swedish)
  983. te : తెలుగు (telugu)
  984. ta : தமிழ் (Tamil)
  985. tr : Türkçe (Turkish)
  986. uk : українська мова (Ukrainian)
  987. vi : tiếng việt (Vietnamese)
  988. zh : 中文 (Chinese)
  989. zh_TW : 國語 (Taiwanese Mandarin)
  990. doi_resolvers :
  991. oadoi.org : 'https://oadoi.org/'
  992. doi.org : 'https://doi.org/'
  993. doai.io : 'https://dissem.in/'
  994. sci-hub.tw : 'https://sci-hub.tw/'
  995. default_doi_resolver : 'sci-hub.tw'