settings.yml 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022
  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. - 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.snopyta.org
  778. - https://vid.puffyan.us
  779. # - https://invidious.kavin.rocks # Error 1020 // Access denied by Cloudflare
  780. - https://invidio.xamh.de
  781. - https://inv.riverside.rocks
  782. shortcut: iv
  783. timeout: 3.0
  784. disabled: true
  785. - name: jisho
  786. engine: jisho
  787. shortcut: js
  788. timeout: 3.0
  789. disabled: true
  790. - name: kickass
  791. engine: kickass
  792. shortcut: kc
  793. timeout: 4.0
  794. disabled: true
  795. - name: library genesis
  796. engine: xpath
  797. search_url: https://libgen.fun/search.php?req={query}
  798. url_xpath: //a[contains(@href,"get.php?md5")]/@href
  799. title_xpath: //a[contains(@href,"book/")]/text()[1]
  800. content_xpath: //td/a[1][contains(@href,"=author")]/text()
  801. categories: files
  802. timeout: 7.0
  803. disabled: true
  804. shortcut: lg
  805. about:
  806. website: https://libgen.fun/
  807. wikidata_id: Q22017206
  808. official_api_documentation:
  809. use_official_api: false
  810. require_api_key: false
  811. results: HTML
  812. - name: z-library
  813. engine: zlibrary
  814. shortcut: zlib
  815. categories: files
  816. timeout: 7.0
  817. - name: library of congress
  818. engine: loc
  819. shortcut: loc
  820. categories: images
  821. - name: lingva
  822. engine: lingva
  823. shortcut: lv
  824. # set lingva instance in url, by default it will use the official instance
  825. # url: https://lingva.ml
  826. - name: lobste.rs
  827. engine: xpath
  828. search_url: https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  829. results_xpath: //li[contains(@class, "story")]
  830. url_xpath: .//a[@class="u-url"]/@href
  831. title_xpath: .//a[@class="u-url"]
  832. content_xpath: .//a[@class="domain"]
  833. categories: it
  834. shortcut: lo
  835. timeout: 5.0
  836. disabled: true
  837. about:
  838. website: https://lobste.rs/
  839. wikidata_id: Q60762874
  840. official_api_documentation:
  841. use_official_api: false
  842. require_api_key: false
  843. results: HTML
  844. - name: azlyrics
  845. shortcut: lyrics
  846. engine: xpath
  847. timeout: 4.0
  848. disabled: true
  849. categories: [music, lyrics]
  850. paging: true
  851. search_url: https://search.azlyrics.com/search.php?q={query}&w=lyrics&p={pageno}
  852. url_xpath: //td[@class="text-left visitedlyr"]/a/@href
  853. title_xpath: //span/b/text()
  854. content_xpath: //td[@class="text-left visitedlyr"]/a/small
  855. about:
  856. website: https://azlyrics.com
  857. wikidata_id: Q66372542
  858. official_api_documentation:
  859. use_official_api: false
  860. require_api_key: false
  861. results: HTML
  862. - name: metacpan
  863. engine: metacpan
  864. shortcut: cpan
  865. disabled: true
  866. number_of_results: 20
  867. # - name: meilisearch
  868. # engine: meilisearch
  869. # shortcut: mes
  870. # enable_http: true
  871. # base_url: http://localhost:7700
  872. # index: my-index
  873. - name: mixcloud
  874. engine: mixcloud
  875. shortcut: mc
  876. # MongoDB engine
  877. # Required dependency: pymongo
  878. # - name: mymongo
  879. # engine: mongodb
  880. # shortcut: md
  881. # exact_match_only: false
  882. # host: '127.0.0.1'
  883. # port: 27017
  884. # enable_http: true
  885. # results_per_page: 20
  886. # database: 'business'
  887. # collection: 'reviews' # name of the db collection
  888. # key: 'name' # key in the collection to search for
  889. - name: npm
  890. engine: json_engine
  891. paging: true
  892. first_page_num: 0
  893. search_url: https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  894. results_query: results
  895. url_query: package/links/npm
  896. title_query: package/name
  897. content_query: package/description
  898. page_size: 25
  899. categories: [it, packages]
  900. disabled: true
  901. timeout: 5.0
  902. shortcut: npm
  903. about:
  904. website: https://npms.io/
  905. wikidata_id: Q7067518
  906. official_api_documentation: https://api-docs.npms.io/
  907. use_official_api: false
  908. require_api_key: false
  909. results: JSON
  910. - name: nyaa
  911. engine: nyaa
  912. shortcut: nt
  913. disabled: true
  914. - name: mankier
  915. engine: json_engine
  916. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  917. results_query: results
  918. url_query: url
  919. title_query: name
  920. content_query: description
  921. categories: it
  922. shortcut: man
  923. about:
  924. website: https://www.mankier.com/
  925. official_api_documentation: https://www.mankier.com/api
  926. use_official_api: true
  927. require_api_key: false
  928. results: JSON
  929. - name: openairedatasets
  930. engine: json_engine
  931. paging: true
  932. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  933. results_query: response/results/result
  934. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  935. title_query: metadata/oaf:entity/oaf:result/title/$
  936. content_query: metadata/oaf:entity/oaf:result/description/$
  937. content_html_to_text: true
  938. categories: "science"
  939. shortcut: oad
  940. timeout: 5.0
  941. about:
  942. website: https://www.openaire.eu/
  943. wikidata_id: Q25106053
  944. official_api_documentation: https://api.openaire.eu/
  945. use_official_api: false
  946. require_api_key: false
  947. results: JSON
  948. - name: openairepublications
  949. engine: json_engine
  950. paging: true
  951. search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  952. results_query: response/results/result
  953. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  954. title_query: metadata/oaf:entity/oaf:result/title/$
  955. content_query: metadata/oaf:entity/oaf:result/description/$
  956. content_html_to_text: true
  957. categories: science
  958. shortcut: oap
  959. timeout: 5.0
  960. about:
  961. website: https://www.openaire.eu/
  962. wikidata_id: Q25106053
  963. official_api_documentation: https://api.openaire.eu/
  964. use_official_api: false
  965. require_api_key: false
  966. results: JSON
  967. # - name: opensemanticsearch
  968. # engine: opensemantic
  969. # shortcut: oss
  970. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  971. - name: openstreetmap
  972. engine: openstreetmap
  973. shortcut: osm
  974. - name: openrepos
  975. engine: xpath
  976. paging: true
  977. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  978. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  979. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  980. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  981. categories: files
  982. timeout: 4.0
  983. disabled: true
  984. shortcut: or
  985. about:
  986. website: https://openrepos.net/
  987. wikidata_id:
  988. official_api_documentation:
  989. use_official_api: false
  990. require_api_key: false
  991. results: HTML
  992. - name: packagist
  993. engine: json_engine
  994. paging: true
  995. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  996. results_query: results
  997. url_query: url
  998. title_query: name
  999. content_query: description
  1000. categories: [it, packages]
  1001. disabled: true
  1002. timeout: 5.0
  1003. shortcut: pack
  1004. about:
  1005. website: https://packagist.org
  1006. wikidata_id: Q108311377
  1007. official_api_documentation: https://packagist.org/apidoc
  1008. use_official_api: true
  1009. require_api_key: false
  1010. results: JSON
  1011. - name: pdbe
  1012. engine: pdbe
  1013. shortcut: pdb
  1014. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1015. # hide_obsolete: false
  1016. - name: photon
  1017. engine: photon
  1018. shortcut: ph
  1019. - name: piped
  1020. engine: piped
  1021. shortcut: ppd
  1022. categories: videos
  1023. piped_filter: videos
  1024. timeout: 3.0
  1025. # URL to use as link and for embeds
  1026. frontend_url: https://srv.piped.video
  1027. # Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
  1028. backend_url:
  1029. - https://pipedapi.kavin.rocks
  1030. - https://pipedapi-libre.kavin.rocks
  1031. - https://pipedapi.adminforge.de
  1032. - name: piped.music
  1033. engine: piped
  1034. network: piped
  1035. shortcut: ppdm
  1036. categories: music
  1037. piped_filter: music_songs
  1038. timeout: 3.0
  1039. - name: piratebay
  1040. engine: piratebay
  1041. shortcut: tpb
  1042. # You may need to change this URL to a proxy if piratebay is blocked in your
  1043. # country
  1044. url: https://thepiratebay.org/
  1045. timeout: 3.0
  1046. # Required dependency: psychopg2
  1047. # - name: postgresql
  1048. # engine: postgresql
  1049. # database: postgres
  1050. # username: postgres
  1051. # password: postgres
  1052. # limit: 10
  1053. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1054. # shortcut : psql
  1055. - name: pub.dev
  1056. engine: xpath
  1057. shortcut: pd
  1058. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1059. paging: true
  1060. results_xpath: /html/body/main/div/div[@class="search-results"]/div[@class="packages"]/div
  1061. url_xpath: ./div/h3/a/@href
  1062. title_xpath: ./div/h3/a
  1063. content_xpath: ./p[@class="packages-description"]
  1064. categories: [packages, it]
  1065. timeout: 3.0
  1066. disabled: true
  1067. first_page_num: 1
  1068. about:
  1069. website: https://pub.dev/
  1070. official_api_documentation: https://pub.dev/help/api
  1071. use_official_api: false
  1072. require_api_key: false
  1073. results: HTML
  1074. - name: pubmed
  1075. engine: pubmed
  1076. shortcut: pub
  1077. timeout: 3.0
  1078. - name: pypi
  1079. shortcut: pypi
  1080. engine: xpath
  1081. paging: true
  1082. search_url: https://pypi.org/search?q={query}&page={pageno}
  1083. results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"]
  1084. url_xpath: ./@href
  1085. title_xpath: ./h3/span[@class="package-snippet__name"]
  1086. content_xpath: ./p
  1087. suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"]
  1088. first_page_num: 1
  1089. categories: [it, packages]
  1090. about:
  1091. website: https://pypi.org
  1092. wikidata_id: Q2984686
  1093. official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html
  1094. use_official_api: false
  1095. require_api_key: false
  1096. results: HTML
  1097. - name: qwant
  1098. qwant_categ: web
  1099. engine: qwant
  1100. shortcut: qw
  1101. categories: [general, web]
  1102. additional_tests:
  1103. rosebud: *test_rosebud
  1104. - name: qwant news
  1105. qwant_categ: news
  1106. engine: qwant
  1107. shortcut: qwn
  1108. categories: news
  1109. network: qwant
  1110. - name: qwant images
  1111. qwant_categ: images
  1112. engine: qwant
  1113. shortcut: qwi
  1114. categories: [images, web]
  1115. network: qwant
  1116. - name: qwant videos
  1117. qwant_categ: videos
  1118. engine: qwant
  1119. shortcut: qwv
  1120. categories: [videos, web]
  1121. network: qwant
  1122. # - name: library
  1123. # engine: recoll
  1124. # shortcut: lib
  1125. # base_url: 'https://recoll.example.org/'
  1126. # search_dir: ''
  1127. # mount_prefix: /export
  1128. # dl_prefix: 'https://download.example.org'
  1129. # timeout: 30.0
  1130. # categories: files
  1131. # disabled: true
  1132. # - name: recoll library reference
  1133. # engine: recoll
  1134. # base_url: 'https://recoll.example.org/'
  1135. # search_dir: reference
  1136. # mount_prefix: /export
  1137. # dl_prefix: 'https://download.example.org'
  1138. # shortcut: libr
  1139. # timeout: 30.0
  1140. # categories: files
  1141. # disabled: true
  1142. - name: reddit
  1143. engine: reddit
  1144. shortcut: re
  1145. page_size: 25
  1146. # Required dependency: redis
  1147. # - name: myredis
  1148. # shortcut : rds
  1149. # engine: redis_server
  1150. # exact_match_only: false
  1151. # host: '127.0.0.1'
  1152. # port: 6379
  1153. # enable_http: true
  1154. # password: ''
  1155. # db: 0
  1156. # tmp suspended: bad certificate
  1157. # - name: scanr structures
  1158. # shortcut: scs
  1159. # engine: scanr_structures
  1160. # disabled: true
  1161. - name: sepiasearch
  1162. engine: sepiasearch
  1163. shortcut: sep
  1164. - name: soundcloud
  1165. engine: soundcloud
  1166. shortcut: sc
  1167. - name: stackoverflow
  1168. engine: stackexchange
  1169. shortcut: st
  1170. api_site: 'stackoverflow'
  1171. categories: [it, q&a]
  1172. - name: askubuntu
  1173. engine: stackexchange
  1174. shortcut: ubuntu
  1175. api_site: 'askubuntu'
  1176. categories: [it, q&a]
  1177. - name: superuser
  1178. engine: stackexchange
  1179. shortcut: su
  1180. api_site: 'superuser'
  1181. categories: [it, q&a]
  1182. - name: searchcode code
  1183. engine: searchcode_code
  1184. shortcut: scc
  1185. disabled: true
  1186. - name: framalibre
  1187. engine: framalibre
  1188. shortcut: frl
  1189. disabled: true
  1190. # - name: searx
  1191. # engine: searx_engine
  1192. # shortcut: se
  1193. # instance_urls :
  1194. # - http://127.0.0.1:8888/
  1195. # - ...
  1196. # disabled: true
  1197. - name: semantic scholar
  1198. engine: semantic_scholar
  1199. disabled: true
  1200. shortcut: se
  1201. # Spotify needs API credentials
  1202. # - name: spotify
  1203. # engine: spotify
  1204. # shortcut: stf
  1205. # api_client_id: *******
  1206. # api_client_secret: *******
  1207. # - name: solr
  1208. # engine: solr
  1209. # shortcut: slr
  1210. # base_url: http://localhost:8983
  1211. # collection: collection_name
  1212. # sort: '' # sorting: asc or desc
  1213. # field_list: '' # comma separated list of field names to display on the UI
  1214. # default_fields: '' # default field to query
  1215. # query_fields: '' # query fields
  1216. # enable_http: true
  1217. # - name: springer nature
  1218. # engine: springer
  1219. # # get your API key from: https://dev.springernature.com/signup
  1220. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1221. # api_key: 'unset'
  1222. # shortcut: springer
  1223. # timeout: 15.0
  1224. - name: startpage
  1225. engine: startpage
  1226. shortcut: sp
  1227. timeout: 6.0
  1228. disabled: true
  1229. additional_tests:
  1230. rosebud: *test_rosebud
  1231. - name: tokyotoshokan
  1232. engine: tokyotoshokan
  1233. shortcut: tt
  1234. timeout: 6.0
  1235. disabled: true
  1236. - name: solidtorrents
  1237. engine: solidtorrents
  1238. shortcut: solid
  1239. timeout: 4.0
  1240. base_url:
  1241. - https://solidtorrents.net
  1242. - https://solidtorrents.eu
  1243. - https://solidtorrents.to
  1244. - https://bitsearch.to
  1245. # For this demo of the sqlite engine download:
  1246. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1247. # and unpack into searx/data/filmliste-v2.db
  1248. # Query to test: "!demo concert"
  1249. #
  1250. # - name: demo
  1251. # engine: sqlite
  1252. # shortcut: demo
  1253. # categories: general
  1254. # result_template: default.html
  1255. # database: searx/data/filmliste-v2.db
  1256. # query_str: >-
  1257. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1258. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1259. # description AS content
  1260. # FROM film
  1261. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1262. # ORDER BY duration DESC
  1263. # Requires Tor
  1264. - name: torch
  1265. engine: xpath
  1266. paging: true
  1267. search_url:
  1268. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1269. results_xpath: //table//tr
  1270. url_xpath: ./td[2]/a
  1271. title_xpath: ./td[2]/b
  1272. content_xpath: ./td[2]/small
  1273. categories: onions
  1274. enable_http: true
  1275. shortcut: tch
  1276. # torznab engine lets you query any torznab compatible indexer. Using this
  1277. # engine in combination with Jackett opens the possibility to query a lot of
  1278. # public and private indexers directly from SearXNG. More details at:
  1279. # https://docs.searxng.org/src/searx.engines.torznab.html
  1280. #
  1281. # - name: Torznab EZTV
  1282. # engine: torznab
  1283. # shortcut: eztv
  1284. # base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
  1285. # enable_http: true # if using localhost
  1286. # api_key: xxxxxxxxxxxxxxx
  1287. # show_magnet_links: true
  1288. # show_torrent_files: false
  1289. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1290. # torznab_categories: # optional
  1291. # - 2000
  1292. # - 5000
  1293. - name: twitter
  1294. shortcut: tw
  1295. engine: twitter
  1296. disabled: true
  1297. # tmp suspended - too slow, too many errors
  1298. # - name: urbandictionary
  1299. # engine : xpath
  1300. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1301. # url_xpath : //*[@class="word"]/@href
  1302. # title_xpath : //*[@class="def-header"]
  1303. # content_xpath: //*[@class="meaning"]
  1304. # shortcut: ud
  1305. - name: unsplash
  1306. engine: unsplash
  1307. shortcut: us
  1308. - name: yahoo
  1309. engine: yahoo
  1310. shortcut: yh
  1311. disabled: true
  1312. - name: yahoo news
  1313. engine: yahoo_news
  1314. shortcut: yhn
  1315. - name: youtube
  1316. shortcut: yt
  1317. # You can use the engine using the official stable API, but you need an API
  1318. # key See: https://console.developers.google.com/project
  1319. #
  1320. # engine: youtube_api
  1321. # api_key: 'apikey' # required!
  1322. #
  1323. # Or you can use the html non-stable engine, activated by default
  1324. engine: youtube_noapi
  1325. - name: dailymotion
  1326. engine: dailymotion
  1327. shortcut: dm
  1328. - name: vimeo
  1329. engine: vimeo
  1330. shortcut: vm
  1331. - name: wiby
  1332. engine: json_engine
  1333. paging: true
  1334. search_url: https://wiby.me/json/?q={query}&p={pageno}
  1335. url_query: URL
  1336. title_query: Title
  1337. content_query: Snippet
  1338. categories: [general, web]
  1339. shortcut: wib
  1340. disabled: true
  1341. about:
  1342. website: https://wiby.me/
  1343. - name: alexandria
  1344. engine: json_engine
  1345. shortcut: alx
  1346. categories: general
  1347. paging: true
  1348. search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
  1349. results_query: results
  1350. title_query: title
  1351. url_query: url
  1352. content_query: snippet
  1353. timeout: 1.5
  1354. disabled: true
  1355. about:
  1356. website: https://alexandria.org/
  1357. official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
  1358. use_official_api: true
  1359. require_api_key: false
  1360. results: JSON
  1361. - name: wikibooks
  1362. engine: mediawiki
  1363. shortcut: wb
  1364. categories: general
  1365. base_url: "https://{language}.wikibooks.org/"
  1366. search_type: text
  1367. disabled: true
  1368. about:
  1369. website: https://www.wikibooks.org/
  1370. wikidata_id: Q367
  1371. - name: wikinews
  1372. engine: mediawiki
  1373. shortcut: wn
  1374. categories: news
  1375. base_url: "https://{language}.wikinews.org/"
  1376. search_type: text
  1377. disabled: true
  1378. srsort: create_timestamp_desc
  1379. about:
  1380. website: https://www.wikinews.org/
  1381. wikidata_id: Q964
  1382. - name: wikiquote
  1383. engine: mediawiki
  1384. shortcut: wq
  1385. categories: general
  1386. base_url: "https://{language}.wikiquote.org/"
  1387. search_type: text
  1388. disabled: true
  1389. additional_tests:
  1390. rosebud: *test_rosebud
  1391. about:
  1392. website: https://www.wikiquote.org/
  1393. wikidata_id: Q369
  1394. - name: wikisource
  1395. engine: mediawiki
  1396. shortcut: ws
  1397. categories: general
  1398. base_url: "https://{language}.wikisource.org/"
  1399. search_type: text
  1400. disabled: true
  1401. about:
  1402. website: https://www.wikisource.org/
  1403. wikidata_id: Q263
  1404. - name: wikipecies
  1405. engine: mediawiki
  1406. shortcut: wsp
  1407. categories: [general, science]
  1408. base_url: "https://species.wikimedia.org/"
  1409. search_type: text
  1410. disabled: true
  1411. about:
  1412. website: https://species.wikimedia.org/
  1413. wikidata_id: Q13679
  1414. - name: wiktionary
  1415. engine: mediawiki
  1416. shortcut: wt
  1417. categories: [dictionaries]
  1418. base_url: "https://{language}.wiktionary.org/"
  1419. search_type: text
  1420. about:
  1421. website: https://www.wiktionary.org/
  1422. wikidata_id: Q151
  1423. - name: wikiversity
  1424. engine: mediawiki
  1425. shortcut: wv
  1426. categories: general
  1427. base_url: "https://{language}.wikiversity.org/"
  1428. search_type: text
  1429. disabled: true
  1430. about:
  1431. website: https://www.wikiversity.org/
  1432. wikidata_id: Q370
  1433. - name: wikivoyage
  1434. engine: mediawiki
  1435. shortcut: wy
  1436. categories: general
  1437. base_url: "https://{language}.wikivoyage.org/"
  1438. search_type: text
  1439. disabled: true
  1440. about:
  1441. website: https://www.wikivoyage.org/
  1442. wikidata_id: Q373
  1443. - name: wolframalpha
  1444. shortcut: wa
  1445. # You can use the engine using the official stable API, but you need an API
  1446. # key. See: https://products.wolframalpha.com/api/
  1447. #
  1448. # engine: wolframalpha_api
  1449. # api_key: ''
  1450. #
  1451. # Or you can use the html non-stable engine, activated by default
  1452. engine: wolframalpha_noapi
  1453. timeout: 6.0
  1454. categories: []
  1455. - name: dictzone
  1456. engine: dictzone
  1457. shortcut: dc
  1458. - name: mymemory translated
  1459. engine: translated
  1460. shortcut: tl
  1461. timeout: 5.0
  1462. # You can use without an API key, but you are limited to 1000 words/day
  1463. # See: https://mymemory.translated.net/doc/usagelimits.php
  1464. # api_key: ''
  1465. # Required dependency: mysql-connector-python
  1466. # - name: mysql
  1467. # engine: mysql_server
  1468. # database: mydatabase
  1469. # username: user
  1470. # password: pass
  1471. # limit: 10
  1472. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1473. # shortcut: mysql
  1474. - name: 1337x
  1475. engine: 1337x
  1476. shortcut: 1337x
  1477. disabled: true
  1478. - name: duden
  1479. engine: duden
  1480. shortcut: du
  1481. disabled: true
  1482. - name: seznam
  1483. shortcut: szn
  1484. engine: seznam
  1485. disabled: true
  1486. # - name: deepl
  1487. # engine: deepl
  1488. # shortcut: dpl
  1489. # # You can use the engine using the official stable API, but you need an API key
  1490. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  1491. # api_key: '' # required!
  1492. # timeout: 5.0
  1493. # disabled: true
  1494. - name: mojeek
  1495. shortcut: mjk
  1496. engine: xpath
  1497. paging: true
  1498. categories: [general, web]
  1499. search_url: https://www.mojeek.com/search?q={query}&s={pageno}&lang={lang}&lb={lang}
  1500. results_xpath: //ul[@class="results-standard"]/li/a[@class="ob"]
  1501. url_xpath: ./@href
  1502. title_xpath: ../h2/a
  1503. content_xpath: ..//p[@class="s"]
  1504. suggestion_xpath: //div[@class="top-info"]/p[@class="top-info spell"]/em/a
  1505. first_page_num: 0
  1506. page_size: 10
  1507. disabled: true
  1508. about:
  1509. website: https://www.mojeek.com/
  1510. wikidata_id: Q60747299
  1511. official_api_documentation: https://www.mojeek.com/services/api.html/
  1512. use_official_api: false
  1513. require_api_key: false
  1514. results: HTML
  1515. - name: naver
  1516. shortcut: nvr
  1517. categories: [general, web]
  1518. engine: xpath
  1519. paging: true
  1520. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1521. url_xpath: //a[@class="link_tit"]/@href
  1522. title_xpath: //a[@class="link_tit"]
  1523. content_xpath: //a[@class="total_dsc"]/div
  1524. first_page_num: 1
  1525. page_size: 10
  1526. disabled: true
  1527. about:
  1528. website: https://www.naver.com/
  1529. wikidata_id: Q485639
  1530. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1531. use_official_api: false
  1532. require_api_key: false
  1533. results: HTML
  1534. language: ko
  1535. - name: rubygems
  1536. shortcut: rbg
  1537. engine: xpath
  1538. paging: true
  1539. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1540. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1541. url_xpath: ./@href
  1542. title_xpath: ./span/h2
  1543. content_xpath: ./span/p
  1544. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1545. first_page_num: 1
  1546. categories: [it, packages]
  1547. disabled: true
  1548. about:
  1549. website: https://rubygems.org/
  1550. wikidata_id: Q1853420
  1551. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1552. use_official_api: false
  1553. require_api_key: false
  1554. results: HTML
  1555. - name: peertube
  1556. engine: peertube
  1557. shortcut: ptb
  1558. paging: true
  1559. # alternatives see: https://instances.joinpeertube.org/instances
  1560. # base_url: https://tube.4aem.com
  1561. categories: videos
  1562. disabled: true
  1563. timeout: 6.0
  1564. - name: mediathekviewweb
  1565. engine: mediathekviewweb
  1566. shortcut: mvw
  1567. disabled: true
  1568. # - name: yacy
  1569. # engine: yacy
  1570. # shortcut: ya
  1571. # base_url: http://localhost:8090
  1572. # # required if you aren't using HTTPS for your local yacy instance'
  1573. # enable_http: true
  1574. # timeout: 3.0
  1575. # # Yacy search mode. 'global' or 'local'.
  1576. # search_mode: 'global'
  1577. - name: rumble
  1578. engine: rumble
  1579. shortcut: ru
  1580. base_url: https://rumble.com/
  1581. paging: true
  1582. categories: videos
  1583. disabled: true
  1584. - name: wordnik
  1585. engine: wordnik
  1586. shortcut: def
  1587. base_url: https://www.wordnik.com/
  1588. categories: [dictionaries]
  1589. timeout: 5.0
  1590. - name: woxikon.de synonyme
  1591. engine: xpath
  1592. shortcut: woxi
  1593. categories: [dictionaries]
  1594. timeout: 5.0
  1595. disabled: true
  1596. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  1597. url_xpath: //div[@class="upper-synonyms"]/a/@href
  1598. content_xpath: //div[@class="synonyms-list-group"]
  1599. title_xpath: //div[@class="upper-synonyms"]/a
  1600. no_result_for_http_status: [404]
  1601. about:
  1602. website: https://www.woxikon.de/
  1603. wikidata_id: # No Wikidata ID
  1604. use_official_api: false
  1605. require_api_key: false
  1606. results: HTML
  1607. language: de
  1608. - name: sjp.pwn
  1609. engine: sjp
  1610. shortcut: sjp
  1611. base_url: https://sjp.pwn.pl/
  1612. timeout: 5.0
  1613. disabled: true
  1614. # wikimini: online encyclopedia for children
  1615. # The fulltext and title parameter is necessary for Wikimini because
  1616. # sometimes it will not show the results and redirect instead
  1617. - name: wikimini
  1618. engine: xpath
  1619. shortcut: wkmn
  1620. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  1621. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  1622. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  1623. content_xpath: //li/div[@class="searchresult"]
  1624. categories: general
  1625. disabled: true
  1626. about:
  1627. website: https://wikimini.org/
  1628. wikidata_id: Q3568032
  1629. use_official_api: false
  1630. require_api_key: false
  1631. results: HTML
  1632. language: fr
  1633. - name: wttr.in
  1634. engine: wttr
  1635. shortcut: wttr
  1636. timeout: 9.0
  1637. - name: brave
  1638. shortcut: brave
  1639. engine: xpath
  1640. paging: true
  1641. time_range_support: true
  1642. first_page_num: 0
  1643. time_range_url: "&tf={time_range_val}"
  1644. search_url: https://search.brave.com/search?q={query}&offset={pageno}&spellcheck=1{time_range}
  1645. url_xpath: //a[@class="result-header"]/@href
  1646. title_xpath: //span[@class="snippet-title"]
  1647. content_xpath: //p[1][@class="snippet-description"]
  1648. suggestion_xpath: //div[@class="text-gray h6"]/a
  1649. time_range_map:
  1650. day: 'pd'
  1651. week: 'pw'
  1652. month: 'pm'
  1653. year: 'py'
  1654. categories: [general, web]
  1655. disabled: true
  1656. headers:
  1657. Accept-Encoding: gzip, deflate
  1658. about:
  1659. website: https://brave.com/search/
  1660. wikidata_id: Q107355971
  1661. use_official_api: false
  1662. require_api_key: false
  1663. results: HTML
  1664. - name: petalsearch
  1665. shortcut: pts
  1666. engine: xpath
  1667. paging: true
  1668. search_url: https://petalsearch.com/search?query={query}&pn={pageno}
  1669. url_xpath: //div[@class='card-source']
  1670. title_xpath: //div[@class='title-name']
  1671. content_xpath: //div[@class='webpage-text']
  1672. first_page_num: 1
  1673. disabled: true
  1674. headers:
  1675. User-Agent: Mozilla/5.0 (Linux; Android 7.0;) \
  1676. AppleWebKit/537.36 (KHTML, like Gecko) \
  1677. Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)
  1678. about:
  1679. website: https://petalsearch.com/
  1680. wikidata_id: Q104399280
  1681. use_official_api: false
  1682. require_api_key: false
  1683. results: HTML
  1684. - name: petalsearch images
  1685. engine: petal_images
  1686. shortcut: ptsi
  1687. disabled: true
  1688. timeout: 3.0
  1689. - name: lib.rs
  1690. shortcut: lrs
  1691. engine: xpath
  1692. search_url: https://lib.rs/search?q={query}
  1693. results_xpath: /html/body/main/div/ol/li/a
  1694. url_xpath: ./@href
  1695. title_xpath: ./div[@class="h"]/h4
  1696. content_xpath: ./div[@class="h"]/p
  1697. categories: [it, packages]
  1698. disabled: true
  1699. about:
  1700. website: https://lib.rs
  1701. wikidata_id: Q113486010
  1702. use_official_api: false
  1703. require_api_key: false
  1704. results: HTML
  1705. - name: sourcehut
  1706. shortcut: srht
  1707. engine: xpath
  1708. paging: true
  1709. search_url: https://sr.ht/projects?page={pageno}&search={query}
  1710. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  1711. url_xpath: ./h4/a[2]/@href
  1712. title_xpath: ./h4/a[2]
  1713. content_xpath: ./p
  1714. first_page_num: 1
  1715. categories: [it, repos]
  1716. disabled: true
  1717. about:
  1718. website: https://sr.ht
  1719. wikidata_id: Q78514485
  1720. official_api_documentation: https://man.sr.ht/
  1721. use_official_api: false
  1722. require_api_key: false
  1723. results: HTML
  1724. - name: goo
  1725. shortcut: goo
  1726. engine: xpath
  1727. paging: true
  1728. search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
  1729. url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
  1730. title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
  1731. content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
  1732. first_page_num: 0
  1733. categories: [general, web]
  1734. disabled: true
  1735. timeout: 4.0
  1736. about:
  1737. website: https://search.goo.ne.jp
  1738. wikidata_id: Q249044
  1739. use_official_api: false
  1740. require_api_key: false
  1741. results: HTML
  1742. language: ja
  1743. # Doku engine lets you access to any Doku wiki instance:
  1744. # A public one or a privete/corporate one.
  1745. # - name: ubuntuwiki
  1746. # engine: doku
  1747. # shortcut: uw
  1748. # base_url: 'https://doc.ubuntu-fr.org'
  1749. # Be careful when enabling this engine if you are
  1750. # running a public instance. Do not expose any sensitive
  1751. # information. You can restrict access by configuring a list
  1752. # of access tokens under tokens.
  1753. # - name: git grep
  1754. # engine: command
  1755. # command: ['git', 'grep', '{{QUERY}}']
  1756. # shortcut: gg
  1757. # tokens: []
  1758. # disabled: true
  1759. # delimiter:
  1760. # chars: ':'
  1761. # keys: ['filepath', 'code']
  1762. # Be careful when enabling this engine if you are
  1763. # running a public instance. Do not expose any sensitive
  1764. # information. You can restrict access by configuring a list
  1765. # of access tokens under tokens.
  1766. # - name: locate
  1767. # engine: command
  1768. # command: ['locate', '{{QUERY}}']
  1769. # shortcut: loc
  1770. # tokens: []
  1771. # disabled: true
  1772. # delimiter:
  1773. # chars: ' '
  1774. # keys: ['line']
  1775. # Be careful when enabling this engine if you are
  1776. # running a public instance. Do not expose any sensitive
  1777. # information. You can restrict access by configuring a list
  1778. # of access tokens under tokens.
  1779. # - name: find
  1780. # engine: command
  1781. # command: ['find', '.', '-name', '{{QUERY}}']
  1782. # query_type: path
  1783. # shortcut: fnd
  1784. # tokens: []
  1785. # disabled: true
  1786. # delimiter:
  1787. # chars: ' '
  1788. # keys: ['line']
  1789. # Be careful when enabling this engine if you are
  1790. # running a public instance. Do not expose any sensitive
  1791. # information. You can restrict access by configuring a list
  1792. # of access tokens under tokens.
  1793. # - name: pattern search in files
  1794. # engine: command
  1795. # command: ['fgrep', '{{QUERY}}']
  1796. # shortcut: fgr
  1797. # tokens: []
  1798. # disabled: true
  1799. # delimiter:
  1800. # chars: ' '
  1801. # keys: ['line']
  1802. # Be careful when enabling this engine if you are
  1803. # running a public instance. Do not expose any sensitive
  1804. # information. You can restrict access by configuring a list
  1805. # of access tokens under tokens.
  1806. # - name: regex search in files
  1807. # engine: command
  1808. # command: ['grep', '{{QUERY}}']
  1809. # shortcut: gr
  1810. # tokens: []
  1811. # disabled: true
  1812. # delimiter:
  1813. # chars: ' '
  1814. # keys: ['line']
  1815. doi_resolvers:
  1816. oadoi.org: 'https://oadoi.org/'
  1817. doi.org: 'https://doi.org/'
  1818. doai.io: 'https://dissem.in/'
  1819. sci-hub.se: 'https://sci-hub.se/'
  1820. sci-hub.st: 'https://sci-hub.st/'
  1821. sci-hub.ru: 'https://sci-hub.ru/'
  1822. default_doi_resolver: 'oadoi.org'