settings.yml 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995
  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",
  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 forgett 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/src/searx.engines.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: arch linux wiki
  303. engine: archlinux
  304. shortcut: al
  305. - name: archive is
  306. engine: xpath
  307. search_url: https://archive.is/search/?q={query}
  308. url_xpath: (//div[@class="TEXT-BLOCK"]/a)/@href
  309. title_xpath: (//div[@class="TEXT-BLOCK"]/a)
  310. content_xpath: //div[@class="TEXT-BLOCK"]/ul/li
  311. categories: general
  312. timeout: 7.0
  313. disabled: true
  314. shortcut: ai
  315. soft_max_redirects: 1
  316. about:
  317. website: https://archive.is/
  318. wikidata_id: Q13515725
  319. official_api_documentation: https://mementoweb.org/depot/native/archiveis/
  320. use_official_api: false
  321. require_api_key: false
  322. results: HTML
  323. - name: artic
  324. engine: artic
  325. shortcut: arc
  326. timeout: 4.0
  327. - name: arxiv
  328. engine: arxiv
  329. shortcut: arx
  330. timeout: 4.0
  331. # tmp suspended: dh key too small
  332. # - name: base
  333. # engine: base
  334. # shortcut: bs
  335. - name: bandcamp
  336. engine: bandcamp
  337. shortcut: bc
  338. categories: music
  339. - name: wikipedia
  340. engine: wikipedia
  341. shortcut: wp
  342. base_url: 'https://{language}.wikipedia.org/'
  343. - name: bing
  344. engine: bing
  345. shortcut: bi
  346. disabled: true
  347. - name: bing images
  348. engine: bing_images
  349. shortcut: bii
  350. - name: bing news
  351. engine: bing_news
  352. shortcut: bin
  353. - name: bing videos
  354. engine: bing_videos
  355. shortcut: biv
  356. - name: bitbucket
  357. engine: xpath
  358. paging: true
  359. search_url: https://bitbucket.org/repo/all/{pageno}?name={query}
  360. url_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  361. title_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]
  362. content_xpath: //article[@class="repo-summary"]/p
  363. categories: [it, repos]
  364. timeout: 4.0
  365. disabled: true
  366. shortcut: bb
  367. about:
  368. website: https://bitbucket.org/
  369. wikidata_id: Q2493781
  370. official_api_documentation: https://developer.atlassian.com/bitbucket
  371. use_official_api: false
  372. require_api_key: false
  373. results: HTML
  374. - name: btdigg
  375. engine: btdigg
  376. shortcut: bt
  377. disabled: true
  378. - name: ccc-tv
  379. engine: xpath
  380. paging: false
  381. search_url: https://media.ccc.de/search/?q={query}
  382. url_xpath: //div[@class="caption"]/h3/a/@href
  383. title_xpath: //div[@class="caption"]/h3/a/text()
  384. content_xpath: //div[@class="caption"]/h4/@title
  385. categories: videos
  386. disabled: true
  387. shortcut: c3tv
  388. about:
  389. website: https://media.ccc.de/
  390. wikidata_id: Q80729951
  391. official_api_documentation: https://github.com/voc/voctoweb
  392. use_official_api: false
  393. require_api_key: false
  394. results: HTML
  395. # We don't set language: de here because media.ccc.de is not just
  396. # for a German audience. It contains many English videos and many
  397. # German videos have English subtitles.
  398. - name: openverse
  399. engine: openverse
  400. categories: images
  401. shortcut: opv
  402. # - name: core.ac.uk
  403. # engine: core
  404. # categories: science
  405. # shortcut: cor
  406. # # get your API key from: https://core.ac.uk/api-keys/register/
  407. # api_key: 'unset'
  408. - name: crossref
  409. engine: crossref
  410. shortcut: cr
  411. timeout: 30
  412. disabled: true
  413. - name: crowdview
  414. engine: json_engine
  415. shortcut: cv
  416. categories: general
  417. paging: false
  418. search_url: https://crowdview-next-js.onrender.com/api/search-v3?query={query}
  419. results_query: results
  420. url_query: link
  421. title_query: title
  422. content_query: snippet
  423. disabled: true
  424. about:
  425. website: https://crowdview.ai/
  426. - name: yep
  427. engine: json_engine
  428. shortcut: yep
  429. categories: general
  430. disabled: true
  431. paging: false
  432. content_html_to_text: true
  433. title_html_to_text: true
  434. search_url: https://api.yep.com/fs/1/?type=web&q={query}&no_correct=false&limit=100
  435. results_query: 1/results
  436. title_query: title
  437. url_query: url
  438. content_query: snippet
  439. about:
  440. website: https://yep.com
  441. use_official_api: false
  442. require_api_key: false
  443. results: JSON
  444. - name: curlie
  445. engine: xpath
  446. shortcut: cl
  447. categories: general
  448. disabled: true
  449. paging: true
  450. lang_all: ''
  451. search_url: https://curlie.org/search?q={query}&lang={lang}&start={pageno}&stime=92452189
  452. page_size: 20
  453. results_xpath: //div[@id="site-list-content"]/div[@class="site-item"]
  454. url_xpath: ./div[@class="title-and-desc"]/a/@href
  455. title_xpath: ./div[@class="title-and-desc"]/a/div
  456. content_xpath: ./div[@class="title-and-desc"]/div[@class="site-descr"]
  457. about:
  458. website: https://curlie.org/
  459. wikidata_id: Q60715723
  460. use_official_api: false
  461. require_api_key: false
  462. results: HTML
  463. - name: currency
  464. engine: currency_convert
  465. categories: general
  466. shortcut: cc
  467. - name: deezer
  468. engine: deezer
  469. shortcut: dz
  470. disabled: true
  471. - name: deviantart
  472. engine: deviantart
  473. shortcut: da
  474. timeout: 3.0
  475. - name: ddg definitions
  476. engine: duckduckgo_definitions
  477. shortcut: ddd
  478. weight: 2
  479. disabled: true
  480. tests: *tests_infobox
  481. # cloudflare protected
  482. # - name: digbt
  483. # engine: digbt
  484. # shortcut: dbt
  485. # timeout: 6.0
  486. # disabled: true
  487. - name: docker hub
  488. engine: docker_hub
  489. shortcut: dh
  490. categories: [it, packages]
  491. - name: erowid
  492. engine: xpath
  493. paging: true
  494. first_page_num: 0
  495. page_size: 30
  496. search_url: https://www.erowid.org/search.php?q={query}&s={pageno}
  497. url_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  498. title_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  499. content_xpath: //dl[@class="results-list"]/dd[@class="result-details"]
  500. categories: []
  501. shortcut: ew
  502. disabled: true
  503. about:
  504. website: https://www.erowid.org/
  505. wikidata_id: Q1430691
  506. official_api_documentation:
  507. use_official_api: false
  508. require_api_key: false
  509. results: HTML
  510. # - name: elasticsearch
  511. # shortcut: es
  512. # engine: elasticsearch
  513. # base_url: http://localhost:9200
  514. # username: elastic
  515. # password: changeme
  516. # index: my-index
  517. # # available options: match, simple_query_string, term, terms, custom
  518. # query_type: match
  519. # # if query_type is set to custom, provide your query here
  520. # #custom_query_json: {"query":{"match_all": {}}}
  521. # #show_metadata: false
  522. # disabled: true
  523. - name: wikidata
  524. engine: wikidata
  525. shortcut: wd
  526. timeout: 3.0
  527. weight: 2
  528. tests: *tests_infobox
  529. - name: duckduckgo
  530. engine: duckduckgo
  531. shortcut: ddg
  532. - name: duckduckgo images
  533. engine: duckduckgo_images
  534. shortcut: ddi
  535. timeout: 3.0
  536. disabled: true
  537. - name: duckduckgo weather
  538. engine: duckduckgo_weather
  539. shortcut: ddw
  540. disabled: true
  541. - name: apple maps
  542. engine: apple_maps
  543. shortcut: apm
  544. disabled: true
  545. timeout: 5.0
  546. - name: emojipedia
  547. engine: emojipedia
  548. timeout: 4.0
  549. shortcut: em
  550. disabled: true
  551. - name: tineye
  552. engine: tineye
  553. shortcut: tin
  554. timeout: 9.0
  555. disabled: true
  556. - name: etymonline
  557. engine: xpath
  558. paging: true
  559. search_url: https://etymonline.com/search?page={pageno}&q={query}
  560. url_xpath: //a[contains(@class, "word__name--")]/@href
  561. title_xpath: //a[contains(@class, "word__name--")]
  562. content_xpath: //section[contains(@class, "word__defination")]
  563. first_page_num: 1
  564. shortcut: et
  565. categories: [dictionaries]
  566. about:
  567. website: https://www.etymonline.com/
  568. wikidata_id: Q1188617
  569. official_api_documentation:
  570. use_official_api: false
  571. require_api_key: false
  572. results: HTML
  573. # - name: ebay
  574. # engine: ebay
  575. # shortcut: eb
  576. # base_url: 'https://www.ebay.com'
  577. # disabled: true
  578. # timeout: 5
  579. - name: 1x
  580. engine: www1x
  581. shortcut: 1x
  582. timeout: 3.0
  583. disabled: true
  584. - name: fdroid
  585. engine: fdroid
  586. shortcut: fd
  587. disabled: true
  588. - name: flickr
  589. categories: images
  590. shortcut: fl
  591. # You can use the engine using the official stable API, but you need an API
  592. # key, see: https://www.flickr.com/services/apps/create/
  593. # engine: flickr
  594. # api_key: 'apikey' # required!
  595. # Or you can use the html non-stable engine, activated by default
  596. engine: flickr_noapi
  597. - name: free software directory
  598. engine: mediawiki
  599. shortcut: fsd
  600. categories: [it, software wikis]
  601. base_url: https://directory.fsf.org/
  602. search_type: title
  603. timeout: 5.0
  604. disabled: true
  605. about:
  606. website: https://directory.fsf.org/
  607. wikidata_id: Q2470288
  608. # - name: freesound
  609. # engine: freesound
  610. # shortcut: fnd
  611. # disabled: true
  612. # timeout: 15.0
  613. # API key required, see: https://freesound.org/docs/api/overview.html
  614. # api_key: MyAPIkey
  615. - name: frinkiac
  616. engine: frinkiac
  617. shortcut: frk
  618. disabled: true
  619. - name: genius
  620. engine: genius
  621. shortcut: gen
  622. - name: gentoo
  623. engine: gentoo
  624. shortcut: ge
  625. timeout: 10.0
  626. - name: gitlab
  627. engine: json_engine
  628. paging: true
  629. search_url: https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  630. url_query: web_url
  631. title_query: name_with_namespace
  632. content_query: description
  633. page_size: 20
  634. categories: [it, repos]
  635. shortcut: gl
  636. timeout: 10.0
  637. disabled: true
  638. about:
  639. website: https://about.gitlab.com/
  640. wikidata_id: Q16639197
  641. official_api_documentation: https://docs.gitlab.com/ee/api/
  642. use_official_api: false
  643. require_api_key: false
  644. results: JSON
  645. - name: github
  646. engine: github
  647. shortcut: gh
  648. # This a Gitea service. If you would like to use a different instance,
  649. # change codeberg.org to URL of the desired Gitea host. Or you can create a
  650. # new engine by copying this and changing the name, shortcut and search_url.
  651. - name: codeberg
  652. engine: json_engine
  653. search_url: https://codeberg.org/api/v1/repos/search?q={query}&limit=10
  654. url_query: html_url
  655. title_query: name
  656. content_query: description
  657. categories: [it, repos]
  658. shortcut: cb
  659. disabled: true
  660. about:
  661. website: https://codeberg.org/
  662. wikidata_id:
  663. official_api_documentation: https://try.gitea.io/api/swagger
  664. use_official_api: false
  665. require_api_key: false
  666. results: JSON
  667. - name: google
  668. engine: google
  669. shortcut: go
  670. # additional_tests:
  671. # android: *test_android
  672. - name: google images
  673. engine: google_images
  674. shortcut: goi
  675. # additional_tests:
  676. # android: *test_android
  677. # dali:
  678. # matrix:
  679. # query: ['Dali Christ']
  680. # lang: ['en', 'de', 'fr', 'zh-CN']
  681. # result_container:
  682. # - ['one_title_contains', 'Salvador']
  683. - name: google news
  684. engine: google_news
  685. shortcut: gon
  686. # additional_tests:
  687. # android: *test_android
  688. - name: google videos
  689. engine: google_videos
  690. shortcut: gov
  691. # additional_tests:
  692. # android: *test_android
  693. - name: google scholar
  694. engine: google_scholar
  695. shortcut: gos
  696. - name: google play apps
  697. engine: google_play
  698. categories: [files, apps]
  699. shortcut: gpa
  700. play_categ: apps
  701. disabled: true
  702. - name: google play movies
  703. engine: google_play
  704. categories: videos
  705. shortcut: gpm
  706. play_categ: movies
  707. disabled: true
  708. - name: gpodder
  709. engine: json_engine
  710. shortcut: gpod
  711. timeout: 4.0
  712. paging: false
  713. search_url: https://gpodder.net/search.json?q={query}
  714. url_query: url
  715. title_query: title
  716. content_query: description
  717. page_size: 19
  718. categories: music
  719. disabled: true
  720. about:
  721. website: https://gpodder.net
  722. wikidata_id: Q3093354
  723. official_api_documentation: https://gpoddernet.readthedocs.io/en/latest/api/
  724. use_official_api: false
  725. requires_api_key: false
  726. results: JSON
  727. - name: habrahabr
  728. engine: xpath
  729. paging: true
  730. search_url: https://habrahabr.ru/search/page{pageno}/?q={query}
  731. url_xpath: //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  732. title_xpath: //article[contains(@class, "post")]//a[@class="post__title_link"]
  733. content_xpath: //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  734. categories: it
  735. timeout: 4.0
  736. disabled: true
  737. shortcut: habr
  738. about:
  739. website: https://habr.com/
  740. wikidata_id: Q4494434
  741. official_api_documentation: https://habr.com/en/docs/help/api/
  742. use_official_api: false
  743. require_api_key: false
  744. results: HTML
  745. - name: hoogle
  746. engine: xpath
  747. paging: true
  748. search_url: https://hoogle.haskell.org/?hoogle={query}&start={pageno}
  749. results_xpath: '//div[@class="result"]'
  750. title_xpath: './/div[@class="ans"]//a'
  751. url_xpath: './/div[@class="ans"]//a/@href'
  752. content_xpath: './/div[@class="from"]'
  753. page_size: 20
  754. categories: [it, packages]
  755. shortcut: ho
  756. about:
  757. website: https://hoogle.haskell.org/
  758. wikidata_id: Q34010
  759. official_api_documentation: https://hackage.haskell.org/api
  760. use_official_api: false
  761. require_api_key: false
  762. results: JSON
  763. - name: imdb
  764. engine: imdb
  765. shortcut: imdb
  766. timeout: 6.0
  767. disabled: true
  768. - name: ina
  769. engine: ina
  770. shortcut: in
  771. timeout: 6.0
  772. disabled: true
  773. - name: invidious
  774. engine: invidious
  775. # Instanes will be selected randomly, see https://api.invidious.io/ for
  776. # instances that are stable (good uptime) and close to you.
  777. base_url:
  778. - https://invidious.snopyta.org
  779. - https://vid.puffyan.us
  780. # - https://invidious.kavin.rocks # Error 1020 // Access denied by Cloudflare
  781. - https://invidio.xamh.de
  782. - https://inv.riverside.rocks
  783. shortcut: iv
  784. timeout: 3.0
  785. disabled: true
  786. - name: jisho
  787. engine: jisho
  788. shortcut: js
  789. timeout: 3.0
  790. disabled: true
  791. - name: kickass
  792. engine: kickass
  793. shortcut: kc
  794. timeout: 4.0
  795. disabled: true
  796. - name: library genesis
  797. engine: xpath
  798. search_url: https://libgen.fun/search.php?req={query}
  799. url_xpath: //a[contains(@href,"get.php?md5")]/@href
  800. title_xpath: //a[contains(@href,"book/")]/text()[1]
  801. content_xpath: //td/a[1][contains(@href,"=author")]/text()
  802. categories: files
  803. timeout: 7.0
  804. disabled: true
  805. shortcut: lg
  806. about:
  807. website: https://libgen.fun/
  808. wikidata_id: Q22017206
  809. official_api_documentation:
  810. use_official_api: false
  811. require_api_key: false
  812. results: HTML
  813. - name: z-library
  814. engine: zlibrary
  815. shortcut: zlib
  816. categories: files
  817. timeout: 7.0
  818. - name: library of congress
  819. engine: loc
  820. shortcut: loc
  821. categories: images
  822. - name: lingva
  823. engine: lingva
  824. shortcut: lv
  825. # set lingva instance in url, by default it will use the official instance
  826. # url: https://lingva.ml
  827. - name: lobste.rs
  828. engine: xpath
  829. search_url: https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  830. results_xpath: //li[contains(@class, "story")]
  831. url_xpath: .//a[@class="u-url"]/@href
  832. title_xpath: .//a[@class="u-url"]
  833. content_xpath: .//a[@class="domain"]
  834. categories: it
  835. shortcut: lo
  836. timeout: 5.0
  837. disabled: true
  838. about:
  839. website: https://lobste.rs/
  840. wikidata_id: Q60762874
  841. official_api_documentation:
  842. use_official_api: false
  843. require_api_key: false
  844. results: HTML
  845. - name: azlyrics
  846. shortcut: lyrics
  847. engine: xpath
  848. timeout: 4.0
  849. disabled: true
  850. categories: [music, lyrics]
  851. paging: true
  852. search_url: https://search.azlyrics.com/search.php?q={query}&w=lyrics&p={pageno}
  853. url_xpath: //td[@class="text-left visitedlyr"]/a/@href
  854. title_xpath: //span/b/text()
  855. content_xpath: //td[@class="text-left visitedlyr"]/a/small
  856. about:
  857. website: https://azlyrics.com
  858. wikidata_id: Q66372542
  859. official_api_documentation:
  860. use_official_api: false
  861. require_api_key: false
  862. results: HTML
  863. - name: metacpan
  864. engine: metacpan
  865. shortcut: cpan
  866. disabled: true
  867. number_of_results: 20
  868. # - name: meilisearch
  869. # engine: meilisearch
  870. # shortcut: mes
  871. # enable_http: true
  872. # base_url: http://localhost:7700
  873. # index: my-index
  874. - name: mixcloud
  875. engine: mixcloud
  876. shortcut: mc
  877. # MongoDB engine
  878. # Required dependency: pymongo
  879. # - name: mymongo
  880. # engine: mongodb
  881. # shortcut: md
  882. # exact_match_only: false
  883. # host: '127.0.0.1'
  884. # port: 27017
  885. # enable_http: true
  886. # results_per_page: 20
  887. # database: 'business'
  888. # collection: 'reviews' # name of the db collection
  889. # key: 'name' # key in the collection to search for
  890. - name: npm
  891. engine: json_engine
  892. paging: true
  893. first_page_num: 0
  894. search_url: https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  895. results_query: results
  896. url_query: package/links/npm
  897. title_query: package/name
  898. content_query: package/description
  899. page_size: 25
  900. categories: [it, packages]
  901. disabled: true
  902. timeout: 5.0
  903. shortcut: npm
  904. about:
  905. website: https://npms.io/
  906. wikidata_id: Q7067518
  907. official_api_documentation: https://api-docs.npms.io/
  908. use_official_api: false
  909. require_api_key: false
  910. results: JSON
  911. - name: nyaa
  912. engine: nyaa
  913. shortcut: nt
  914. disabled: true
  915. - name: mankier
  916. engine: json_engine
  917. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  918. results_query: results
  919. url_query: url
  920. title_query: name
  921. content_query: description
  922. categories: it
  923. shortcut: man
  924. about:
  925. website: https://www.mankier.com/
  926. official_api_documentation: https://www.mankier.com/api
  927. use_official_api: true
  928. require_api_key: false
  929. results: JSON
  930. - name: openairedatasets
  931. engine: json_engine
  932. paging: true
  933. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  934. results_query: response/results/result
  935. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  936. title_query: metadata/oaf:entity/oaf:result/title/$
  937. content_query: metadata/oaf:entity/oaf:result/description/$
  938. content_html_to_text: true
  939. categories: "science"
  940. shortcut: oad
  941. timeout: 5.0
  942. about:
  943. website: https://www.openaire.eu/
  944. wikidata_id: Q25106053
  945. official_api_documentation: https://api.openaire.eu/
  946. use_official_api: false
  947. require_api_key: false
  948. results: JSON
  949. - name: openairepublications
  950. engine: json_engine
  951. paging: true
  952. search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  953. results_query: response/results/result
  954. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  955. title_query: metadata/oaf:entity/oaf:result/title/$
  956. content_query: metadata/oaf:entity/oaf:result/description/$
  957. content_html_to_text: true
  958. categories: science
  959. shortcut: oap
  960. timeout: 5.0
  961. about:
  962. website: https://www.openaire.eu/
  963. wikidata_id: Q25106053
  964. official_api_documentation: https://api.openaire.eu/
  965. use_official_api: false
  966. require_api_key: false
  967. results: JSON
  968. # - name: opensemanticsearch
  969. # engine: opensemantic
  970. # shortcut: oss
  971. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  972. - name: openstreetmap
  973. engine: openstreetmap
  974. shortcut: osm
  975. - name: openrepos
  976. engine: xpath
  977. paging: true
  978. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  979. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  980. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  981. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  982. categories: files
  983. timeout: 4.0
  984. disabled: true
  985. shortcut: or
  986. about:
  987. website: https://openrepos.net/
  988. wikidata_id:
  989. official_api_documentation:
  990. use_official_api: false
  991. require_api_key: false
  992. results: HTML
  993. - name: packagist
  994. engine: json_engine
  995. paging: true
  996. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  997. results_query: results
  998. url_query: url
  999. title_query: name
  1000. content_query: description
  1001. categories: [it, packages]
  1002. disabled: true
  1003. timeout: 5.0
  1004. shortcut: pack
  1005. about:
  1006. website: https://packagist.org
  1007. wikidata_id: Q108311377
  1008. official_api_documentation: https://packagist.org/apidoc
  1009. use_official_api: true
  1010. require_api_key: false
  1011. results: JSON
  1012. - name: pdbe
  1013. engine: pdbe
  1014. shortcut: pdb
  1015. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1016. # hide_obsolete: false
  1017. - name: photon
  1018. engine: photon
  1019. shortcut: ph
  1020. - name: piped
  1021. engine: piped
  1022. shortcut: ppd
  1023. categories: videos
  1024. piped_filter: videos
  1025. timeout: 3.0
  1026. # URL to use as link and for embeds
  1027. frontend_url: https://srv.piped.video
  1028. # Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
  1029. backend_url:
  1030. - https://pipedapi.kavin.rocks
  1031. - https://pipedapi-libre.kavin.rocks
  1032. - https://pipedapi.adminforge.de
  1033. - name: piped.music
  1034. engine: piped
  1035. network: piped
  1036. shortcut: ppdm
  1037. categories: music
  1038. piped_filter: music_songs
  1039. timeout: 3.0
  1040. - name: piratebay
  1041. engine: piratebay
  1042. shortcut: tpb
  1043. # You may need to change this URL to a proxy if piratebay is blocked in your
  1044. # country
  1045. url: https://thepiratebay.org/
  1046. timeout: 3.0
  1047. # Required dependency: psychopg2
  1048. # - name: postgresql
  1049. # engine: postgresql
  1050. # database: postgres
  1051. # username: postgres
  1052. # password: postgres
  1053. # limit: 10
  1054. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1055. # shortcut : psql
  1056. - name: pub.dev
  1057. engine: xpath
  1058. shortcut: pd
  1059. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1060. paging: true
  1061. results_xpath: /html/body/main/div/div[@class="search-results"]/div[@class="packages"]/div
  1062. url_xpath: ./div/h3/a/@href
  1063. title_xpath: ./div/h3/a
  1064. content_xpath: ./p[@class="packages-description"]
  1065. categories: [packages, it]
  1066. timeout: 3.0
  1067. disabled: true
  1068. first_page_num: 1
  1069. about:
  1070. website: https://pub.dev/
  1071. official_api_documentation: https://pub.dev/help/api
  1072. use_official_api: false
  1073. require_api_key: false
  1074. results: HTML
  1075. - name: pubmed
  1076. engine: pubmed
  1077. shortcut: pub
  1078. timeout: 3.0
  1079. - name: pypi
  1080. shortcut: pypi
  1081. engine: xpath
  1082. paging: true
  1083. search_url: https://pypi.org/search?q={query}&page={pageno}
  1084. results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"]
  1085. url_xpath: ./@href
  1086. title_xpath: ./h3/span[@class="package-snippet__name"]
  1087. content_xpath: ./p
  1088. suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"]
  1089. first_page_num: 1
  1090. categories: [it, packages]
  1091. about:
  1092. website: https://pypi.org
  1093. wikidata_id: Q2984686
  1094. official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html
  1095. use_official_api: false
  1096. require_api_key: false
  1097. results: HTML
  1098. - name: qwant
  1099. qwant_categ: web
  1100. engine: qwant
  1101. shortcut: qw
  1102. categories: [general, web]
  1103. additional_tests:
  1104. rosebud: *test_rosebud
  1105. - name: qwant news
  1106. qwant_categ: news
  1107. engine: qwant
  1108. shortcut: qwn
  1109. categories: news
  1110. network: qwant
  1111. - name: qwant images
  1112. qwant_categ: images
  1113. engine: qwant
  1114. shortcut: qwi
  1115. categories: [images, web]
  1116. network: qwant
  1117. - name: qwant videos
  1118. qwant_categ: videos
  1119. engine: qwant
  1120. shortcut: qwv
  1121. categories: [videos, web]
  1122. network: qwant
  1123. # - name: library
  1124. # engine: recoll
  1125. # shortcut: lib
  1126. # base_url: 'https://recoll.example.org/'
  1127. # search_dir: ''
  1128. # mount_prefix: /export
  1129. # dl_prefix: 'https://download.example.org'
  1130. # timeout: 30.0
  1131. # categories: files
  1132. # disabled: true
  1133. # - name: recoll library reference
  1134. # engine: recoll
  1135. # base_url: 'https://recoll.example.org/'
  1136. # search_dir: reference
  1137. # mount_prefix: /export
  1138. # dl_prefix: 'https://download.example.org'
  1139. # shortcut: libr
  1140. # timeout: 30.0
  1141. # categories: files
  1142. # disabled: true
  1143. - name: reddit
  1144. engine: reddit
  1145. shortcut: re
  1146. page_size: 25
  1147. # Required dependency: redis
  1148. # - name: myredis
  1149. # shortcut : rds
  1150. # engine: redis_server
  1151. # exact_match_only: false
  1152. # host: '127.0.0.1'
  1153. # port: 6379
  1154. # enable_http: true
  1155. # password: ''
  1156. # db: 0
  1157. # tmp suspended: bad certificate
  1158. # - name: scanr structures
  1159. # shortcut: scs
  1160. # engine: scanr_structures
  1161. # disabled: true
  1162. - name: sepiasearch
  1163. engine: sepiasearch
  1164. shortcut: sep
  1165. - name: soundcloud
  1166. engine: soundcloud
  1167. shortcut: sc
  1168. - name: stackoverflow
  1169. engine: stackexchange
  1170. shortcut: st
  1171. api_site: 'stackoverflow'
  1172. categories: [it, q&a]
  1173. - name: askubuntu
  1174. engine: stackexchange
  1175. shortcut: ubuntu
  1176. api_site: 'askubuntu'
  1177. categories: [it, q&a]
  1178. - name: superuser
  1179. engine: stackexchange
  1180. shortcut: su
  1181. api_site: 'superuser'
  1182. categories: [it, q&a]
  1183. - name: searchcode code
  1184. engine: searchcode_code
  1185. shortcut: scc
  1186. disabled: true
  1187. - name: framalibre
  1188. engine: framalibre
  1189. shortcut: frl
  1190. disabled: true
  1191. # - name: searx
  1192. # engine: searx_engine
  1193. # shortcut: se
  1194. # instance_urls :
  1195. # - http://127.0.0.1:8888/
  1196. # - ...
  1197. # disabled: true
  1198. - name: semantic scholar
  1199. engine: semantic_scholar
  1200. disabled: true
  1201. shortcut: se
  1202. # Spotify needs API credentials
  1203. # - name: spotify
  1204. # engine: spotify
  1205. # shortcut: stf
  1206. # api_client_id: *******
  1207. # api_client_secret: *******
  1208. # - name: solr
  1209. # engine: solr
  1210. # shortcut: slr
  1211. # base_url: http://localhost:8983
  1212. # collection: collection_name
  1213. # sort: '' # sorting: asc or desc
  1214. # field_list: '' # comma separated list of field names to display on the UI
  1215. # default_fields: '' # default field to query
  1216. # query_fields: '' # query fields
  1217. # enable_http: true
  1218. # - name: springer nature
  1219. # engine: springer
  1220. # # get your API key from: https://dev.springernature.com/signup
  1221. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1222. # api_key: 'unset'
  1223. # shortcut: springer
  1224. # timeout: 15.0
  1225. - name: startpage
  1226. engine: startpage
  1227. shortcut: sp
  1228. timeout: 6.0
  1229. disabled: true
  1230. additional_tests:
  1231. rosebud: *test_rosebud
  1232. - name: tokyotoshokan
  1233. engine: tokyotoshokan
  1234. shortcut: tt
  1235. timeout: 6.0
  1236. disabled: true
  1237. - name: solidtorrents
  1238. engine: solidtorrents
  1239. shortcut: solid
  1240. timeout: 4.0
  1241. base_url:
  1242. - https://solidtorrents.net
  1243. - https://solidtorrents.eu
  1244. - https://solidtorrents.to
  1245. - https://bitsearch.to
  1246. # For this demo of the sqlite engine download:
  1247. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1248. # and unpack into searx/data/filmliste-v2.db
  1249. # Query to test: "!demo concert"
  1250. #
  1251. # - name: demo
  1252. # engine: sqlite
  1253. # shortcut: demo
  1254. # categories: general
  1255. # result_template: default.html
  1256. # database: searx/data/filmliste-v2.db
  1257. # query_str: >-
  1258. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1259. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1260. # description AS content
  1261. # FROM film
  1262. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1263. # ORDER BY duration DESC
  1264. # Requires Tor
  1265. - name: torch
  1266. engine: xpath
  1267. paging: true
  1268. search_url:
  1269. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1270. results_xpath: //table//tr
  1271. url_xpath: ./td[2]/a
  1272. title_xpath: ./td[2]/b
  1273. content_xpath: ./td[2]/small
  1274. categories: onions
  1275. enable_http: true
  1276. shortcut: tch
  1277. # torznab engine lets you query any torznab compatible indexer. Using this
  1278. # engine in combination with Jackett opens the possibility to query a lot of
  1279. # public and private indexers directly from SearXNG. More details at:
  1280. # https://docs.searxng.org/src/searx.engines.torznab.html
  1281. #
  1282. # - name: Torznab EZTV
  1283. # engine: torznab
  1284. # shortcut: eztv
  1285. # base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
  1286. # enable_http: true # if using localhost
  1287. # api_key: xxxxxxxxxxxxxxx
  1288. # show_magnet_links: true
  1289. # show_torrent_files: false
  1290. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1291. # torznab_categories: # optional
  1292. # - 2000
  1293. # - 5000
  1294. - name: twitter
  1295. shortcut: tw
  1296. engine: twitter
  1297. disabled: true
  1298. # tmp suspended - too slow, too many errors
  1299. # - name: urbandictionary
  1300. # engine : xpath
  1301. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1302. # url_xpath : //*[@class="word"]/@href
  1303. # title_xpath : //*[@class="def-header"]
  1304. # content_xpath: //*[@class="meaning"]
  1305. # shortcut: ud
  1306. - name: unsplash
  1307. engine: unsplash
  1308. shortcut: us
  1309. - name: yahoo
  1310. engine: yahoo
  1311. shortcut: yh
  1312. disabled: true
  1313. - name: yahoo news
  1314. engine: yahoo_news
  1315. shortcut: yhn
  1316. - name: youtube
  1317. shortcut: yt
  1318. # You can use the engine using the official stable API, but you need an API
  1319. # key See: https://console.developers.google.com/project
  1320. #
  1321. # engine: youtube_api
  1322. # api_key: 'apikey' # required!
  1323. #
  1324. # Or you can use the html non-stable engine, activated by default
  1325. engine: youtube_noapi
  1326. - name: dailymotion
  1327. engine: dailymotion
  1328. shortcut: dm
  1329. - name: vimeo
  1330. engine: vimeo
  1331. shortcut: vm
  1332. - name: wiby
  1333. engine: json_engine
  1334. paging: true
  1335. search_url: https://wiby.me/json/?q={query}&p={pageno}
  1336. url_query: URL
  1337. title_query: Title
  1338. content_query: Snippet
  1339. categories: [general, web]
  1340. shortcut: wib
  1341. disabled: true
  1342. about:
  1343. website: https://wiby.me/
  1344. - name: alexandria
  1345. engine: json_engine
  1346. shortcut: alx
  1347. categories: general
  1348. paging: true
  1349. search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
  1350. results_query: results
  1351. title_query: title
  1352. url_query: url
  1353. content_query: snippet
  1354. timeout: 1.5
  1355. disabled: true
  1356. about:
  1357. website: https://alexandria.org/
  1358. official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
  1359. use_official_api: true
  1360. require_api_key: false
  1361. results: JSON
  1362. - name: wikibooks
  1363. engine: mediawiki
  1364. shortcut: wb
  1365. categories: [general, wikimedia]
  1366. base_url: "https://{language}.wikibooks.org/"
  1367. search_type: text
  1368. about:
  1369. website: https://www.wikibooks.org/
  1370. wikidata_id: Q367
  1371. - name: wikinews
  1372. engine: mediawiki
  1373. shortcut: wn
  1374. categories: [news, wikimedia]
  1375. base_url: "https://{language}.wikinews.org/"
  1376. search_type: text
  1377. srsort: create_timestamp_desc
  1378. about:
  1379. website: https://www.wikinews.org/
  1380. wikidata_id: Q964
  1381. - name: wikiquote
  1382. engine: mediawiki
  1383. shortcut: wq
  1384. categories: [general, wikimedia]
  1385. base_url: "https://{language}.wikiquote.org/"
  1386. search_type: text
  1387. additional_tests:
  1388. rosebud: *test_rosebud
  1389. about:
  1390. website: https://www.wikiquote.org/
  1391. wikidata_id: Q369
  1392. - name: wikisource
  1393. engine: mediawiki
  1394. shortcut: ws
  1395. categories: [general, wikimedia]
  1396. base_url: "https://{language}.wikisource.org/"
  1397. search_type: text
  1398. about:
  1399. website: https://www.wikisource.org/
  1400. wikidata_id: Q263
  1401. - name: wikispecies
  1402. engine: mediawiki
  1403. shortcut: wsp
  1404. categories: [general, science, wikimedia]
  1405. base_url: "https://species.wikimedia.org/"
  1406. search_type: text
  1407. about:
  1408. website: https://species.wikimedia.org/
  1409. wikidata_id: Q13679
  1410. - name: wiktionary
  1411. engine: mediawiki
  1412. shortcut: wt
  1413. categories: [dictionaries, wikimedia]
  1414. base_url: "https://{language}.wiktionary.org/"
  1415. search_type: text
  1416. about:
  1417. website: https://www.wiktionary.org/
  1418. wikidata_id: Q151
  1419. - name: wikiversity
  1420. engine: mediawiki
  1421. shortcut: wv
  1422. categories: [general, wikimedia]
  1423. base_url: "https://{language}.wikiversity.org/"
  1424. search_type: text
  1425. about:
  1426. website: https://www.wikiversity.org/
  1427. wikidata_id: Q370
  1428. - name: wikivoyage
  1429. engine: mediawiki
  1430. shortcut: wy
  1431. categories: [general, wikimedia]
  1432. base_url: "https://{language}.wikivoyage.org/"
  1433. search_type: text
  1434. about:
  1435. website: https://www.wikivoyage.org/
  1436. wikidata_id: Q373
  1437. - name: wolframalpha
  1438. shortcut: wa
  1439. # You can use the engine using the official stable API, but you need an API
  1440. # key. See: https://products.wolframalpha.com/api/
  1441. #
  1442. # engine: wolframalpha_api
  1443. # api_key: ''
  1444. #
  1445. # Or you can use the html non-stable engine, activated by default
  1446. engine: wolframalpha_noapi
  1447. timeout: 6.0
  1448. categories: []
  1449. - name: dictzone
  1450. engine: dictzone
  1451. shortcut: dc
  1452. - name: mymemory translated
  1453. engine: translated
  1454. shortcut: tl
  1455. timeout: 5.0
  1456. # You can use without an API key, but you are limited to 1000 words/day
  1457. # See: https://mymemory.translated.net/doc/usagelimits.php
  1458. # api_key: ''
  1459. # Required dependency: mysql-connector-python
  1460. # - name: mysql
  1461. # engine: mysql_server
  1462. # database: mydatabase
  1463. # username: user
  1464. # password: pass
  1465. # limit: 10
  1466. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1467. # shortcut: mysql
  1468. - name: 1337x
  1469. engine: 1337x
  1470. shortcut: 1337x
  1471. disabled: true
  1472. - name: duden
  1473. engine: duden
  1474. shortcut: du
  1475. disabled: true
  1476. - name: seznam
  1477. shortcut: szn
  1478. engine: seznam
  1479. disabled: true
  1480. # - name: deepl
  1481. # engine: deepl
  1482. # shortcut: dpl
  1483. # # You can use the engine using the official stable API, but you need an API key
  1484. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  1485. # api_key: '' # required!
  1486. # timeout: 5.0
  1487. # disabled: true
  1488. - name: mojeek
  1489. shortcut: mjk
  1490. engine: xpath
  1491. paging: true
  1492. categories: [general, web]
  1493. search_url: https://www.mojeek.com/search?q={query}&s={pageno}&lang={lang}&lb={lang}
  1494. results_xpath: //ul[@class="results-standard"]/li/a[@class="ob"]
  1495. url_xpath: ./@href
  1496. title_xpath: ../h2/a
  1497. content_xpath: ..//p[@class="s"]
  1498. suggestion_xpath: //div[@class="top-info"]/p[@class="top-info spell"]/em/a
  1499. first_page_num: 0
  1500. page_size: 10
  1501. disabled: true
  1502. about:
  1503. website: https://www.mojeek.com/
  1504. wikidata_id: Q60747299
  1505. official_api_documentation: https://www.mojeek.com/services/api.html/
  1506. use_official_api: false
  1507. require_api_key: false
  1508. results: HTML
  1509. - name: naver
  1510. shortcut: nvr
  1511. categories: [general, web]
  1512. engine: xpath
  1513. paging: true
  1514. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1515. url_xpath: //a[@class="link_tit"]/@href
  1516. title_xpath: //a[@class="link_tit"]
  1517. content_xpath: //a[@class="total_dsc"]/div
  1518. first_page_num: 1
  1519. page_size: 10
  1520. disabled: true
  1521. about:
  1522. website: https://www.naver.com/
  1523. wikidata_id: Q485639
  1524. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1525. use_official_api: false
  1526. require_api_key: false
  1527. results: HTML
  1528. language: ko
  1529. - name: rubygems
  1530. shortcut: rbg
  1531. engine: xpath
  1532. paging: true
  1533. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1534. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1535. url_xpath: ./@href
  1536. title_xpath: ./span/h2
  1537. content_xpath: ./span/p
  1538. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1539. first_page_num: 1
  1540. categories: [it, packages]
  1541. disabled: true
  1542. about:
  1543. website: https://rubygems.org/
  1544. wikidata_id: Q1853420
  1545. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1546. use_official_api: false
  1547. require_api_key: false
  1548. results: HTML
  1549. - name: peertube
  1550. engine: peertube
  1551. shortcut: ptb
  1552. paging: true
  1553. # alternatives see: https://instances.joinpeertube.org/instances
  1554. # base_url: https://tube.4aem.com
  1555. categories: videos
  1556. disabled: true
  1557. timeout: 6.0
  1558. - name: mediathekviewweb
  1559. engine: mediathekviewweb
  1560. shortcut: mvw
  1561. disabled: true
  1562. # - name: yacy
  1563. # engine: yacy
  1564. # shortcut: ya
  1565. # base_url: http://localhost:8090
  1566. # # required if you aren't using HTTPS for your local yacy instance'
  1567. # enable_http: true
  1568. # timeout: 3.0
  1569. # # Yacy search mode. 'global' or 'local'.
  1570. # search_mode: 'global'
  1571. - name: rumble
  1572. engine: rumble
  1573. shortcut: ru
  1574. base_url: https://rumble.com/
  1575. paging: true
  1576. categories: videos
  1577. disabled: true
  1578. - name: wordnik
  1579. engine: wordnik
  1580. shortcut: def
  1581. base_url: https://www.wordnik.com/
  1582. categories: [dictionaries]
  1583. timeout: 5.0
  1584. - name: woxikon.de synonyme
  1585. engine: xpath
  1586. shortcut: woxi
  1587. categories: [dictionaries]
  1588. timeout: 5.0
  1589. disabled: true
  1590. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  1591. url_xpath: //div[@class="upper-synonyms"]/a/@href
  1592. content_xpath: //div[@class="synonyms-list-group"]
  1593. title_xpath: //div[@class="upper-synonyms"]/a
  1594. no_result_for_http_status: [404]
  1595. about:
  1596. website: https://www.woxikon.de/
  1597. wikidata_id: # No Wikidata ID
  1598. use_official_api: false
  1599. require_api_key: false
  1600. results: HTML
  1601. language: de
  1602. - name: sjp.pwn
  1603. engine: sjp
  1604. shortcut: sjp
  1605. base_url: https://sjp.pwn.pl/
  1606. timeout: 5.0
  1607. disabled: true
  1608. # wikimini: online encyclopedia for children
  1609. # The fulltext and title parameter is necessary for Wikimini because
  1610. # sometimes it will not show the results and redirect instead
  1611. - name: wikimini
  1612. engine: xpath
  1613. shortcut: wkmn
  1614. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  1615. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  1616. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  1617. content_xpath: //li/div[@class="searchresult"]
  1618. categories: general
  1619. disabled: true
  1620. about:
  1621. website: https://wikimini.org/
  1622. wikidata_id: Q3568032
  1623. use_official_api: false
  1624. require_api_key: false
  1625. results: HTML
  1626. language: fr
  1627. - name: wttr.in
  1628. engine: wttr
  1629. shortcut: wttr
  1630. timeout: 9.0
  1631. - name: brave
  1632. engine: brave
  1633. shortcut: br
  1634. time_range_support: true
  1635. paging: true
  1636. categories: [general, web]
  1637. brave_category: search
  1638. # brave_spellcheck: true
  1639. - name: brave.images
  1640. engine: brave
  1641. network: brave
  1642. shortcut: brimg
  1643. categories: [images, web]
  1644. brave_category: images
  1645. - name: brave.videos
  1646. engine: brave
  1647. network: brave
  1648. shortcut: brvid
  1649. categories: [videos, web]
  1650. brave_category: videos
  1651. - name: brave.news
  1652. engine: brave
  1653. network: brave
  1654. shortcut: brnews
  1655. categories: news
  1656. brave_category: news
  1657. - name: lib.rs
  1658. shortcut: lrs
  1659. engine: xpath
  1660. search_url: https://lib.rs/search?q={query}
  1661. results_xpath: /html/body/main/div/ol/li/a
  1662. url_xpath: ./@href
  1663. title_xpath: ./div[@class="h"]/h4
  1664. content_xpath: ./div[@class="h"]/p
  1665. categories: [it, packages]
  1666. disabled: true
  1667. about:
  1668. website: https://lib.rs
  1669. wikidata_id: Q113486010
  1670. use_official_api: false
  1671. require_api_key: false
  1672. results: HTML
  1673. - name: sourcehut
  1674. shortcut: srht
  1675. engine: xpath
  1676. paging: true
  1677. search_url: https://sr.ht/projects?page={pageno}&search={query}
  1678. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  1679. url_xpath: ./h4/a[2]/@href
  1680. title_xpath: ./h4/a[2]
  1681. content_xpath: ./p
  1682. first_page_num: 1
  1683. categories: [it, repos]
  1684. disabled: true
  1685. about:
  1686. website: https://sr.ht
  1687. wikidata_id: Q78514485
  1688. official_api_documentation: https://man.sr.ht/
  1689. use_official_api: false
  1690. require_api_key: false
  1691. results: HTML
  1692. - name: goo
  1693. shortcut: goo
  1694. engine: xpath
  1695. paging: true
  1696. search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
  1697. url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
  1698. title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
  1699. content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
  1700. first_page_num: 0
  1701. categories: [general, web]
  1702. disabled: true
  1703. timeout: 4.0
  1704. about:
  1705. website: https://search.goo.ne.jp
  1706. wikidata_id: Q249044
  1707. use_official_api: false
  1708. require_api_key: false
  1709. results: HTML
  1710. language: ja
  1711. - name: bt4g
  1712. engine: bt4g
  1713. shortcut: bt4g
  1714. # Doku engine lets you access to any Doku wiki instance:
  1715. # A public one or a privete/corporate one.
  1716. # - name: ubuntuwiki
  1717. # engine: doku
  1718. # shortcut: uw
  1719. # base_url: 'https://doc.ubuntu-fr.org'
  1720. # Be careful when enabling this engine if you are
  1721. # running a public instance. Do not expose any sensitive
  1722. # information. You can restrict access by configuring a list
  1723. # of access tokens under tokens.
  1724. # - name: git grep
  1725. # engine: command
  1726. # command: ['git', 'grep', '{{QUERY}}']
  1727. # shortcut: gg
  1728. # tokens: []
  1729. # disabled: true
  1730. # delimiter:
  1731. # chars: ':'
  1732. # keys: ['filepath', 'code']
  1733. # Be careful when enabling this engine if you are
  1734. # running a public instance. Do not expose any sensitive
  1735. # information. You can restrict access by configuring a list
  1736. # of access tokens under tokens.
  1737. # - name: locate
  1738. # engine: command
  1739. # command: ['locate', '{{QUERY}}']
  1740. # shortcut: loc
  1741. # tokens: []
  1742. # disabled: true
  1743. # delimiter:
  1744. # chars: ' '
  1745. # keys: ['line']
  1746. # Be careful when enabling this engine if you are
  1747. # running a public instance. Do not expose any sensitive
  1748. # information. You can restrict access by configuring a list
  1749. # of access tokens under tokens.
  1750. # - name: find
  1751. # engine: command
  1752. # command: ['find', '.', '-name', '{{QUERY}}']
  1753. # query_type: path
  1754. # shortcut: fnd
  1755. # tokens: []
  1756. # disabled: true
  1757. # delimiter:
  1758. # chars: ' '
  1759. # keys: ['line']
  1760. # Be careful when enabling this engine if you are
  1761. # running a public instance. Do not expose any sensitive
  1762. # information. You can restrict access by configuring a list
  1763. # of access tokens under tokens.
  1764. # - name: pattern search in files
  1765. # engine: command
  1766. # command: ['fgrep', '{{QUERY}}']
  1767. # shortcut: fgr
  1768. # tokens: []
  1769. # disabled: true
  1770. # delimiter:
  1771. # chars: ' '
  1772. # keys: ['line']
  1773. # Be careful when enabling this engine if you are
  1774. # running a public instance. Do not expose any sensitive
  1775. # information. You can restrict access by configuring a list
  1776. # of access tokens under tokens.
  1777. # - name: regex search in files
  1778. # engine: command
  1779. # command: ['grep', '{{QUERY}}']
  1780. # shortcut: gr
  1781. # tokens: []
  1782. # disabled: true
  1783. # delimiter:
  1784. # chars: ' '
  1785. # keys: ['line']
  1786. doi_resolvers:
  1787. oadoi.org: 'https://oadoi.org/'
  1788. doi.org: 'https://doi.org/'
  1789. doai.io: 'https://dissem.in/'
  1790. sci-hub.se: 'https://sci-hub.se/'
  1791. sci-hub.st: 'https://sci-hub.st/'
  1792. sci-hub.ru: 'https://sci-hub.ru/'
  1793. default_doi_resolver: 'oadoi.org'