settings.yml 55 KB

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