settings.yml 30 KB

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