settings.yml 56 KB

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