settings.yml 30 KB

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