settings.yml 31 KB

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