settings.yml 54 KB

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