settings.yml 54 KB

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