settings.yml 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752
  1. general:
  2. debug: false # Debug mode, only for development
  3. instance_name: "SearXNG" # displayed name
  4. contact_url: false # mailto:contact@example.com
  5. enable_metrics: true # record stats
  6. brand:
  7. new_issue_url: https://github.com/searxng/searxng/issues/new
  8. docs_url: https://searxng.github.io/searxng
  9. public_instances: https://searx.space
  10. wiki_url: https://github.com/searxng/searxng/wiki
  11. issue_url: https://github.com/searxng/searxng/issues
  12. search:
  13. # Filter results. 0: None, 1: Moderate, 2: Strict
  14. safe_search: 0
  15. # Existing autocomplete backends: "dbpedia", "duckduckgo", "google",
  16. # "startpage", "swisscows", "qwant", "wikipedia" - leave blank to turn it off
  17. # by default.
  18. autocomplete: ""
  19. # Default search language - leave blank to detect from browser information or
  20. # use codes from 'languages.py'
  21. default_lang: ""
  22. # Available languages
  23. # languages:
  24. # - all
  25. # - es
  26. # - de
  27. # - it-IT
  28. # - en-GB
  29. # ban time in seconds after engine errors
  30. ban_time_on_fail: 5
  31. # max ban time in seconds after engine errors
  32. max_ban_time_on_fail: 120
  33. # remove format to deny access, use lower case.
  34. # formats: [html, csv, json, rss]
  35. formats:
  36. - html
  37. server:
  38. # If you change port, bind_address or base_url don't forget to rebuild
  39. # instance's enviroment (make buildenv)
  40. port: 8888
  41. bind_address: "127.0.0.1"
  42. base_url: false # Possible values: false or "https://example.org/location".
  43. # If your instance owns a /etc/searxng/settings.yml file, then set the following
  44. # values there.
  45. secret_key: "ultrasecretkey" # change this!
  46. # Proxying image results through searx
  47. image_proxy: false
  48. # 1.0 and 1.1 are supported
  49. http_protocol_version: "1.0"
  50. # POST queries are more secure as they don't show up in history but may cause
  51. # problems when using Firefox containers
  52. method: "POST"
  53. default_http_headers:
  54. X-Content-Type-Options: nosniff
  55. X-XSS-Protection: 1; mode=block
  56. X-Download-Options: noopen
  57. X-Robots-Tag: noindex, nofollow
  58. Referrer-Policy: no-referrer
  59. ui:
  60. # Custom static path - leave it blank if you didn't change
  61. static_path: ""
  62. # Custom templates path - leave it blank if you didn't change
  63. templates_path: ""
  64. # query_in_title: When true, the result page's titles contains the query
  65. # it decreases the privacy, since the browser can records the page titles.
  66. query_in_title: false
  67. # ui theme
  68. default_theme: oscar
  69. # Default interface locale - leave blank to detect from browser information or
  70. # use codes from the 'locales' config section
  71. default_locale: ""
  72. theme_args:
  73. # default style of oscar
  74. oscar_style: logicodev
  75. # style of simple theme: auto, light, dark
  76. simple_style: auto
  77. # Open result links in a new tab by default
  78. # results_on_new_tab: false
  79. # categories_order :
  80. # - general
  81. # - files
  82. # - map
  83. # - it
  84. # - science
  85. # Lock arbitrary settings on the preferences page. To find the ID of the user
  86. # setting you want to lock, check the ID of the form on the page "preferences".
  87. #
  88. # preferences:
  89. # lock:
  90. # - language
  91. # - autocomplete
  92. # - method
  93. # - query_in_title
  94. # searx supports result proxification using an external service:
  95. # https://github.com/asciimoo/morty uncomment below section if you have running
  96. # morty proxy the key is base64 encoded (keep the !!binary notation)
  97. # Note: since commit af77ec3, morty accepts a base64 encoded key.
  98. #
  99. # result_proxy:
  100. # url: http://127.0.0.1:3000/
  101. # key: !!binary "your_morty_proxy_key"
  102. # # [true|false] enable the "proxy" button next to each result
  103. # proxify_results: true
  104. # communication with search engines
  105. #
  106. outgoing:
  107. # default timeout in seconds, can be override by engine
  108. request_timeout: 3.0
  109. # the maximum timeout in seconds
  110. # max_request_timeout: 10.0
  111. # suffix of searx_useragent, could contain informations like an email address
  112. # to the administrator
  113. useragent_suffix: ""
  114. # The maximum number of concurrent connections that may be established.
  115. pool_connections: 100
  116. # Allow the connection pool to maintain keep-alive connections below this
  117. # point.
  118. pool_maxsize: 20
  119. # See https://www.python-httpx.org/http2/
  120. enable_http2: true
  121. # uncomment below section if you want to use a proxyq see: SOCKS proxies
  122. # https://2.python-requests.org/en/latest/user/advanced/#proxies
  123. # are also supported: see
  124. # https://2.python-requests.org/en/latest/user/advanced/#socks
  125. #
  126. # proxies:
  127. # all://:
  128. # - http://proxy1:8080
  129. # - http://proxy2:8080
  130. #
  131. # using_tor_proxy: true
  132. #
  133. # Extra seconds to add in order to account for the time taken by the proxy
  134. #
  135. # extra_proxy_timeout: 10.0
  136. #
  137. # uncomment below section only if you have more than one network interface
  138. # which can be the source of outgoing search requests
  139. #
  140. # source_ips:
  141. # - 1.1.1.1
  142. # - 1.1.1.2
  143. # - fe80::/126
  144. # External plugin configuration, for more details see
  145. # https://searxng.github.io/searxng/dev/plugins.html
  146. #
  147. # plugins:
  148. # - plugin1
  149. # - plugin2
  150. # - ...
  151. # Comment or un-comment plugin to activate / deactivate by default.
  152. #
  153. # enabled_plugins:
  154. # # these plugins are enabled if nothing is configured ..
  155. # - 'Hash plugin'
  156. # - 'Search on category select'
  157. # - 'Self Informations'
  158. # - 'Tracker URL remover'
  159. # - 'Ahmia blacklist' # activation depends on outgoing.using_tor_proxy
  160. # # these plugins are disabled if nothing is configured ..
  161. # - 'Hostname replace' # see hostname_replace configuration below
  162. # - 'Infinite scroll'
  163. # - 'Open Access DOI rewrite'
  164. # - 'Vim-like hotkeys'
  165. # Configuration of the "Hostname replace" plugin:
  166. #
  167. # hostname_replace:
  168. # '(.*\.)?youtube\.com$': 'invidious.example.com'
  169. # '(.*\.)?youtu\.be$': 'invidious.example.com'
  170. # '(.*\.)?youtube-noocookie\.com$': 'yotter.example.com'
  171. # '(.*\.)?reddit\.com$': 'teddit.example.com'
  172. # '(.*\.)?redd\.it$': 'teddit.example.com'
  173. # '(www\.)?twitter\.com$': 'nitter.example.com'
  174. # # to remove matching host names from result list, set value to false
  175. # 'spam\.example\.com': false
  176. checker:
  177. # disable checker when in debug mode
  178. off_when_debug: true
  179. # use "scheduling: false" to disable scheduling
  180. # scheduling: interval or int
  181. # to activate the scheduler:
  182. # * uncomment "scheduling" section
  183. # * add "cache2 = name=searxcache,items=2000,blocks=2000,blocksize=4096,bitmap=1"
  184. # to your uwsgi.ini
  185. # scheduling:
  186. # start_after: [300, 1800] # delay to start the first run of the checker
  187. # every: [86400, 90000] # how often the checker runs
  188. # additional tests: only for the YAML anchors (see the engines section)
  189. #
  190. additional_tests:
  191. rosebud: &test_rosebud
  192. matrix:
  193. query: rosebud
  194. lang: en
  195. result_container:
  196. - not_empty
  197. - ['one_title_contains', 'citizen kane']
  198. test:
  199. - unique_results
  200. android: &test_android
  201. matrix:
  202. query: ['android']
  203. lang: ['en', 'de', 'fr', 'zh-CN']
  204. result_container:
  205. - not_empty
  206. - ['one_title_contains', 'google']
  207. test:
  208. - unique_results
  209. # tests: only for the YAML anchors (see the engines section)
  210. tests:
  211. infobox: &tests_infobox
  212. infobox:
  213. matrix:
  214. query: ["linux", "new york", "bbc"]
  215. result_container:
  216. - has_infobox
  217. engines:
  218. - name: apk mirror
  219. engine: apkmirror
  220. timeout: 4.0
  221. shortcut: apkm
  222. disabled: true
  223. # Requires Tor
  224. - name: ahmia
  225. engine: ahmia
  226. categories: onions
  227. enable_http: true
  228. shortcut: ah
  229. - name: arch linux wiki
  230. engine: archlinux
  231. shortcut: al
  232. - name: archive is
  233. engine: xpath
  234. search_url: https://archive.is/search/?q={query}
  235. url_xpath: (//div[@class="TEXT-BLOCK"]/a)/@href
  236. title_xpath: (//div[@class="TEXT-BLOCK"]/a)
  237. content_xpath: //div[@class="TEXT-BLOCK"]/ul/li
  238. categories: general
  239. timeout: 7.0
  240. disabled: true
  241. shortcut: ai
  242. soft_max_redirects: 1
  243. about:
  244. website: https://archive.is/
  245. wikidata_id: Q13515725
  246. official_api_documentation: https://mementoweb.org/depot/native/archiveis/
  247. use_official_api: false
  248. require_api_key: false
  249. results: HTML
  250. - name: artic
  251. engine: artic
  252. shortcut: arc
  253. timeout: 4.0
  254. - name: arxiv
  255. engine: arxiv
  256. shortcut: arx
  257. categories: science
  258. timeout: 4.0
  259. # tmp suspended: dh key too small
  260. # - name: base
  261. # engine: base
  262. # shortcut: bs
  263. - name: bandcamp
  264. engine: bandcamp
  265. shortcut: bc
  266. categories: music
  267. - name: wikipedia
  268. engine: wikipedia
  269. shortcut: wp
  270. base_url: 'https://{language}.wikipedia.org/'
  271. - name: bing
  272. engine: bing
  273. shortcut: bi
  274. - name: bing images
  275. engine: bing_images
  276. shortcut: bii
  277. - name: bing news
  278. engine: bing_news
  279. shortcut: bin
  280. - name: bing videos
  281. engine: bing_videos
  282. shortcut: biv
  283. - name: bitbucket
  284. engine: xpath
  285. paging: true
  286. search_url: https://bitbucket.org/repo/all/{pageno}?name={query}
  287. url_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  288. title_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]
  289. content_xpath: //article[@class="repo-summary"]/p
  290. categories: it
  291. timeout: 4.0
  292. disabled: true
  293. shortcut: bb
  294. about:
  295. website: https://bitbucket.org/
  296. wikidata_id: Q2493781
  297. official_api_documentation: https://developer.atlassian.com/bitbucket
  298. use_official_api: false
  299. require_api_key: false
  300. results: HTML
  301. - name: btdigg
  302. engine: btdigg
  303. shortcut: bt
  304. - name: ccc-tv
  305. engine: xpath
  306. paging: false
  307. search_url: https://media.ccc.de/search/?q={query}
  308. url_xpath: //div[@class="caption"]/h3/a/@href
  309. title_xpath: //div[@class="caption"]/h3/a/text()
  310. content_xpath: //div[@class="caption"]/h4/@title
  311. categories: videos
  312. disabled: true
  313. shortcut: c3tv
  314. about:
  315. website: https://media.ccc.de/
  316. wikidata_id: Q80729951
  317. official_api_documentation: https://github.com/voc/voctoweb
  318. use_official_api: false
  319. require_api_key: false
  320. results: HTML
  321. # We don't set language: de here because media.ccc.de is not just
  322. # for a German audience. It contains many English videos and many
  323. # German videos have English subtitles.
  324. - name: ccengine
  325. engine: ccengine
  326. categories: images
  327. shortcut: cce
  328. # - name: core.ac.uk
  329. # engine: core
  330. # categories: science
  331. # shortcut: cor
  332. # # get your API key from: https://core.ac.uk/api-keys/register/
  333. # api_key: 'unset'
  334. - name: crossref
  335. engine: json_engine
  336. paging: true
  337. search_url: https://search.crossref.org/dois?q={query}&page={pageno}
  338. url_query: doi
  339. title_query: title
  340. title_html_to_text: true
  341. content_query: fullCitation
  342. content_html_to_text: true
  343. categories: science
  344. shortcut: cr
  345. about:
  346. website: https://www.crossref.org/
  347. wikidata_id: Q5188229
  348. official_api_documentation: https://github.com/CrossRef/rest-api-doc
  349. use_official_api: false
  350. require_api_key: false
  351. results: JSON
  352. - name: currency
  353. engine: currency_convert
  354. categories: general
  355. shortcut: cc
  356. - name: deezer
  357. engine: deezer
  358. shortcut: dz
  359. - name: deviantart
  360. engine: deviantart
  361. shortcut: da
  362. timeout: 3.0
  363. - name: ddg definitions
  364. engine: duckduckgo_definitions
  365. shortcut: ddd
  366. weight: 2
  367. disabled: true
  368. tests: *tests_infobox
  369. # cloudflare protected
  370. # - name: digbt
  371. # engine: digbt
  372. # shortcut: dbt
  373. # timeout: 6.0
  374. # disabled: true
  375. - name: docker hub
  376. engine: docker_hub
  377. shortcut: dh
  378. categories: it
  379. - name: erowid
  380. engine: xpath
  381. paging: true
  382. first_page_num: 0
  383. page_size: 30
  384. search_url: https://www.erowid.org/search.php?q={query}&s={pageno}
  385. url_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  386. title_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  387. content_xpath: //dl[@class="results-list"]/dd[@class="result-details"]
  388. categories: general
  389. shortcut: ew
  390. disabled: true
  391. about:
  392. website: https://www.erowid.org/
  393. wikidata_id: Q1430691
  394. official_api_documentation:
  395. use_official_api: false
  396. require_api_key: false
  397. results: HTML
  398. # - name: elasticsearch
  399. # shortcut: es
  400. # engine: elasticsearch
  401. # base_url: http://localhost:9200
  402. # username: elastic
  403. # password: changeme
  404. # index: my-index
  405. # # available options: match, simple_query_string, term, terms, custom
  406. # query_type: match
  407. # # if query_type is set to custom, provide your query here
  408. # #custom_query_json: {"query":{"match_all": {}}}
  409. # #show_metadata: false
  410. # disabled: true
  411. - name: wikidata
  412. engine: wikidata
  413. shortcut: wd
  414. timeout: 3.0
  415. weight: 2
  416. tests: *tests_infobox
  417. - name: duckduckgo
  418. engine: duckduckgo
  419. shortcut: ddg
  420. disabled: true
  421. - name: duckduckgo images
  422. engine: duckduckgo_images
  423. shortcut: ddi
  424. timeout: 3.0
  425. disabled: true
  426. - name: etools
  427. engine: etools
  428. shortcut: eto
  429. disabled: true
  430. additional_tests:
  431. rosebud: *test_rosebud
  432. - name: etymonline
  433. engine: xpath
  434. paging: true
  435. search_url: https://etymonline.com/search?page={pageno}&q={query}
  436. url_xpath: //a[contains(@class, "word__name--")]/@href
  437. title_xpath: //a[contains(@class, "word__name--")]
  438. content_xpath: //section[contains(@class, "word__defination")]
  439. first_page_num: 1
  440. shortcut: et
  441. disabled: true
  442. about:
  443. website: https://www.etymonline.com/
  444. wikidata_id: Q1188617
  445. official_api_documentation:
  446. use_official_api: false
  447. require_api_key: false
  448. results: HTML
  449. # - name: ebay
  450. # engine: ebay
  451. # shortcut: eb
  452. # disabled: true
  453. # timeout: 5
  454. - name: 1x
  455. engine: www1x
  456. shortcut: 1x
  457. timeout: 3.0
  458. disabled: true
  459. - name: fdroid
  460. engine: fdroid
  461. shortcut: fd
  462. disabled: true
  463. - name: flickr
  464. categories: images
  465. shortcut: fl
  466. # You can use the engine using the official stable API, but you need an API
  467. # key, see: https://www.flickr.com/services/apps/create/
  468. # engine: flickr
  469. # api_key: 'apikey' # required!
  470. # Or you can use the html non-stable engine, activated by default
  471. engine: flickr_noapi
  472. - name: free software directory
  473. engine: mediawiki
  474. shortcut: fsd
  475. categories: it
  476. base_url: https://directory.fsf.org/
  477. number_of_results: 5
  478. # what part of a page matches the query string: title, text, nearmatch
  479. # * title - query matches title
  480. # * text - query matches the text of page
  481. # * nearmatch - nearmatch in title
  482. search_type: title
  483. timeout: 5.0
  484. disabled: true
  485. about:
  486. website: https://directory.fsf.org/
  487. wikidata_id: Q2470288
  488. # - name: freesound
  489. # engine: freesound
  490. # shortcut: fnd
  491. # disabled: true
  492. # timeout: 15.0
  493. # API key required, see: https://freesound.org/docs/api/overview.html
  494. # api_key: MyAPIkey
  495. - name: frinkiac
  496. engine: frinkiac
  497. shortcut: frk
  498. disabled: true
  499. - name: genius
  500. engine: genius
  501. shortcut: gen
  502. - name: gigablast
  503. engine: gigablast
  504. shortcut: gb
  505. timeout: 4.0
  506. disabled: true
  507. additional_tests:
  508. rosebud: *test_rosebud
  509. - name: gentoo
  510. engine: gentoo
  511. shortcut: ge
  512. - name: gitlab
  513. engine: json_engine
  514. paging: true
  515. search_url: https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  516. url_query: web_url
  517. title_query: name_with_namespace
  518. content_query: description
  519. page_size: 20
  520. categories: it
  521. shortcut: gl
  522. timeout: 10.0
  523. disabled: true
  524. about:
  525. website: https://about.gitlab.com/
  526. wikidata_id: Q16639197
  527. official_api_documentation: https://docs.gitlab.com/ee/api/
  528. use_official_api: false
  529. require_api_key: false
  530. results: JSON
  531. - name: github
  532. engine: github
  533. shortcut: gh
  534. # This a Gitea service. If you would like to use a different instance,
  535. # change codeberg.org to URL of the desired Gitea host. Or you can create a
  536. # new engine by copying this and changing the name, shortcut and search_url.
  537. - name: codeberg
  538. engine: json_engine
  539. search_url: https://codeberg.org/api/v1/repos/search?q={query}&limit=10
  540. url_query: html_url
  541. title_query: name
  542. content_query: description
  543. categories: it
  544. shortcut: cb
  545. disabled: true
  546. about:
  547. website: https://codeberg.org/
  548. wikidata_id:
  549. official_api_documentation: https://try.gitea.io/api/swagger
  550. use_official_api: false
  551. require_api_key: false
  552. results: JSON
  553. - name: google
  554. engine: google
  555. shortcut: go
  556. # see https://searxng.github.io/searxng/src/searx.engines.google.html#module-searx.engines.google
  557. use_mobile_ui: false
  558. # additional_tests:
  559. # android: *test_android
  560. # - name: google italian
  561. # engine: google
  562. # shortcut: goit
  563. # use_mobile_ui: false
  564. # language: it
  565. # - name: google mobile ui
  566. # engine: google
  567. # shortcut: gomui
  568. # use_mobile_ui: true
  569. - name: google images
  570. engine: google_images
  571. shortcut: goi
  572. # additional_tests:
  573. # android: *test_android
  574. # dali:
  575. # matrix:
  576. # query: ['Dali Christ']
  577. # lang: ['en', 'de', 'fr', 'zh-CN']
  578. # result_container:
  579. # - ['one_title_contains', 'Salvador']
  580. - name: google news
  581. engine: google_news
  582. shortcut: gon
  583. # additional_tests:
  584. # android: *test_android
  585. - name: google videos
  586. engine: google_videos
  587. shortcut: gov
  588. # additional_tests:
  589. # android: *test_android
  590. - name: google scholar
  591. engine: google_scholar
  592. shortcut: gos
  593. - name: google play apps
  594. engine: xpath
  595. search_url: https://play.google.com/store/search?q={query}&c=apps
  596. results_xpath: '//div[@class="ImZGtf mpg5gc"]'
  597. title_xpath: './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a'
  598. url_xpath: './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a/@href'
  599. content_xpath: './/div[@class="RZEgze"]//a[@class="mnKHRc"]'
  600. thumbnail_xpath: './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  601. categories: files
  602. shortcut: gpa
  603. disabled: true
  604. about:
  605. website: https://play.google.com/
  606. wikidata_id: Q79576
  607. official_api_documentation:
  608. use_official_api: false
  609. require_api_key: false
  610. results: HTML
  611. - name: google play movies
  612. engine: xpath
  613. search_url: https://play.google.com/store/search?q={query}&c=movies
  614. results_xpath: '//div[@class="ImZGtf mpg5gc"]'
  615. title_xpath: './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a'
  616. url_xpath: './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a/@href'
  617. content_xpath: './/div[@class="kCSSQe"]'
  618. thumbnail_xpath: './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  619. categories: videos
  620. shortcut: gpm
  621. disabled: true
  622. about:
  623. website: https://play.google.com/
  624. wikidata_id: Q79576
  625. official_api_documentation:
  626. use_official_api: false
  627. require_api_key: false
  628. results: HTML
  629. - name: gpodder
  630. engine: json_engine
  631. shortcut: gpod
  632. timeout: 4.0
  633. paging: false
  634. search_url: https://gpodder.net/search.json?q={query}
  635. url_query: url
  636. title_query: title
  637. content_query: description
  638. page_size: 19
  639. categories: music
  640. disabled: true
  641. about:
  642. website: https://gpodder.net
  643. wikidata_id: Q3093354
  644. official_api_documentation: https://gpoddernet.readthedocs.io/en/latest/api/
  645. use_official_api: false
  646. requires_api_key: false
  647. results: JSON
  648. - name: habrahabr
  649. engine: xpath
  650. paging: true
  651. search_url: https://habrahabr.ru/search/page{pageno}/?q={query}
  652. url_xpath: //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  653. title_xpath: //article[contains(@class, "post")]//a[@class="post__title_link"]
  654. content_xpath: //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  655. categories: it
  656. timeout: 4.0
  657. disabled: true
  658. shortcut: habr
  659. about:
  660. website: https://habr.com/
  661. wikidata_id: Q4494434
  662. official_api_documentation: https://habr.com/en/docs/help/api/
  663. use_official_api: false
  664. require_api_key: false
  665. results: HTML
  666. - name: hoogle
  667. engine: xpath
  668. paging: true
  669. search_url: https://hoogle.haskell.org/?hoogle={query}&start={pageno}
  670. results_xpath: '//div[@class="result"]'
  671. title_xpath: './/div[@class="ans"]//a'
  672. url_xpath: './/div[@class="ans"]//a/@href'
  673. content_xpath: './/div[@class="from"]'
  674. page_size: 20
  675. categories: it
  676. shortcut: ho
  677. about:
  678. website: https://hoogle.haskell.org/
  679. wikidata_id: Q34010
  680. official_api_documentation: https://hackage.haskell.org/api
  681. use_official_api: false
  682. require_api_key: false
  683. results: JSON
  684. - name: imdb
  685. engine: imdb
  686. shortcut: imdb
  687. timeout: 6.0
  688. disabled: true
  689. - name: ina
  690. engine: ina
  691. shortcut: in
  692. timeout: 6.0
  693. disabled: true
  694. - name: invidious
  695. engine: invidious
  696. base_url:
  697. - https://invidious.tube/
  698. - https://invidious.snopyta.org/
  699. shortcut: iv
  700. timeout: 5.0
  701. disabled: true
  702. - name: kickass
  703. engine: kickass
  704. shortcut: kc
  705. timeout: 4.0
  706. disabled: true
  707. - name: library genesis
  708. engine: xpath
  709. search_url: https://libgen.rs/search.php?req={query}
  710. url_xpath: //a[contains(@href,"bookfi.net/md5")]/@href
  711. title_xpath: //a[contains(@href,"book/")]/text()[1]
  712. content_xpath: //td/a[1][contains(@href,"=author")]/text()
  713. categories: files
  714. timeout: 7.0
  715. disabled: true
  716. shortcut: lg
  717. about:
  718. website: https://libgen.rs/
  719. wikidata_id: Q22017206
  720. official_api_documentation:
  721. use_official_api: false
  722. require_api_key: false
  723. results: HTML
  724. - name: z-library
  725. engine: zlibrary
  726. shortcut: zlib
  727. categories: files
  728. timeout: 3.0
  729. # choose base_url, otherwise engine will do it at initialization time
  730. # base_url: https://b-ok.cc
  731. # base_url: https://de1lib.org
  732. # base_url: https://booksc.eu # does not have cover preview
  733. # base_url: https://booksc.org # does not have cover preview
  734. - name: library of congress
  735. engine: loc
  736. shortcut: loc
  737. categories: images
  738. - name: lobste.rs
  739. engine: xpath
  740. search_url: https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  741. results_xpath: //li[contains(@class, "story")]
  742. url_xpath: .//a[@class="u-url"]/@href
  743. title_xpath: .//a[@class="u-url"]
  744. content_xpath: .//a[@class="domain"]
  745. categories: it
  746. shortcut: lo
  747. timeout: 5.0
  748. disabled: true
  749. about:
  750. website: https://lobste.rs/
  751. wikidata_id: Q60762874
  752. official_api_documentation:
  753. use_official_api: false
  754. require_api_key: false
  755. results: HTML
  756. - name: azlyrics
  757. shortcut: lyrics
  758. engine: xpath
  759. timeout: 4.0
  760. disabled: true
  761. categories: music
  762. paging: true
  763. search_url: https://search.azlyrics.com/search.php?q={query}&w=lyrics&p={pageno}
  764. url_xpath: //td[@class="text-left visitedlyr"]/a/@href
  765. title_xpath: //span/b/text()
  766. content_xpath: //td[@class="text-left visitedlyr"]/a/small
  767. about:
  768. website: https://azlyrics.com
  769. wikidata_id: Q66372542
  770. official_api_documentation:
  771. use_official_api: false
  772. require_api_key: false
  773. results: HTML
  774. # - name: meilisearch
  775. # engine: meilisearch
  776. # shortcut: mes
  777. # enable_http: true
  778. # base_url: http://localhost:7700
  779. # index: my-index
  780. - name: microsoft academic
  781. engine: microsoft_academic
  782. categories: science
  783. shortcut: ma
  784. timeout: 6.0
  785. - name: mixcloud
  786. engine: mixcloud
  787. shortcut: mc
  788. # MongoDB engine
  789. # Required dependency: pymongo
  790. # - name: mymongo
  791. # engine: mongodb
  792. # shortcut: md
  793. # exact_match_only: false
  794. # host: '127.0.0.1'
  795. # port: 27017
  796. # enable_http: true
  797. # results_per_page: 20
  798. # database: 'business'
  799. # collection: 'reviews' # name of the db collection
  800. # key: 'name' # key in the collection to search for
  801. - name: npm
  802. engine: json_engine
  803. paging: true
  804. first_page_num: 0
  805. search_url: https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  806. results_query: results
  807. url_query: package/links/npm
  808. title_query: package/name
  809. content_query: package/description
  810. page_size: 25
  811. categories: it
  812. disabled: true
  813. timeout: 5.0
  814. shortcut: npm
  815. about:
  816. website: https://npms.io/
  817. wikidata_id: Q7067518
  818. official_api_documentation: https://api-docs.npms.io/
  819. use_official_api: false
  820. require_api_key: false
  821. results: JSON
  822. - name: nyaa
  823. engine: nyaa
  824. shortcut: nt
  825. disabled: true
  826. - name: mankier
  827. engine: json_engine
  828. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  829. results_query: results
  830. url_query: url
  831. title_query: name
  832. content_query: description
  833. categories: it
  834. shortcut: man
  835. about:
  836. website: https://www.mankier.com/
  837. official_api_documentation: https://www.mankier.com/api
  838. use_official_api: true
  839. require_api_key: false
  840. results: JSON
  841. - name: openairedatasets
  842. engine: json_engine
  843. paging: true
  844. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  845. results_query: response/results/result
  846. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  847. title_query: metadata/oaf:entity/oaf:result/title/$
  848. content_query: metadata/oaf:entity/oaf:result/description/$
  849. content_html_to_text: true
  850. categories: science
  851. shortcut: oad
  852. timeout: 5.0
  853. about:
  854. website: https://www.openaire.eu/
  855. wikidata_id: Q25106053
  856. official_api_documentation: https://api.openaire.eu/
  857. use_official_api: false
  858. require_api_key: false
  859. results: JSON
  860. - name: openairepublications
  861. engine: json_engine
  862. paging: true
  863. search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  864. results_query: response/results/result
  865. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  866. title_query: metadata/oaf:entity/oaf:result/title/$
  867. content_query: metadata/oaf:entity/oaf:result/description/$
  868. content_html_to_text: true
  869. categories: science
  870. shortcut: oap
  871. timeout: 5.0
  872. about:
  873. website: https://www.openaire.eu/
  874. wikidata_id: Q25106053
  875. official_api_documentation: https://api.openaire.eu/
  876. use_official_api: false
  877. require_api_key: false
  878. results: JSON
  879. # - name: opensemanticsearch
  880. # engine: opensemantic
  881. # shortcut: oss
  882. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  883. - name: openstreetmap
  884. engine: openstreetmap
  885. shortcut: osm
  886. - name: openrepos
  887. engine: xpath
  888. paging: true
  889. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  890. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  891. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  892. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  893. categories: files
  894. timeout: 4.0
  895. disabled: true
  896. shortcut: or
  897. about:
  898. website: https://openrepos.net/
  899. wikidata_id:
  900. official_api_documentation:
  901. use_official_api: false
  902. require_api_key: false
  903. results: HTML
  904. - name: packagist
  905. engine: json_engine
  906. paging: true
  907. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  908. results_query: results
  909. url_query: url
  910. title_query: name
  911. content_query: description
  912. categories: it
  913. disabled: true
  914. timeout: 5.0
  915. shortcut: pack
  916. about:
  917. website: https://packagist.org
  918. wikidata_id: Q108311377
  919. official_api_documentation: https://packagist.org/apidoc
  920. use_official_api: true
  921. require_api_key: false
  922. results: JSON
  923. - name: pdbe
  924. engine: pdbe
  925. shortcut: pdb
  926. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  927. # hide_obsolete: false
  928. - name: photon
  929. engine: photon
  930. shortcut: ph
  931. - name: piratebay
  932. engine: piratebay
  933. shortcut: tpb
  934. # You may need to change this URL to a proxy if piratebay is blocked in your
  935. # country
  936. url: https://thepiratebay.org/
  937. timeout: 3.0
  938. # Required dependency: psychopg2
  939. # - name: postgresql
  940. # engine: postgresql
  941. # database: postgres
  942. # username: postgres
  943. # password: postgres
  944. # limit: 10
  945. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  946. # shortcut : psql
  947. - name: pubmed
  948. engine: pubmed
  949. shortcut: pub
  950. categories: science
  951. timeout: 3.0
  952. - name: pypi
  953. shortcut: pypi
  954. engine: xpath
  955. paging: true
  956. search_url: https://pypi.org/search?q={query}&page={pageno}
  957. results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"]
  958. url_xpath: ./@href
  959. title_xpath: ./h3/span[@class="package-snippet__name"]
  960. content_xpath: ./p
  961. suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"]
  962. first_page_num: 1
  963. categories: it
  964. about:
  965. website: https://pypi.org
  966. wikidata_id: Q2984686
  967. official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html
  968. use_official_api: false
  969. require_api_key: false
  970. results: HTML
  971. - name: qwant
  972. engine: qwant
  973. shortcut: qw
  974. categories: general
  975. disabled: false
  976. additional_tests:
  977. rosebud: *test_rosebud
  978. - name: qwant news
  979. engine: qwant
  980. shortcut: qwn
  981. categories: news
  982. disabled: false
  983. network: qwant
  984. - name: qwant images
  985. engine: qwant
  986. shortcut: qwi
  987. categories: images
  988. disabled: false
  989. network: qwant
  990. - name: qwant videos
  991. engine: qwant
  992. shortcut: qwv
  993. categories: videos
  994. disabled: false
  995. network: qwant
  996. # - name: library
  997. # engine: recoll
  998. # shortcut: lib
  999. # base_url: 'https://recoll.example.org/'
  1000. # search_dir: ''
  1001. # mount_prefix: /export
  1002. # dl_prefix: 'https://download.example.org'
  1003. # timeout: 30.0
  1004. # categories: files
  1005. # disabled: true
  1006. # - name: recoll library reference
  1007. # engine: recoll
  1008. # base_url: 'https://recoll.example.org/'
  1009. # search_dir: reference
  1010. # mount_prefix: /export
  1011. # dl_prefix: 'https://download.example.org'
  1012. # shortcut: libr
  1013. # timeout: 30.0
  1014. # categories: files
  1015. # disabled: true
  1016. - name: reddit
  1017. engine: reddit
  1018. shortcut: re
  1019. page_size: 25
  1020. # Required dependency: redis
  1021. # - name: myredis
  1022. # shortcut : rds
  1023. # engine: redis_server
  1024. # exact_match_only: false
  1025. # host: '127.0.0.1'
  1026. # port: 6379
  1027. # enable_http: true
  1028. # password: ''
  1029. # db: 0
  1030. # tmp suspended: bad certificate
  1031. # - name: scanr structures
  1032. # shortcut: scs
  1033. # engine: scanr_structures
  1034. # disabled: true
  1035. - name: sepiasearch
  1036. engine: sepiasearch
  1037. shortcut: sep
  1038. - name: soundcloud
  1039. engine: soundcloud
  1040. shortcut: sc
  1041. - name: stackoverflow
  1042. engine: stackexchange
  1043. shortcut: st
  1044. api_site: 'stackoverflow'
  1045. categories: it
  1046. - name: askubuntu
  1047. engine: stackexchange
  1048. shortcut: ubuntu
  1049. api_site: 'askubuntu'
  1050. categories: it
  1051. - name: superuser
  1052. engine: stackexchange
  1053. shortcut: su
  1054. api_site: 'superuser'
  1055. categories: it
  1056. - name: searchcode code
  1057. engine: searchcode_code
  1058. shortcut: scc
  1059. disabled: true
  1060. - name: framalibre
  1061. engine: framalibre
  1062. shortcut: frl
  1063. disabled: true
  1064. # - name: searx
  1065. # engine: searx_engine
  1066. # shortcut: se
  1067. # instance_urls :
  1068. # - http://127.0.0.1:8888/
  1069. # - ...
  1070. # disabled: true
  1071. - name: semantic scholar
  1072. engine: semantic_scholar
  1073. disabled: true
  1074. shortcut: se
  1075. categories: science
  1076. about:
  1077. website: https://www.semanticscholar.org/
  1078. wikidata_id: Q22908627
  1079. official_api_documentation: https://api.semanticscholar.org/
  1080. use_official_api: false
  1081. require_api_key: false
  1082. results: JSON
  1083. # Spotify needs API credentials
  1084. # - name: spotify
  1085. # engine: spotify
  1086. # shortcut: stf
  1087. # api_client_id: *******
  1088. # api_client_secret: *******
  1089. # - name: solr
  1090. # engine: solr
  1091. # shortcut: slr
  1092. # base_url: http://localhost:8983
  1093. # collection: collection_name
  1094. # sort: '' # sorting: asc or desc
  1095. # field_list: '' # comma separated list of field names to display on the UI
  1096. # default_fields: '' # default field to query
  1097. # query_fields: '' # query fields
  1098. # enable_http: true
  1099. # - name: springer nature
  1100. # engine: springer
  1101. # # get your API key from: https://dev.springernature.com/signup
  1102. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1103. # api_key: 'unset'
  1104. # shortcut: springer
  1105. # categories: science
  1106. # timeout: 6.0
  1107. - name: startpage
  1108. engine: startpage
  1109. shortcut: sp
  1110. timeout: 6.0
  1111. disabled: true
  1112. additional_tests:
  1113. rosebud: *test_rosebud
  1114. - name: tokyotoshokan
  1115. engine: tokyotoshokan
  1116. shortcut: tt
  1117. timeout: 6.0
  1118. disabled: true
  1119. - name: solidtorrents
  1120. engine: solidtorrents
  1121. shortcut: solid
  1122. timeout: 3.0
  1123. disabled: false
  1124. # For this demo of the sqlite engine download:
  1125. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1126. # and unpack into searx/data/filmliste-v2.db
  1127. # Query to test: "!demo concert"
  1128. #
  1129. # - name: demo
  1130. # engine: sqlite
  1131. # shortcut: demo
  1132. # categories: general
  1133. # result_template: default.html
  1134. # database: searx/data/filmliste-v2.db
  1135. # query_str: >-
  1136. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1137. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1138. # description AS content
  1139. # FROM film
  1140. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1141. # ORDER BY duration DESC
  1142. # disabled: false
  1143. # Requires Tor
  1144. - name: torch
  1145. engine: xpath
  1146. paging: true
  1147. search_url:
  1148. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1149. results_xpath: //table//tr
  1150. url_xpath: ./td[2]/a
  1151. title_xpath: ./td[2]/b
  1152. content_xpath: ./td[2]/small
  1153. categories: onions
  1154. enable_http: true
  1155. shortcut: tch
  1156. # torznab engine lets you query any torznab compatible indexer. Using this
  1157. # engine in combination with Jackett (https://github.com/Jackett/Jackett)
  1158. # opens the possibility to query a lot of public and private indexers directly
  1159. # from SearXNG.
  1160. # - name: torznab
  1161. # engine: torznab
  1162. # shortcut: trz
  1163. # base_url: http://localhost:9117/api/v2.0/indexers/all/results/torznab
  1164. # enable_http: true # if using localhost
  1165. # api_key: xxxxxxxxxxxxxxx
  1166. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1167. # torznab_categories: # optional
  1168. # - 2000
  1169. # - 5000
  1170. # maybe in a fun category
  1171. # - name: uncyclopedia
  1172. # engine: mediawiki
  1173. # shortcut: unc
  1174. # base_url: https://uncyclopedia.wikia.com/
  1175. # number_of_results: 5
  1176. # tmp suspended - too slow, too many errors
  1177. # - name: urbandictionary
  1178. # engine : xpath
  1179. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1180. # url_xpath : //*[@class="word"]/@href
  1181. # title_xpath : //*[@class="def-header"]
  1182. # content_xpath: //*[@class="meaning"]
  1183. # shortcut: ud
  1184. - name: unsplash
  1185. engine: unsplash
  1186. shortcut: us
  1187. - name: yahoo
  1188. engine: yahoo
  1189. shortcut: yh
  1190. disabled: true
  1191. - name: yahoo news
  1192. engine: yahoo_news
  1193. shortcut: yhn
  1194. - name: youtube
  1195. shortcut: yt
  1196. # You can use the engine using the official stable API, but you need an API
  1197. # key See: https://console.developers.google.com/project
  1198. #
  1199. # engine: youtube_api
  1200. # api_key: 'apikey' # required!
  1201. #
  1202. # Or you can use the html non-stable engine, activated by default
  1203. engine: youtube_noapi
  1204. - name: dailymotion
  1205. engine: dailymotion
  1206. shortcut: dm
  1207. - name: vimeo
  1208. engine: vimeo
  1209. shortcut: vm
  1210. - name: wiby
  1211. engine: json_engine
  1212. search_url: https://wiby.me/json/?q={query}
  1213. url_query: URL
  1214. title_query: Title
  1215. content_query: Snippet
  1216. categories: general
  1217. shortcut: wib
  1218. disabled: true
  1219. about:
  1220. website: https://wiby.me/
  1221. - name: wikibooks
  1222. engine: mediawiki
  1223. shortcut: wb
  1224. categories: general
  1225. base_url: "https://{language}.wikibooks.org/"
  1226. number_of_results: 5
  1227. search_type: text
  1228. disabled: true
  1229. about:
  1230. website: https://www.wikibooks.org/
  1231. wikidata_id: Q367
  1232. - name: wikinews
  1233. engine: mediawiki
  1234. shortcut: wn
  1235. categories: news
  1236. base_url: "https://{language}.wikinews.org/"
  1237. number_of_results: 5
  1238. search_type: text
  1239. disabled: true
  1240. about:
  1241. website: https://www.wikinews.org/
  1242. wikidata_id: Q964
  1243. - name: wikiquote
  1244. engine: mediawiki
  1245. shortcut: wq
  1246. categories: general
  1247. base_url: "https://{language}.wikiquote.org/"
  1248. number_of_results: 5
  1249. search_type: text
  1250. disabled: true
  1251. additional_tests:
  1252. rosebud: *test_rosebud
  1253. about:
  1254. website: https://www.wikiquote.org/
  1255. wikidata_id: Q369
  1256. - name: wikisource
  1257. engine: mediawiki
  1258. shortcut: ws
  1259. categories: general
  1260. base_url: "https://{language}.wikisource.org/"
  1261. number_of_results: 5
  1262. search_type: text
  1263. disabled: true
  1264. about:
  1265. website: https://www.wikisource.org/
  1266. wikidata_id: Q263
  1267. - name: wiktionary
  1268. engine: mediawiki
  1269. shortcut: wt
  1270. categories: general
  1271. base_url: "https://{language}.wiktionary.org/"
  1272. number_of_results: 5
  1273. search_type: text
  1274. disabled: true
  1275. about:
  1276. website: https://www.wiktionary.org/
  1277. wikidata_id: Q151
  1278. - name: wikiversity
  1279. engine: mediawiki
  1280. shortcut: wv
  1281. categories: general
  1282. base_url: "https://{language}.wikiversity.org/"
  1283. number_of_results: 5
  1284. search_type: text
  1285. disabled: true
  1286. about:
  1287. website: https://www.wikiversity.org/
  1288. wikidata_id: Q370
  1289. - name: wikivoyage
  1290. engine: mediawiki
  1291. shortcut: wy
  1292. categories: general
  1293. base_url: "https://{language}.wikivoyage.org/"
  1294. number_of_results: 5
  1295. search_type: text
  1296. disabled: true
  1297. about:
  1298. website: https://www.wikivoyage.org/
  1299. wikidata_id: Q373
  1300. - name: wolframalpha
  1301. shortcut: wa
  1302. # You can use the engine using the official stable API, but you need an API
  1303. # key. See: https://products.wolframalpha.com/api/
  1304. #
  1305. # engine: wolframalpha_api
  1306. # api_key: ''
  1307. #
  1308. # Or you can use the html non-stable engine, activated by default
  1309. engine: wolframalpha_noapi
  1310. timeout: 6.0
  1311. categories: science
  1312. - name: dictzone
  1313. engine: dictzone
  1314. shortcut: dc
  1315. - name: mymemory translated
  1316. engine: translated
  1317. shortcut: tl
  1318. timeout: 5.0
  1319. disabled: true
  1320. # You can use without an API key, but you are limited to 1000 words/day
  1321. # See: https://mymemory.translated.net/doc/usagelimits.php
  1322. # api_key: ''
  1323. # Required dependency: mysql-connector-python
  1324. # - name: mysql
  1325. # engine: mysql_server
  1326. # database: mydatabase
  1327. # username: user
  1328. # password: pass
  1329. # limit: 10
  1330. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1331. # shortcut: mysql
  1332. - name: 1337x
  1333. engine: 1337x
  1334. shortcut: 1337x
  1335. disabled: true
  1336. - name: duden
  1337. engine: duden
  1338. shortcut: du
  1339. disabled: true
  1340. - name: seznam
  1341. shortcut: szn
  1342. engine: seznam
  1343. disabled: true
  1344. - name: mojeek
  1345. shortcut: mjk
  1346. engine: xpath
  1347. paging: true
  1348. search_url: https://www.mojeek.com/search?q={query}&s={pageno}
  1349. results_xpath: /html/body//div[@class="results"]/ul[@class="results-standard"]/li
  1350. url_xpath: ./h2/a/@href
  1351. title_xpath: ./h2
  1352. content_xpath: ./p[@class="s"]
  1353. suggestion_xpath: /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
  1354. first_page_num: 0
  1355. page_size: 10
  1356. disabled: true
  1357. about:
  1358. website: https://www.mojeek.com/
  1359. wikidata_id: Q60747299
  1360. official_api_documentation: https://www.mojeek.com/services/api.html/
  1361. use_official_api: false
  1362. require_api_key: false
  1363. results: HTML
  1364. - name: naver
  1365. shortcut: nvr
  1366. engine: xpath
  1367. paging: true
  1368. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1369. url_xpath: //a[@class="link_tit"]/@href
  1370. title_xpath: //a[@class="link_tit"]
  1371. content_xpath: //a[@class="total_dsc"]/div
  1372. first_page_num: 1
  1373. page_size: 10
  1374. disabled: true
  1375. about:
  1376. website: https://www.naver.com/
  1377. wikidata_id: Q485639
  1378. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1379. use_official_api: false
  1380. require_api_key: false
  1381. results: HTML
  1382. language: ko
  1383. - name: rubygems
  1384. shortcut: rbg
  1385. engine: xpath
  1386. paging: true
  1387. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1388. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1389. url_xpath: ./@href
  1390. title_xpath: ./span/h2
  1391. content_xpath: ./span/p
  1392. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1393. first_page_num: 1
  1394. categories: it
  1395. disabled: true
  1396. about:
  1397. website: https://rubygems.org/
  1398. wikidata_id: Q1853420
  1399. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1400. use_official_api: false
  1401. require_api_key: false
  1402. results: HTML
  1403. - name: peertube
  1404. engine: peertube
  1405. shortcut: ptb
  1406. paging: true
  1407. base_url: https://peer.tube/
  1408. categories: videos
  1409. disabled: true
  1410. - name: mediathekviewweb
  1411. engine: mediathekviewweb
  1412. shortcut: mvw
  1413. disabled: true
  1414. # - name: yacy
  1415. # engine: yacy
  1416. # shortcut: ya
  1417. # base_url: 'http://localhost:8090
  1418. # required if you aren't using HTTPS for your local yacy instance'
  1419. # enable_http: true
  1420. # number_of_results: 5
  1421. # timeout: 3.0
  1422. - name: rumble
  1423. engine: rumble
  1424. shortcut: ru
  1425. base_url: https://rumble.com/
  1426. paging: true
  1427. categories: videos
  1428. disabled: true
  1429. - name: wordnik
  1430. engine: wordnik
  1431. shortcut: def
  1432. base_url: https://www.wordnik.com/
  1433. categories: general
  1434. timeout: 5.0
  1435. disabled: true
  1436. - name: woxikon.de synonyme
  1437. engine: xpath
  1438. shortcut: woxi
  1439. categories: general
  1440. timeout: 5.0
  1441. disabled: true
  1442. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  1443. url_xpath: //div[@class="upper-synonyms"]/a/@href
  1444. content_xpath: //div[@class="synonyms-list-group"]
  1445. title_xpath: //div[@class="upper-synonyms"]/a
  1446. about:
  1447. website: https://www.woxikon.de/
  1448. wikidata_id: # No Wikidata ID
  1449. use_official_api: false
  1450. require_api_key: false
  1451. results: HTML
  1452. language: de
  1453. - name: słownik języka polskiego
  1454. engine: sjp
  1455. shortcut: sjp
  1456. base_url: https://sjp.pwn.pl/
  1457. categories: general
  1458. timeout: 5.0
  1459. disabled: true
  1460. # wikimini: online encyclopedia for children
  1461. # The fulltext and title parameter is necessary for Wikimini because
  1462. # sometimes it will not show the results and redirect instead
  1463. - name: wikimini
  1464. engine: xpath
  1465. shortcut: wkmn
  1466. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  1467. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  1468. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  1469. content_xpath: //li/div[@class="searchresult"]
  1470. categories: general
  1471. disabled: true
  1472. about:
  1473. website: https://wikimini.org/
  1474. wikidata_id: Q3568032
  1475. use_official_api: false
  1476. require_api_key: false
  1477. results: HTML
  1478. language: fr
  1479. - name: brave
  1480. shortcut: brave
  1481. engine: xpath
  1482. paging: false
  1483. search_url: https://search.brave.com/search?q={query}
  1484. url_xpath: //div[@class="snippet fdb"]/a/@href
  1485. title_xpath: //span[@class="snippet-title"]
  1486. content_xpath: //p[1][@class="snippet-description"]
  1487. suggestion_xpath: //div[@class="text-gray h6"]/a
  1488. categories: general
  1489. about:
  1490. website: https://brave.com/search/
  1491. wikidata_id: Q107355971
  1492. use_official_api: false
  1493. require_api_key: false
  1494. results: HTML
  1495. # Doku engine lets you access to any Doku wiki instance:
  1496. # A public one or a privete/corporate one.
  1497. # - name: ubuntuwiki
  1498. # engine: doku
  1499. # shortcut: uw
  1500. # base_url: 'https://doc.ubuntu-fr.org'
  1501. # Be careful when enabling this engine if you are
  1502. # running a public instance. Do not expose any sensitive
  1503. # information. You can restrict access by configuring a list
  1504. # of access tokens under tokens.
  1505. # - name: git grep
  1506. # engine: command
  1507. # command: ['git', 'grep', '{{QUERY}}']
  1508. # shortcut: gg
  1509. # tokens: []
  1510. # disabled: true
  1511. # delimiter:
  1512. # chars: ':'
  1513. # keys: ['filepath', 'code']
  1514. # Be careful when enabling this engine if you are
  1515. # running a public instance. Do not expose any sensitive
  1516. # information. You can restrict access by configuring a list
  1517. # of access tokens under tokens.
  1518. # - name: locate
  1519. # engine: command
  1520. # command: ['locate', '{{QUERY}}']
  1521. # shortcut: loc
  1522. # tokens: []
  1523. # disabled: true
  1524. # delimiter:
  1525. # chars: ' '
  1526. # keys: ['line']
  1527. # Be careful when enabling this engine if you are
  1528. # running a public instance. Do not expose any sensitive
  1529. # information. You can restrict access by configuring a list
  1530. # of access tokens under tokens.
  1531. # - name: find
  1532. # engine: command
  1533. # command: ['find', '.', '-name', '{{QUERY}}']
  1534. # query_type: path
  1535. # shortcut: fnd
  1536. # tokens: []
  1537. # disabled: true
  1538. # delimiter:
  1539. # chars: ' '
  1540. # keys: ['line']
  1541. # Be careful when enabling this engine if you are
  1542. # running a public instance. Do not expose any sensitive
  1543. # information. You can restrict access by configuring a list
  1544. # of access tokens under tokens.
  1545. # - name: pattern search in files
  1546. # engine: command
  1547. # command: ['fgrep', '{{QUERY}}']
  1548. # shortcut: fgr
  1549. # tokens: []
  1550. # disabled: true
  1551. # delimiter:
  1552. # chars: ' '
  1553. # keys: ['line']
  1554. # Be careful when enabling this engine if you are
  1555. # running a public instance. Do not expose any sensitive
  1556. # information. You can restrict access by configuring a list
  1557. # of access tokens under tokens.
  1558. # - name: regex search in files
  1559. # engine: command
  1560. # command: ['grep', '{{QUERY}}']
  1561. # shortcut: gr
  1562. # tokens: []
  1563. # disabled: true
  1564. # delimiter:
  1565. # chars: ' '
  1566. # keys: ['line']
  1567. doi_resolvers:
  1568. oadoi.org: 'https://oadoi.org/'
  1569. doi.org: 'https://doi.org/'
  1570. doai.io: 'https://dissem.in/'
  1571. sci-hub.se: 'https://sci-hub.se/'
  1572. sci-hub.do: 'https://sci-hub.do/'
  1573. scihubtw.tw: 'https://scihubtw.tw/'
  1574. sci-hub.st: 'https://sci-hub.st/'
  1575. sci-hub.bar: 'https://sci-hub.bar/'
  1576. sci-hub.it.nf: 'https://sci-hub.it.nf/'
  1577. default_doi_resolver: 'oadoi.org'