settings.yml 50 KB

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