settings.yml 47 KB

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