settings.yml 48 KB

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