settings.yml 51 KB

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