settings.yml 31 KB

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