settings.yml 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538
  1. general:
  2. # Debug mode, only for development. Is overwritten by ${SEARXNG_DEBUG}
  3. debug: false
  4. # displayed name
  5. instance_name: "SearXNG"
  6. # For example: https://example.com/privacy
  7. privacypolicy_url: false
  8. # use true to use your own donation page written in searx/info/en/donate.md
  9. # use false to disable the donation link
  10. donation_url: false
  11. # mailto:contact@example.com
  12. contact_url: false
  13. # record stats
  14. enable_metrics: true
  15. # expose stats in open metrics format at /metrics
  16. # leave empty to disable (no password set)
  17. # open_metrics: <password>
  18. open_metrics: ''
  19. brand:
  20. new_issue_url: https://github.com/searxng/searxng/issues/new
  21. docs_url: https://docs.searxng.org/
  22. public_instances: https://searx.space
  23. wiki_url: https://github.com/searxng/searxng/wiki
  24. issue_url: https://github.com/searxng/searxng/issues
  25. # custom:
  26. # maintainer: "Jon Doe"
  27. # # Custom entries in the footer: [title]: [link]
  28. # links:
  29. # Uptime: https://uptime.searxng.org/history/darmarit-org
  30. # About: "https://searxng.org"
  31. search:
  32. # Filter results. 0: None, 1: Moderate, 2: Strict
  33. safe_search: 0
  34. # Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "yandex", "mwmbl",
  35. # "seznam", "startpage", "stract", "swisscows", "qwant", "wikipedia" - leave blank to turn it off
  36. # by default.
  37. autocomplete: ""
  38. # minimun characters to type before autocompleter starts
  39. autocomplete_min: 4
  40. # backend for the favicon near URL in search results.
  41. # Available resolvers: "allesedv", "duckduckgo", "google", "yandex" - leave blank to turn it off by default.
  42. favicon_resolver: ""
  43. # Default search language - leave blank to detect from browser information or
  44. # use codes from 'languages.py'
  45. default_lang: "auto"
  46. # max_page: 0 # if engine supports paging, 0 means unlimited numbers of pages
  47. # Available languages
  48. # languages:
  49. # - all
  50. # - en
  51. # - en-US
  52. # - de
  53. # - it-IT
  54. # - fr
  55. # - fr-BE
  56. # ban time in seconds after engine errors
  57. ban_time_on_fail: 5
  58. # max ban time in seconds after engine errors
  59. max_ban_time_on_fail: 120
  60. suspended_times:
  61. # Engine suspension time after error (in seconds; set to 0 to disable)
  62. # For error "Access denied" and "HTTP error [402, 403]"
  63. SearxEngineAccessDenied: 86400
  64. # For error "CAPTCHA"
  65. SearxEngineCaptcha: 86400
  66. # For error "Too many request" and "HTTP error 429"
  67. SearxEngineTooManyRequests: 3600
  68. # Cloudflare CAPTCHA
  69. cf_SearxEngineCaptcha: 1296000
  70. cf_SearxEngineAccessDenied: 86400
  71. # ReCAPTCHA
  72. recaptcha_SearxEngineCaptcha: 604800
  73. # remove format to deny access, use lower case.
  74. # formats: [html, csv, json, rss]
  75. formats:
  76. - html
  77. server:
  78. # Is overwritten by ${SEARXNG_PORT} and ${SEARXNG_BIND_ADDRESS}
  79. port: 8888
  80. bind_address: "127.0.0.1"
  81. # public URL of the instance, to ensure correct inbound links. Is overwritten
  82. # by ${SEARXNG_URL}.
  83. base_url: false # "http://example.com/location"
  84. # rate limit the number of request on the instance, block some bots.
  85. # Is overwritten by ${SEARXNG_LIMITER}
  86. limiter: false
  87. # enable features designed only for public instances.
  88. # Is overwritten by ${SEARXNG_PUBLIC_INSTANCE}
  89. public_instance: false
  90. # If your instance owns a /etc/searxng/settings.yml file, then set the following
  91. # values there.
  92. secret_key: "ultrasecretkey" # Is overwritten by ${SEARXNG_SECRET}
  93. # Proxy image results through SearXNG. Is overwritten by ${SEARXNG_IMAGE_PROXY}
  94. image_proxy: false
  95. # 1.0 and 1.1 are supported
  96. http_protocol_version: "1.0"
  97. # POST queries are more secure as they don't show up in history but may cause
  98. # problems when using Firefox containers
  99. method: "POST"
  100. default_http_headers:
  101. X-Content-Type-Options: nosniff
  102. X-Download-Options: noopen
  103. X-Robots-Tag: noindex, nofollow
  104. Referrer-Policy: no-referrer
  105. redis:
  106. # URL to connect redis database. Is overwritten by ${SEARXNG_REDIS_URL}.
  107. # https://docs.searxng.org/admin/settings/settings_redis.html#settings-redis
  108. url: false
  109. ui:
  110. # Custom static path - leave it blank if you didn't change
  111. static_path: ""
  112. # Is overwritten by ${SEARXNG_STATIC_USE_HASH}.
  113. static_use_hash: false
  114. # Custom templates path - leave it blank if you didn't change
  115. templates_path: ""
  116. # query_in_title: When true, the result page's titles contains the query
  117. # it decreases the privacy, since the browser can records the page titles.
  118. query_in_title: false
  119. # infinite_scroll: When true, automatically loads the next page when scrolling to bottom of the current page.
  120. infinite_scroll: false
  121. # ui theme
  122. default_theme: simple
  123. # center the results ?
  124. center_alignment: false
  125. # URL prefix of the internet archive, don't forget trailing slash (if needed).
  126. # cache_url: "https://webcache.googleusercontent.com/search?q=cache:"
  127. # Default interface locale - leave blank to detect from browser information or
  128. # use codes from the 'locales' config section
  129. default_locale: ""
  130. # Open result links in a new tab by default
  131. # results_on_new_tab: false
  132. theme_args:
  133. # style of simple theme: auto, light, dark
  134. simple_style: auto
  135. # Perform search immediately if a category selected.
  136. # Disable to select multiple categories at once and start the search manually.
  137. search_on_category_select: true
  138. # Hotkeys: default or vim
  139. hotkeys: default
  140. # URL formatting: pretty, full or host
  141. url_formatting: pretty
  142. # Lock arbitrary settings on the preferences page. To find the ID of the user
  143. # setting you want to lock, check the ID of the form on the page "preferences".
  144. #
  145. # preferences:
  146. # lock:
  147. # - language
  148. # - autocomplete
  149. # - method
  150. # - query_in_title
  151. # searx supports result proxification using an external service:
  152. # https://github.com/asciimoo/morty uncomment below section if you have running
  153. # morty proxy the key is base64 encoded (keep the !!binary notation)
  154. # Note: since commit af77ec3, morty accepts a base64 encoded key.
  155. #
  156. # result_proxy:
  157. # url: http://127.0.0.1:3000/
  158. # # the key is a base64 encoded string, the YAML !!binary prefix is optional
  159. # key: !!binary "your_morty_proxy_key"
  160. # # [true|false] enable the "proxy" button next to each result
  161. # proxify_results: true
  162. # communication with search engines
  163. #
  164. outgoing:
  165. # default timeout in seconds, can be override by engine
  166. request_timeout: 3.0
  167. # the maximum timeout in seconds
  168. # max_request_timeout: 10.0
  169. # suffix of searx_useragent, could contain information like an email address
  170. # to the administrator
  171. useragent_suffix: ""
  172. # The maximum number of concurrent connections that may be established.
  173. pool_connections: 100
  174. # Allow the connection pool to maintain keep-alive connections below this
  175. # point.
  176. pool_maxsize: 20
  177. # See https://www.python-httpx.org/http2/
  178. enable_http2: true
  179. # uncomment below section if you want to use a custom server certificate
  180. # see https://www.python-httpx.org/advanced/#changing-the-verification-defaults
  181. # and https://www.python-httpx.org/compatibility/#ssl-configuration
  182. # verify: ~/.mitmproxy/mitmproxy-ca-cert.cer
  183. #
  184. # uncomment below section if you want to use a proxyq see: SOCKS proxies
  185. # https://2.python-requests.org/en/latest/user/advanced/#proxies
  186. # are also supported: see
  187. # https://2.python-requests.org/en/latest/user/advanced/#socks
  188. #
  189. # proxies:
  190. # all://:
  191. # - http://proxy1:8080
  192. # - http://proxy2:8080
  193. #
  194. # using_tor_proxy: true
  195. #
  196. # Extra seconds to add in order to account for the time taken by the proxy
  197. #
  198. # extra_proxy_timeout: 10
  199. #
  200. # uncomment below section only if you have more than one network interface
  201. # which can be the source of outgoing search requests
  202. #
  203. # source_ips:
  204. # - 1.1.1.1
  205. # - 1.1.1.2
  206. # - fe80::/126
  207. # External plugin configuration, for more details see
  208. # https://docs.searxng.org/dev/plugins.html
  209. #
  210. # plugins:
  211. # - plugin1
  212. # - plugin2
  213. # - ...
  214. # Comment or un-comment plugin to activate / deactivate by default.
  215. #
  216. # enabled_plugins:
  217. # # these plugins are enabled if nothing is configured ..
  218. # - 'Basic Calculator'
  219. # - 'Hash plugin'
  220. # - 'Self Information'
  221. # - 'Tracker URL remover'
  222. # - 'Unit converter plugin'
  223. # - 'Ahmia blacklist' # activation depends on outgoing.using_tor_proxy
  224. # # these plugins are disabled if nothing is configured ..
  225. # - 'Hostnames plugin' # see 'hostnames' configuration below
  226. # - 'Open Access DOI rewrite'
  227. # - 'Tor check plugin'
  228. # Configuration of the "Hostnames plugin":
  229. #
  230. # hostnames:
  231. # replace:
  232. # '(.*\.)?youtube\.com$': 'invidious.example.com'
  233. # '(.*\.)?youtu\.be$': 'invidious.example.com'
  234. # '(.*\.)?reddit\.com$': 'teddit.example.com'
  235. # '(.*\.)?redd\.it$': 'teddit.example.com'
  236. # '(www\.)?twitter\.com$': 'nitter.example.com'
  237. # remove:
  238. # - '(.*\.)?facebook.com$'
  239. # low_priority:
  240. # - '(.*\.)?google(\..*)?$'
  241. # high_priority:
  242. # - '(.*\.)?wikipedia.org$'
  243. #
  244. # Alternatively you can use external files for configuring the "Hostnames plugin":
  245. #
  246. # hostnames:
  247. # replace: 'rewrite-hosts.yml'
  248. #
  249. # Content of 'rewrite-hosts.yml' (place the file in the same directory as 'settings.yml'):
  250. # '(.*\.)?youtube\.com$': 'invidious.example.com'
  251. # '(.*\.)?youtu\.be$': 'invidious.example.com'
  252. #
  253. checker:
  254. # disable checker when in debug mode
  255. off_when_debug: true
  256. # use "scheduling: false" to disable scheduling
  257. # scheduling: interval or int
  258. # to activate the scheduler:
  259. # * uncomment "scheduling" section
  260. # * add "cache2 = name=searxngcache,items=2000,blocks=2000,blocksize=4096,bitmap=1"
  261. # to your uwsgi.ini
  262. # scheduling:
  263. # start_after: [300, 1800] # delay to start the first run of the checker
  264. # every: [86400, 90000] # how often the checker runs
  265. # additional tests: only for the YAML anchors (see the engines section)
  266. #
  267. additional_tests:
  268. rosebud: &test_rosebud
  269. matrix:
  270. query: rosebud
  271. lang: en
  272. result_container:
  273. - not_empty
  274. - ['one_title_contains', 'citizen kane']
  275. test:
  276. - unique_results
  277. android: &test_android
  278. matrix:
  279. query: ['android']
  280. lang: ['en', 'de', 'fr', 'zh-CN']
  281. result_container:
  282. - not_empty
  283. - ['one_title_contains', 'google']
  284. test:
  285. - unique_results
  286. # tests: only for the YAML anchors (see the engines section)
  287. tests:
  288. infobox: &tests_infobox
  289. infobox:
  290. matrix:
  291. query: ["linux", "new york", "bbc"]
  292. result_container:
  293. - has_infobox
  294. categories_as_tabs:
  295. general:
  296. images:
  297. videos:
  298. news:
  299. map:
  300. music:
  301. it:
  302. science:
  303. files:
  304. social media:
  305. engines:
  306. - name: 9gag
  307. engine: 9gag
  308. shortcut: 9g
  309. disabled: true
  310. - name: adobe stock
  311. engine: adobe_stock
  312. shortcut: asi
  313. categories: ["images"]
  314. # https://docs.searxng.org/dev/engines/online/adobe_stock.html
  315. adobe_order: relevance
  316. adobe_content_types: ["photo", "illustration", "zip_vector", "template", "3d", "image"]
  317. timeout: 6
  318. disabled: true
  319. - name: adobe stock video
  320. engine: adobe_stock
  321. shortcut: asv
  322. network: adobe stock
  323. categories: ["videos"]
  324. adobe_order: relevance
  325. adobe_content_types: ["video"]
  326. timeout: 6
  327. disabled: true
  328. - name: adobe stock audio
  329. engine: adobe_stock
  330. shortcut: asa
  331. network: adobe stock
  332. categories: ["music"]
  333. adobe_order: relevance
  334. adobe_content_types: ["audio"]
  335. timeout: 6
  336. disabled: true
  337. - name: alexandria
  338. engine: json_engine
  339. shortcut: alx
  340. categories: general
  341. paging: true
  342. search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
  343. results_query: results
  344. title_query: title
  345. url_query: url
  346. content_query: snippet
  347. timeout: 1.5
  348. disabled: true
  349. about:
  350. website: https://alexandria.org/
  351. official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
  352. use_official_api: true
  353. require_api_key: false
  354. results: JSON
  355. - name: alpine linux packages
  356. engine: alpinelinux
  357. disabled: true
  358. shortcut: alp
  359. - name: annas archive
  360. engine: annas_archive
  361. disabled: true
  362. shortcut: aa
  363. # - name: annas articles
  364. # engine: annas_archive
  365. # shortcut: aaa
  366. # # https://docs.searxng.org/dev/engines/online/annas_archive.html
  367. # aa_content: 'magazine' # book_fiction, book_unknown, book_nonfiction, book_comic
  368. # aa_ext: 'pdf' # pdf, epub, ..
  369. # aa_sort: oldest' # newest, oldest, largest, smallest
  370. - name: apk mirror
  371. engine: apkmirror
  372. timeout: 4.0
  373. shortcut: apkm
  374. disabled: true
  375. - name: apple app store
  376. engine: apple_app_store
  377. shortcut: aps
  378. disabled: true
  379. # Requires Tor
  380. - name: ahmia
  381. engine: ahmia
  382. categories: onions
  383. enable_http: true
  384. shortcut: ah
  385. - name: anaconda
  386. engine: xpath
  387. paging: true
  388. first_page_num: 0
  389. search_url: https://anaconda.org/search?q={query}&page={pageno}
  390. results_xpath: //tbody/tr
  391. url_xpath: ./td/h5/a[last()]/@href
  392. title_xpath: ./td/h5
  393. content_xpath: ./td[h5]/text()
  394. categories: it
  395. timeout: 6.0
  396. shortcut: conda
  397. disabled: true
  398. - name: arch linux wiki
  399. engine: archlinux
  400. shortcut: al
  401. - name: artic
  402. engine: artic
  403. shortcut: arc
  404. timeout: 4.0
  405. - name: arxiv
  406. engine: arxiv
  407. shortcut: arx
  408. timeout: 4.0
  409. - name: ask
  410. engine: ask
  411. shortcut: ask
  412. disabled: true
  413. # tmp suspended: dh key too small
  414. # - name: base
  415. # engine: base
  416. # shortcut: bs
  417. - name: bandcamp
  418. engine: bandcamp
  419. shortcut: bc
  420. categories: music
  421. - name: wikipedia
  422. engine: wikipedia
  423. shortcut: wp
  424. # add "list" to the array to get results in the results list
  425. display_type: ["infobox"]
  426. categories: [general]
  427. - name: bilibili
  428. engine: bilibili
  429. shortcut: bil
  430. disabled: true
  431. - name: bing
  432. engine: bing
  433. shortcut: bi
  434. disabled: true
  435. - name: bing images
  436. engine: bing_images
  437. shortcut: bii
  438. - name: bing news
  439. engine: bing_news
  440. shortcut: bin
  441. - name: bing videos
  442. engine: bing_videos
  443. shortcut: biv
  444. - name: bitbucket
  445. engine: xpath
  446. paging: true
  447. search_url: https://bitbucket.org/repo/all/{pageno}?name={query}
  448. url_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  449. title_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]
  450. content_xpath: //article[@class="repo-summary"]/p
  451. categories: [it, repos]
  452. timeout: 4.0
  453. disabled: true
  454. shortcut: bb
  455. about:
  456. website: https://bitbucket.org/
  457. wikidata_id: Q2493781
  458. official_api_documentation: https://developer.atlassian.com/bitbucket
  459. use_official_api: false
  460. require_api_key: false
  461. results: HTML
  462. - name: bpb
  463. engine: bpb
  464. shortcut: bpb
  465. disabled: true
  466. - name: btdigg
  467. engine: btdigg
  468. shortcut: bt
  469. disabled: true
  470. - name: openverse
  471. engine: openverse
  472. categories: images
  473. shortcut: opv
  474. - name: media.ccc.de
  475. engine: ccc_media
  476. shortcut: c3tv
  477. # We don't set language: de here because media.ccc.de is not just
  478. # for a German audience. It contains many English videos and many
  479. # German videos have English subtitles.
  480. disabled: true
  481. - name: chefkoch
  482. engine: chefkoch
  483. shortcut: chef
  484. # to show premium or plus results too:
  485. # skip_premium: false
  486. - name: cloudflareai
  487. engine: cloudflareai
  488. shortcut: cfai
  489. # get api token and accont id from https://developers.cloudflare.com/workers-ai/get-started/rest-api/
  490. cf_account_id: 'your_cf_accout_id'
  491. cf_ai_api: 'your_cf_api'
  492. # create your ai gateway by https://developers.cloudflare.com/ai-gateway/get-started/creating-gateway/
  493. cf_ai_gateway: 'your_cf_ai_gateway_name'
  494. # find the model name from https://developers.cloudflare.com/workers-ai/models/#text-generation
  495. cf_ai_model: 'ai_model_name'
  496. # custom your preferences
  497. # cf_ai_model_display_name: 'Cloudflare AI'
  498. # cf_ai_model_assistant: 'prompts_for_assistant_role'
  499. # cf_ai_model_system: 'prompts_for_system_role'
  500. timeout: 30
  501. disabled: true
  502. # - name: core.ac.uk
  503. # engine: core
  504. # categories: science
  505. # shortcut: cor
  506. # # get your API key from: https://core.ac.uk/api-keys/register/
  507. # api_key: 'unset'
  508. - name: cppreference
  509. engine: cppreference
  510. shortcut: cpp
  511. paging: false
  512. disabled: true
  513. - name: crossref
  514. engine: crossref
  515. shortcut: cr
  516. timeout: 30
  517. disabled: true
  518. - name: crowdview
  519. engine: json_engine
  520. shortcut: cv
  521. categories: general
  522. paging: false
  523. search_url: https://crowdview-next-js.onrender.com/api/search-v3?query={query}
  524. results_query: results
  525. url_query: link
  526. title_query: title
  527. content_query: snippet
  528. title_html_to_text: true
  529. content_html_to_text: true
  530. disabled: true
  531. about:
  532. website: https://crowdview.ai/
  533. - name: yep
  534. engine: yep
  535. shortcut: yep
  536. categories: general
  537. search_type: web
  538. timeout: 5
  539. disabled: true
  540. - name: yep images
  541. engine: yep
  542. shortcut: yepi
  543. categories: images
  544. search_type: images
  545. disabled: true
  546. - name: yep news
  547. engine: yep
  548. shortcut: yepn
  549. categories: news
  550. search_type: news
  551. disabled: true
  552. - name: curlie
  553. engine: xpath
  554. shortcut: cl
  555. categories: general
  556. disabled: true
  557. paging: true
  558. lang_all: ''
  559. search_url: https://curlie.org/search?q={query}&lang={lang}&start={pageno}&stime=92452189
  560. page_size: 20
  561. results_xpath: //div[@id="site-list-content"]/div[@class="site-item"]
  562. url_xpath: ./div[@class="title-and-desc"]/a/@href
  563. title_xpath: ./div[@class="title-and-desc"]/a/div
  564. content_xpath: ./div[@class="title-and-desc"]/div[@class="site-descr"]
  565. about:
  566. website: https://curlie.org/
  567. wikidata_id: Q60715723
  568. use_official_api: false
  569. require_api_key: false
  570. results: HTML
  571. - name: currency
  572. engine: currency_convert
  573. categories: general
  574. shortcut: cc
  575. - name: deezer
  576. engine: deezer
  577. shortcut: dz
  578. disabled: true
  579. - name: destatis
  580. engine: destatis
  581. shortcut: destat
  582. disabled: true
  583. - name: deviantart
  584. engine: deviantart
  585. shortcut: da
  586. timeout: 3.0
  587. - name: ddg definitions
  588. engine: duckduckgo_definitions
  589. shortcut: ddd
  590. weight: 2
  591. disabled: true
  592. tests: *tests_infobox
  593. # cloudflare protected
  594. # - name: digbt
  595. # engine: digbt
  596. # shortcut: dbt
  597. # timeout: 6.0
  598. # disabled: true
  599. - name: docker hub
  600. engine: docker_hub
  601. shortcut: dh
  602. categories: [it, packages]
  603. - name: encyclosearch
  604. engine: json_engine
  605. shortcut: es
  606. categories: general
  607. paging: true
  608. search_url: https://encyclosearch.org/encyclosphere/search?q={query}&page={pageno}&resultsPerPage=15
  609. results_query: Results
  610. url_query: SourceURL
  611. title_query: Title
  612. content_query: Description
  613. disabled: true
  614. about:
  615. website: https://encyclosearch.org
  616. official_api_documentation: https://encyclosearch.org/docs/#/rest-api
  617. use_official_api: true
  618. require_api_key: false
  619. results: JSON
  620. - name: erowid
  621. engine: xpath
  622. paging: true
  623. first_page_num: 0
  624. page_size: 30
  625. search_url: https://www.erowid.org/search.php?q={query}&s={pageno}
  626. url_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  627. title_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  628. content_xpath: //dl[@class="results-list"]/dd[@class="result-details"]
  629. categories: []
  630. shortcut: ew
  631. disabled: true
  632. about:
  633. website: https://www.erowid.org/
  634. wikidata_id: Q1430691
  635. official_api_documentation:
  636. use_official_api: false
  637. require_api_key: false
  638. results: HTML
  639. # - name: elasticsearch
  640. # shortcut: es
  641. # engine: elasticsearch
  642. # base_url: http://localhost:9200
  643. # username: elastic
  644. # password: changeme
  645. # index: my-index
  646. # # available options: match, simple_query_string, term, terms, custom
  647. # query_type: match
  648. # # if query_type is set to custom, provide your query here
  649. # #custom_query_json: {"query":{"match_all": {}}}
  650. # #show_metadata: false
  651. # disabled: true
  652. - name: wikidata
  653. engine: wikidata
  654. shortcut: wd
  655. timeout: 3.0
  656. weight: 2
  657. # add "list" to the array to get results in the results list
  658. display_type: ["infobox"]
  659. tests: *tests_infobox
  660. categories: [general]
  661. - name: duckduckgo
  662. engine: duckduckgo
  663. shortcut: ddg
  664. - name: duckduckgo images
  665. engine: duckduckgo_extra
  666. categories: [images, web]
  667. ddg_category: images
  668. shortcut: ddi
  669. disabled: true
  670. - name: duckduckgo videos
  671. engine: duckduckgo_extra
  672. categories: [videos, web]
  673. ddg_category: videos
  674. shortcut: ddv
  675. disabled: true
  676. - name: duckduckgo news
  677. engine: duckduckgo_extra
  678. categories: [news, web]
  679. ddg_category: news
  680. shortcut: ddn
  681. disabled: true
  682. - name: duckduckgo weather
  683. engine: duckduckgo_weather
  684. shortcut: ddw
  685. disabled: true
  686. - name: apple maps
  687. engine: apple_maps
  688. shortcut: apm
  689. disabled: true
  690. timeout: 5.0
  691. - name: emojipedia
  692. engine: emojipedia
  693. timeout: 4.0
  694. shortcut: em
  695. disabled: true
  696. - name: tineye
  697. engine: tineye
  698. shortcut: tin
  699. timeout: 9.0
  700. disabled: true
  701. - name: etymonline
  702. engine: xpath
  703. paging: true
  704. search_url: https://etymonline.com/search?page={pageno}&q={query}
  705. url_xpath: //a[contains(@class, "word__name--")]/@href
  706. title_xpath: //a[contains(@class, "word__name--")]
  707. content_xpath: //section[contains(@class, "word__defination")]
  708. first_page_num: 1
  709. shortcut: et
  710. categories: [dictionaries]
  711. about:
  712. website: https://www.etymonline.com/
  713. wikidata_id: Q1188617
  714. official_api_documentation:
  715. use_official_api: false
  716. require_api_key: false
  717. results: HTML
  718. # - name: ebay
  719. # engine: ebay
  720. # shortcut: eb
  721. # base_url: 'https://www.ebay.com'
  722. # disabled: true
  723. # timeout: 5
  724. - name: 1x
  725. engine: www1x
  726. shortcut: 1x
  727. timeout: 3.0
  728. disabled: true
  729. - name: fdroid
  730. engine: fdroid
  731. shortcut: fd
  732. disabled: true
  733. - name: findthatmeme
  734. engine: findthatmeme
  735. shortcut: ftm
  736. disabled: true
  737. - name: flickr
  738. categories: images
  739. shortcut: fl
  740. # You can use the engine using the official stable API, but you need an API
  741. # key, see: https://www.flickr.com/services/apps/create/
  742. # engine: flickr
  743. # api_key: 'apikey' # required!
  744. # Or you can use the html non-stable engine, activated by default
  745. engine: flickr_noapi
  746. - name: free software directory
  747. engine: mediawiki
  748. shortcut: fsd
  749. categories: [it, software wikis]
  750. base_url: https://directory.fsf.org/
  751. search_type: title
  752. timeout: 5.0
  753. disabled: true
  754. about:
  755. website: https://directory.fsf.org/
  756. wikidata_id: Q2470288
  757. # - name: freesound
  758. # engine: freesound
  759. # shortcut: fnd
  760. # disabled: true
  761. # timeout: 15.0
  762. # API key required, see: https://freesound.org/docs/api/overview.html
  763. # api_key: MyAPIkey
  764. - name: frinkiac
  765. engine: frinkiac
  766. shortcut: frk
  767. disabled: true
  768. - name: fyyd
  769. engine: fyyd
  770. shortcut: fy
  771. timeout: 8.0
  772. disabled: true
  773. - name: geizhals
  774. engine: geizhals
  775. shortcut: geiz
  776. disabled: true
  777. - name: genius
  778. engine: genius
  779. shortcut: gen
  780. - name: gentoo
  781. engine: mediawiki
  782. shortcut: ge
  783. categories: ["it", "software wikis"]
  784. base_url: "https://wiki.gentoo.org/"
  785. api_path: "api.php"
  786. search_type: text
  787. timeout: 10
  788. - name: gitlab
  789. engine: gitlab
  790. base_url: https://gitlab.com
  791. shortcut: gl
  792. disabled: true
  793. about:
  794. website: https://gitlab.com/
  795. wikidata_id: Q16639197
  796. # - name: gnome
  797. # engine: gitlab
  798. # base_url: https://gitlab.gnome.org
  799. # shortcut: gn
  800. # about:
  801. # website: https://gitlab.gnome.org
  802. # wikidata_id: Q44316
  803. - name: github
  804. engine: github
  805. shortcut: gh
  806. - name: codeberg
  807. # https://docs.searxng.org/dev/engines/online/gitea.html
  808. engine: gitea
  809. base_url: https://codeberg.org
  810. shortcut: cb
  811. disabled: true
  812. - name: gitea.com
  813. engine: gitea
  814. base_url: https://gitea.com
  815. shortcut: gitea
  816. disabled: true
  817. - name: goodreads
  818. engine: goodreads
  819. shortcut: good
  820. timeout: 4.0
  821. disabled: true
  822. - name: google
  823. engine: google
  824. shortcut: go
  825. # additional_tests:
  826. # android: *test_android
  827. - name: google images
  828. engine: google_images
  829. shortcut: goi
  830. # additional_tests:
  831. # android: *test_android
  832. # dali:
  833. # matrix:
  834. # query: ['Dali Christ']
  835. # lang: ['en', 'de', 'fr', 'zh-CN']
  836. # result_container:
  837. # - ['one_title_contains', 'Salvador']
  838. - name: google news
  839. engine: google_news
  840. shortcut: gon
  841. # additional_tests:
  842. # android: *test_android
  843. - name: google videos
  844. engine: google_videos
  845. shortcut: gov
  846. # additional_tests:
  847. # android: *test_android
  848. - name: google scholar
  849. engine: google_scholar
  850. shortcut: gos
  851. - name: google play apps
  852. engine: google_play
  853. categories: [files, apps]
  854. shortcut: gpa
  855. play_categ: apps
  856. disabled: true
  857. - name: google play movies
  858. engine: google_play
  859. categories: videos
  860. shortcut: gpm
  861. play_categ: movies
  862. disabled: true
  863. - name: material icons
  864. engine: material_icons
  865. categories: images
  866. shortcut: mi
  867. disabled: true
  868. - name: habrahabr
  869. engine: xpath
  870. paging: true
  871. search_url: https://habr.com/en/search/page{pageno}/?q={query}
  872. results_xpath: //article[contains(@class, "tm-articles-list__item")]
  873. url_xpath: .//a[@class="tm-title__link"]/@href
  874. title_xpath: .//a[@class="tm-title__link"]
  875. content_xpath: .//div[contains(@class, "article-formatted-body")]
  876. categories: it
  877. timeout: 4.0
  878. disabled: true
  879. shortcut: habr
  880. about:
  881. website: https://habr.com/
  882. wikidata_id: Q4494434
  883. official_api_documentation: https://habr.com/en/docs/help/api/
  884. use_official_api: false
  885. require_api_key: false
  886. results: HTML
  887. - name: hackernews
  888. engine: hackernews
  889. shortcut: hn
  890. disabled: true
  891. - name: hex
  892. engine: hex
  893. shortcut: hex
  894. disabled: true
  895. # Valid values: name inserted_at updated_at total_downloads recent_downloads
  896. sort_criteria: "recent_downloads"
  897. page_size: 10
  898. - name: crates.io
  899. engine: crates
  900. shortcut: crates
  901. disabled: true
  902. timeout: 6.0
  903. - name: hoogle
  904. engine: xpath
  905. search_url: https://hoogle.haskell.org/?hoogle={query}
  906. results_xpath: '//div[@class="result"]'
  907. title_xpath: './/div[@class="ans"]//a'
  908. url_xpath: './/div[@class="ans"]//a/@href'
  909. content_xpath: './/div[@class="from"]'
  910. page_size: 20
  911. categories: [it, packages]
  912. shortcut: ho
  913. about:
  914. website: https://hoogle.haskell.org/
  915. wikidata_id: Q34010
  916. official_api_documentation: https://hackage.haskell.org/api
  917. use_official_api: false
  918. require_api_key: false
  919. results: JSON
  920. - name: imdb
  921. engine: imdb
  922. shortcut: imdb
  923. timeout: 6.0
  924. disabled: true
  925. - name: imgur
  926. engine: imgur
  927. shortcut: img
  928. disabled: true
  929. - name: ina
  930. engine: ina
  931. shortcut: in
  932. timeout: 6.0
  933. disabled: true
  934. - name: invidious
  935. engine: invidious
  936. # Instanes will be selected randomly, see https://api.invidious.io/ for
  937. # instances that are stable (good uptime) and close to you.
  938. base_url:
  939. - https://invidious.io.lol
  940. - https://invidious.fdn.fr
  941. - https://yt.artemislena.eu
  942. - https://invidious.tiekoetter.com
  943. - https://invidious.flokinet.to
  944. - https://vid.puffyan.us
  945. - https://invidious.privacydev.net
  946. - https://inv.tux.pizza
  947. shortcut: iv
  948. timeout: 3.0
  949. disabled: true
  950. - name: jisho
  951. engine: jisho
  952. shortcut: js
  953. timeout: 3.0
  954. disabled: true
  955. - name: kickass
  956. engine: kickass
  957. base_url:
  958. - https://kickasstorrents.to
  959. - https://kickasstorrents.cr
  960. - https://kickasstorrent.cr
  961. - https://kickass.sx
  962. - https://kat.am
  963. shortcut: kc
  964. timeout: 4.0
  965. - name: lemmy communities
  966. engine: lemmy
  967. lemmy_type: Communities
  968. shortcut: leco
  969. - name: lemmy users
  970. engine: lemmy
  971. network: lemmy communities
  972. lemmy_type: Users
  973. shortcut: leus
  974. - name: lemmy posts
  975. engine: lemmy
  976. network: lemmy communities
  977. lemmy_type: Posts
  978. shortcut: lepo
  979. - name: lemmy comments
  980. engine: lemmy
  981. network: lemmy communities
  982. lemmy_type: Comments
  983. shortcut: lecom
  984. - name: library genesis
  985. engine: xpath
  986. # search_url: https://libgen.is/search.php?req={query}
  987. search_url: https://libgen.rs/search.php?req={query}
  988. url_xpath: //a[contains(@href,"book/index.php?md5")]/@href
  989. title_xpath: //a[contains(@href,"book/")]/text()[1]
  990. content_xpath: //td/a[1][contains(@href,"=author")]/text()
  991. categories: files
  992. timeout: 7.0
  993. disabled: true
  994. shortcut: lg
  995. about:
  996. website: https://libgen.fun/
  997. wikidata_id: Q22017206
  998. official_api_documentation:
  999. use_official_api: false
  1000. require_api_key: false
  1001. results: HTML
  1002. - name: z-library
  1003. engine: zlibrary
  1004. shortcut: zlib
  1005. categories: files
  1006. timeout: 7.0
  1007. - name: library of congress
  1008. engine: loc
  1009. shortcut: loc
  1010. categories: images
  1011. - name: libretranslate
  1012. engine: libretranslate
  1013. # https://github.com/LibreTranslate/LibreTranslate?tab=readme-ov-file#mirrors
  1014. base_url:
  1015. - https://translate.terraprint.co
  1016. - https://trans.zillyhuhn.com
  1017. # api_key: abc123
  1018. shortcut: lt
  1019. disabled: true
  1020. - name: lingva
  1021. engine: lingva
  1022. shortcut: lv
  1023. # set lingva instance in url, by default it will use the official instance
  1024. # url: https://lingva.thedaviddelta.com
  1025. - name: lobste.rs
  1026. engine: xpath
  1027. search_url: https://lobste.rs/search?q={query}&what=stories&order=relevance
  1028. results_xpath: //li[contains(@class, "story")]
  1029. url_xpath: .//a[@class="u-url"]/@href
  1030. title_xpath: .//a[@class="u-url"]
  1031. content_xpath: .//a[@class="domain"]
  1032. categories: it
  1033. shortcut: lo
  1034. timeout: 5.0
  1035. disabled: true
  1036. about:
  1037. website: https://lobste.rs/
  1038. wikidata_id: Q60762874
  1039. official_api_documentation:
  1040. use_official_api: false
  1041. require_api_key: false
  1042. results: HTML
  1043. - name: mastodon users
  1044. engine: mastodon
  1045. mastodon_type: accounts
  1046. base_url: https://mastodon.social
  1047. shortcut: mau
  1048. - name: mastodon hashtags
  1049. engine: mastodon
  1050. mastodon_type: hashtags
  1051. base_url: https://mastodon.social
  1052. shortcut: mah
  1053. # - name: matrixrooms
  1054. # engine: mrs
  1055. # # https://docs.searxng.org/dev/engines/online/mrs.html
  1056. # # base_url: https://mrs-api-host
  1057. # shortcut: mtrx
  1058. # disabled: true
  1059. - name: mdn
  1060. shortcut: mdn
  1061. engine: json_engine
  1062. categories: [it]
  1063. paging: true
  1064. search_url: https://developer.mozilla.org/api/v1/search?q={query}&page={pageno}
  1065. results_query: documents
  1066. url_query: mdn_url
  1067. url_prefix: https://developer.mozilla.org
  1068. title_query: title
  1069. content_query: summary
  1070. about:
  1071. website: https://developer.mozilla.org
  1072. wikidata_id: Q3273508
  1073. official_api_documentation: null
  1074. use_official_api: false
  1075. require_api_key: false
  1076. results: JSON
  1077. - name: metacpan
  1078. engine: metacpan
  1079. shortcut: cpan
  1080. disabled: true
  1081. number_of_results: 20
  1082. # - name: meilisearch
  1083. # engine: meilisearch
  1084. # shortcut: mes
  1085. # enable_http: true
  1086. # base_url: http://localhost:7700
  1087. # index: my-index
  1088. - name: mixcloud
  1089. engine: mixcloud
  1090. shortcut: mc
  1091. # MongoDB engine
  1092. # Required dependency: pymongo
  1093. # - name: mymongo
  1094. # engine: mongodb
  1095. # shortcut: md
  1096. # exact_match_only: false
  1097. # host: '127.0.0.1'
  1098. # port: 27017
  1099. # enable_http: true
  1100. # results_per_page: 20
  1101. # database: 'business'
  1102. # collection: 'reviews' # name of the db collection
  1103. # key: 'name' # key in the collection to search for
  1104. - name: mozhi
  1105. engine: mozhi
  1106. base_url:
  1107. - https://mozhi.aryak.me
  1108. - https://translate.bus-hit.me
  1109. - https://nyc1.mz.ggtyler.dev
  1110. # mozhi_engine: google - see https://mozhi.aryak.me for supported engines
  1111. timeout: 4.0
  1112. shortcut: mz
  1113. disabled: true
  1114. - name: mwmbl
  1115. engine: mwmbl
  1116. # api_url: https://api.mwmbl.org
  1117. shortcut: mwm
  1118. disabled: true
  1119. - name: npm
  1120. engine: npm
  1121. shortcut: npm
  1122. timeout: 5.0
  1123. disabled: true
  1124. - name: nyaa
  1125. engine: nyaa
  1126. shortcut: nt
  1127. disabled: true
  1128. - name: mankier
  1129. engine: json_engine
  1130. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  1131. results_query: results
  1132. url_query: url
  1133. title_query: name
  1134. content_query: description
  1135. categories: it
  1136. shortcut: man
  1137. about:
  1138. website: https://www.mankier.com/
  1139. official_api_documentation: https://www.mankier.com/api
  1140. use_official_api: true
  1141. require_api_key: false
  1142. results: JSON
  1143. # read https://docs.searxng.org/dev/engines/online/mullvad_leta.html
  1144. # - name: mullvadleta
  1145. # engine: mullvad_leta
  1146. # leta_engine: google # choose one of the following: google, brave
  1147. # use_cache: true # Only 100 non-cache searches per day, suggested only for private instances
  1148. # search_url: https://leta.mullvad.net
  1149. # categories: [general, web]
  1150. # shortcut: ml
  1151. - name: odysee
  1152. engine: odysee
  1153. shortcut: od
  1154. disabled: true
  1155. - name: openairedatasets
  1156. engine: json_engine
  1157. paging: true
  1158. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  1159. results_query: response/results/result
  1160. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1161. title_query: metadata/oaf:entity/oaf:result/title/$
  1162. content_query: metadata/oaf:entity/oaf:result/description/$
  1163. content_html_to_text: true
  1164. categories: "science"
  1165. shortcut: oad
  1166. timeout: 5.0
  1167. about:
  1168. website: https://www.openaire.eu/
  1169. wikidata_id: Q25106053
  1170. official_api_documentation: https://api.openaire.eu/
  1171. use_official_api: false
  1172. require_api_key: false
  1173. results: JSON
  1174. - name: openairepublications
  1175. engine: json_engine
  1176. paging: true
  1177. search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  1178. results_query: response/results/result
  1179. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1180. title_query: metadata/oaf:entity/oaf:result/title/$
  1181. content_query: metadata/oaf:entity/oaf:result/description/$
  1182. content_html_to_text: true
  1183. categories: science
  1184. shortcut: oap
  1185. timeout: 5.0
  1186. about:
  1187. website: https://www.openaire.eu/
  1188. wikidata_id: Q25106053
  1189. official_api_documentation: https://api.openaire.eu/
  1190. use_official_api: false
  1191. require_api_key: false
  1192. results: JSON
  1193. - name: openlibrary
  1194. engine: openlibrary
  1195. shortcut: ol
  1196. timeout: 5
  1197. disabled: true
  1198. - name: openmeteo
  1199. engine: open_meteo
  1200. shortcut: om
  1201. disabled: true
  1202. # - name: opensemanticsearch
  1203. # engine: opensemantic
  1204. # shortcut: oss
  1205. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  1206. - name: openstreetmap
  1207. engine: openstreetmap
  1208. shortcut: osm
  1209. - name: openrepos
  1210. engine: xpath
  1211. paging: true
  1212. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  1213. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  1214. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  1215. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  1216. categories: files
  1217. timeout: 4.0
  1218. disabled: true
  1219. shortcut: or
  1220. about:
  1221. website: https://openrepos.net/
  1222. wikidata_id:
  1223. official_api_documentation:
  1224. use_official_api: false
  1225. require_api_key: false
  1226. results: HTML
  1227. - name: packagist
  1228. engine: json_engine
  1229. paging: true
  1230. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  1231. results_query: results
  1232. url_query: url
  1233. title_query: name
  1234. content_query: description
  1235. categories: [it, packages]
  1236. disabled: true
  1237. timeout: 5.0
  1238. shortcut: pack
  1239. about:
  1240. website: https://packagist.org
  1241. wikidata_id: Q108311377
  1242. official_api_documentation: https://packagist.org/apidoc
  1243. use_official_api: true
  1244. require_api_key: false
  1245. results: JSON
  1246. - name: pdbe
  1247. engine: pdbe
  1248. shortcut: pdb
  1249. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1250. # hide_obsolete: false
  1251. - name: photon
  1252. engine: photon
  1253. shortcut: ph
  1254. - name: pinterest
  1255. engine: pinterest
  1256. shortcut: pin
  1257. - name: piped
  1258. engine: piped
  1259. shortcut: ppd
  1260. categories: videos
  1261. piped_filter: videos
  1262. timeout: 3.0
  1263. # URL to use as link and for embeds
  1264. frontend_url: https://srv.piped.video
  1265. # Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
  1266. backend_url:
  1267. - https://pipedapi.kavin.rocks
  1268. - https://pipedapi-libre.kavin.rocks
  1269. - https://pipedapi.adminforge.de
  1270. - name: piped.music
  1271. engine: piped
  1272. network: piped
  1273. shortcut: ppdm
  1274. categories: music
  1275. piped_filter: music_songs
  1276. timeout: 3.0
  1277. - name: piratebay
  1278. engine: piratebay
  1279. shortcut: tpb
  1280. # You may need to change this URL to a proxy if piratebay is blocked in your
  1281. # country
  1282. url: https://thepiratebay.org/
  1283. timeout: 3.0
  1284. - name: pixiv
  1285. shortcut: pv
  1286. engine: pixiv
  1287. disabled: true
  1288. inactive: true
  1289. pixiv_image_proxies:
  1290. - https://pximg.example.org
  1291. # A proxy is required to load the images. Hosting an image proxy server
  1292. # for Pixiv:
  1293. # --> https://pixivfe.pages.dev/hosting-image-proxy-server/
  1294. # Proxies from public instances. Ask the public instances owners if they
  1295. # agree to receive traffic from SearXNG!
  1296. # --> https://codeberg.org/VnPower/PixivFE#instances
  1297. # --> https://github.com/searxng/searxng/pull/3192#issuecomment-1941095047
  1298. # image proxy of https://pixiv.cat
  1299. # - https://i.pixiv.cat
  1300. # image proxy of https://www.pixiv.pics
  1301. # - https://pximg.cocomi.eu.org
  1302. # image proxy of https://pixivfe.exozy.me
  1303. # - https://pximg.exozy.me
  1304. # image proxy of https://pixivfe.ducks.party
  1305. # - https://pixiv.ducks.party
  1306. # image proxy of https://pixiv.perennialte.ch
  1307. # - https://pximg.perennialte.ch
  1308. - name: podcastindex
  1309. engine: podcastindex
  1310. shortcut: podcast
  1311. # Required dependency: psychopg2
  1312. # - name: postgresql
  1313. # engine: postgresql
  1314. # database: postgres
  1315. # username: postgres
  1316. # password: postgres
  1317. # limit: 10
  1318. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1319. # shortcut : psql
  1320. - name: presearch
  1321. engine: presearch
  1322. search_type: search
  1323. categories: [general, web]
  1324. shortcut: ps
  1325. timeout: 4.0
  1326. disabled: true
  1327. - name: presearch images
  1328. engine: presearch
  1329. network: presearch
  1330. search_type: images
  1331. categories: [images, web]
  1332. timeout: 4.0
  1333. shortcut: psimg
  1334. disabled: true
  1335. - name: presearch videos
  1336. engine: presearch
  1337. network: presearch
  1338. search_type: videos
  1339. categories: [general, web]
  1340. timeout: 4.0
  1341. shortcut: psvid
  1342. disabled: true
  1343. - name: presearch news
  1344. engine: presearch
  1345. network: presearch
  1346. search_type: news
  1347. categories: [news, web]
  1348. timeout: 4.0
  1349. shortcut: psnews
  1350. disabled: true
  1351. - name: pub.dev
  1352. engine: xpath
  1353. shortcut: pd
  1354. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1355. paging: true
  1356. results_xpath: //div[contains(@class,"packages-item")]
  1357. url_xpath: ./div/h3/a/@href
  1358. title_xpath: ./div/h3/a
  1359. content_xpath: ./div/div/div[contains(@class,"packages-description")]/span
  1360. categories: [packages, it]
  1361. timeout: 3.0
  1362. disabled: true
  1363. first_page_num: 1
  1364. about:
  1365. website: https://pub.dev/
  1366. official_api_documentation: https://pub.dev/help/api
  1367. use_official_api: false
  1368. require_api_key: false
  1369. results: HTML
  1370. - name: pubmed
  1371. engine: pubmed
  1372. shortcut: pub
  1373. timeout: 3.0
  1374. - name: pypi
  1375. shortcut: pypi
  1376. engine: pypi
  1377. - name: qwant
  1378. qwant_categ: web
  1379. engine: qwant
  1380. shortcut: qw
  1381. categories: [general, web]
  1382. additional_tests:
  1383. rosebud: *test_rosebud
  1384. - name: qwant news
  1385. qwant_categ: news
  1386. engine: qwant
  1387. shortcut: qwn
  1388. categories: news
  1389. network: qwant
  1390. - name: qwant images
  1391. qwant_categ: images
  1392. engine: qwant
  1393. shortcut: qwi
  1394. categories: [images, web]
  1395. network: qwant
  1396. - name: qwant videos
  1397. qwant_categ: videos
  1398. engine: qwant
  1399. shortcut: qwv
  1400. categories: [videos, web]
  1401. network: qwant
  1402. # - name: library
  1403. # engine: recoll
  1404. # shortcut: lib
  1405. # base_url: 'https://recoll.example.org/'
  1406. # search_dir: ''
  1407. # mount_prefix: /export
  1408. # dl_prefix: 'https://download.example.org'
  1409. # timeout: 30.0
  1410. # categories: files
  1411. # disabled: true
  1412. # - name: recoll library reference
  1413. # engine: recoll
  1414. # base_url: 'https://recoll.example.org/'
  1415. # search_dir: reference
  1416. # mount_prefix: /export
  1417. # dl_prefix: 'https://download.example.org'
  1418. # shortcut: libr
  1419. # timeout: 30.0
  1420. # categories: files
  1421. # disabled: true
  1422. - name: radio browser
  1423. engine: radio_browser
  1424. shortcut: rb
  1425. - name: reddit
  1426. engine: reddit
  1427. shortcut: re
  1428. page_size: 25
  1429. disabled: true
  1430. - name: right dao
  1431. engine: xpath
  1432. paging: true
  1433. page_size: 12
  1434. search_url: https://rightdao.com/search?q={query}&start={pageno}
  1435. results_xpath: //div[contains(@class, "description")]
  1436. url_xpath: ../div[contains(@class, "title")]/a/@href
  1437. title_xpath: ../div[contains(@class, "title")]
  1438. content_xpath: .
  1439. categories: general
  1440. shortcut: rd
  1441. disabled: true
  1442. about:
  1443. website: https://rightdao.com/
  1444. use_official_api: false
  1445. require_api_key: false
  1446. results: HTML
  1447. - name: rottentomatoes
  1448. engine: rottentomatoes
  1449. shortcut: rt
  1450. disabled: true
  1451. # Required dependency: redis
  1452. # - name: myredis
  1453. # shortcut : rds
  1454. # engine: redis_server
  1455. # exact_match_only: false
  1456. # host: '127.0.0.1'
  1457. # port: 6379
  1458. # enable_http: true
  1459. # password: ''
  1460. # db: 0
  1461. # tmp suspended: bad certificate
  1462. # - name: scanr structures
  1463. # shortcut: scs
  1464. # engine: scanr_structures
  1465. # disabled: true
  1466. - name: searchmysite
  1467. engine: xpath
  1468. shortcut: sms
  1469. categories: general
  1470. paging: true
  1471. search_url: https://searchmysite.net/search/?q={query}&page={pageno}
  1472. results_xpath: //div[contains(@class,'search-result')]
  1473. url_xpath: .//a[contains(@class,'result-link')]/@href
  1474. title_xpath: .//span[contains(@class,'result-title-txt')]/text()
  1475. content_xpath: ./p[@id='result-hightlight']
  1476. disabled: true
  1477. about:
  1478. website: https://searchmysite.net
  1479. - name: sepiasearch
  1480. engine: sepiasearch
  1481. shortcut: sep
  1482. - name: soundcloud
  1483. engine: soundcloud
  1484. shortcut: sc
  1485. - name: stackoverflow
  1486. engine: stackexchange
  1487. shortcut: st
  1488. api_site: 'stackoverflow'
  1489. categories: [it, q&a]
  1490. - name: askubuntu
  1491. engine: stackexchange
  1492. shortcut: ubuntu
  1493. api_site: 'askubuntu'
  1494. categories: [it, q&a]
  1495. - name: superuser
  1496. engine: stackexchange
  1497. shortcut: su
  1498. api_site: 'superuser'
  1499. categories: [it, q&a]
  1500. - name: discuss.python
  1501. engine: discourse
  1502. shortcut: dpy
  1503. base_url: 'https://discuss.python.org'
  1504. categories: [it, q&a]
  1505. disabled: true
  1506. - name: caddy.community
  1507. engine: discourse
  1508. shortcut: caddy
  1509. base_url: 'https://caddy.community'
  1510. categories: [it, q&a]
  1511. disabled: true
  1512. - name: pi-hole.community
  1513. engine: discourse
  1514. shortcut: pi
  1515. categories: [it, q&a]
  1516. base_url: 'https://discourse.pi-hole.net'
  1517. disabled: true
  1518. - name: searchcode code
  1519. engine: searchcode_code
  1520. shortcut: scc
  1521. disabled: true
  1522. # - name: searx
  1523. # engine: searx_engine
  1524. # shortcut: se
  1525. # instance_urls :
  1526. # - http://127.0.0.1:8888/
  1527. # - ...
  1528. # disabled: true
  1529. - name: semantic scholar
  1530. engine: semantic_scholar
  1531. disabled: true
  1532. shortcut: se
  1533. # Spotify needs API credentials
  1534. # - name: spotify
  1535. # engine: spotify
  1536. # shortcut: stf
  1537. # api_client_id: *******
  1538. # api_client_secret: *******
  1539. # - name: solr
  1540. # engine: solr
  1541. # shortcut: slr
  1542. # base_url: http://localhost:8983
  1543. # collection: collection_name
  1544. # sort: '' # sorting: asc or desc
  1545. # field_list: '' # comma separated list of field names to display on the UI
  1546. # default_fields: '' # default field to query
  1547. # query_fields: '' # query fields
  1548. # enable_http: true
  1549. # - name: springer nature
  1550. # engine: springer
  1551. # # get your API key from: https://dev.springernature.com/signup
  1552. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1553. # api_key: 'unset'
  1554. # shortcut: springer
  1555. # timeout: 15.0
  1556. - name: startpage
  1557. engine: startpage
  1558. shortcut: sp
  1559. timeout: 6.0
  1560. disabled: true
  1561. additional_tests:
  1562. rosebud: *test_rosebud
  1563. - name: tokyotoshokan
  1564. engine: tokyotoshokan
  1565. shortcut: tt
  1566. timeout: 6.0
  1567. disabled: true
  1568. - name: solidtorrents
  1569. engine: solidtorrents
  1570. shortcut: solid
  1571. timeout: 4.0
  1572. base_url:
  1573. - https://solidtorrents.to
  1574. - https://bitsearch.to
  1575. # For this demo of the sqlite engine download:
  1576. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1577. # and unpack into searx/data/filmliste-v2.db
  1578. # Query to test: "!demo concert"
  1579. #
  1580. # - name: demo
  1581. # engine: sqlite
  1582. # shortcut: demo
  1583. # categories: general
  1584. # result_template: default.html
  1585. # database: searx/data/filmliste-v2.db
  1586. # query_str: >-
  1587. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1588. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1589. # description AS content
  1590. # FROM film
  1591. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1592. # ORDER BY duration DESC
  1593. - name: tagesschau
  1594. engine: tagesschau
  1595. # when set to false, display URLs from Tagesschau, and not the actual source
  1596. # (e.g. NDR, WDR, SWR, HR, ...)
  1597. use_source_url: true
  1598. shortcut: ts
  1599. disabled: true
  1600. - name: tmdb
  1601. engine: xpath
  1602. paging: true
  1603. categories: movies
  1604. search_url: https://www.themoviedb.org/search?page={pageno}&query={query}
  1605. results_xpath: //div[contains(@class,"movie") or contains(@class,"tv")]//div[contains(@class,"card")]
  1606. url_xpath: .//div[contains(@class,"poster")]/a/@href
  1607. thumbnail_xpath: .//img/@src
  1608. title_xpath: .//div[contains(@class,"title")]//h2
  1609. content_xpath: .//div[contains(@class,"overview")]
  1610. shortcut: tm
  1611. disabled: true
  1612. # Requires Tor
  1613. - name: torch
  1614. engine: xpath
  1615. paging: true
  1616. search_url:
  1617. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1618. results_xpath: //table//tr
  1619. url_xpath: ./td[2]/a
  1620. title_xpath: ./td[2]/b
  1621. content_xpath: ./td[2]/small
  1622. categories: onions
  1623. enable_http: true
  1624. shortcut: tch
  1625. # torznab engine lets you query any torznab compatible indexer. Using this
  1626. # engine in combination with Jackett opens the possibility to query a lot of
  1627. # public and private indexers directly from SearXNG. More details at:
  1628. # https://docs.searxng.org/dev/engines/online/torznab.html
  1629. #
  1630. # - name: Torznab EZTV
  1631. # engine: torznab
  1632. # shortcut: eztv
  1633. # base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
  1634. # enable_http: true # if using localhost
  1635. # api_key: xxxxxxxxxxxxxxx
  1636. # show_magnet_links: true
  1637. # show_torrent_files: false
  1638. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1639. # torznab_categories: # optional
  1640. # - 2000
  1641. # - 5000
  1642. # tmp suspended - too slow, too many errors
  1643. # - name: urbandictionary
  1644. # engine : xpath
  1645. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1646. # url_xpath : //*[@class="word"]/@href
  1647. # title_xpath : //*[@class="def-header"]
  1648. # content_xpath: //*[@class="meaning"]
  1649. # shortcut: ud
  1650. - name: unsplash
  1651. engine: unsplash
  1652. shortcut: us
  1653. - name: yandex
  1654. engine: yandex
  1655. categories: general
  1656. search_type: web
  1657. shortcut: yd
  1658. disabled: true
  1659. inactive: true
  1660. - name: yandex images
  1661. engine: yandex
  1662. categories: images
  1663. search_type: images
  1664. shortcut: ydi
  1665. disabled: true
  1666. inactive: true
  1667. - name: yandex music
  1668. engine: yandex_music
  1669. shortcut: ydm
  1670. disabled: true
  1671. # https://yandex.com/support/music/access.html
  1672. inactive: true
  1673. - name: yahoo
  1674. engine: yahoo
  1675. shortcut: yh
  1676. disabled: true
  1677. - name: yahoo news
  1678. engine: yahoo_news
  1679. shortcut: yhn
  1680. - name: youtube
  1681. shortcut: yt
  1682. # You can use the engine using the official stable API, but you need an API
  1683. # key See: https://console.developers.google.com/project
  1684. #
  1685. # engine: youtube_api
  1686. # api_key: 'apikey' # required!
  1687. #
  1688. # Or you can use the html non-stable engine, activated by default
  1689. engine: youtube_noapi
  1690. - name: dailymotion
  1691. engine: dailymotion
  1692. shortcut: dm
  1693. - name: vimeo
  1694. engine: vimeo
  1695. shortcut: vm
  1696. - name: wiby
  1697. engine: json_engine
  1698. paging: true
  1699. search_url: https://wiby.me/json/?q={query}&p={pageno}
  1700. url_query: URL
  1701. title_query: Title
  1702. content_query: Snippet
  1703. categories: [general, web]
  1704. shortcut: wib
  1705. disabled: true
  1706. about:
  1707. website: https://wiby.me/
  1708. - name: wikibooks
  1709. engine: mediawiki
  1710. weight: 0.5
  1711. shortcut: wb
  1712. categories: [general, wikimedia]
  1713. base_url: "https://{language}.wikibooks.org/"
  1714. search_type: text
  1715. disabled: true
  1716. about:
  1717. website: https://www.wikibooks.org/
  1718. wikidata_id: Q367
  1719. - name: wikinews
  1720. engine: mediawiki
  1721. shortcut: wn
  1722. categories: [news, wikimedia]
  1723. base_url: "https://{language}.wikinews.org/"
  1724. search_type: text
  1725. srsort: create_timestamp_desc
  1726. about:
  1727. website: https://www.wikinews.org/
  1728. wikidata_id: Q964
  1729. - name: wikiquote
  1730. engine: mediawiki
  1731. weight: 0.5
  1732. shortcut: wq
  1733. categories: [general, wikimedia]
  1734. base_url: "https://{language}.wikiquote.org/"
  1735. search_type: text
  1736. disabled: true
  1737. additional_tests:
  1738. rosebud: *test_rosebud
  1739. about:
  1740. website: https://www.wikiquote.org/
  1741. wikidata_id: Q369
  1742. - name: wikisource
  1743. engine: mediawiki
  1744. weight: 0.5
  1745. shortcut: ws
  1746. categories: [general, wikimedia]
  1747. base_url: "https://{language}.wikisource.org/"
  1748. search_type: text
  1749. disabled: true
  1750. about:
  1751. website: https://www.wikisource.org/
  1752. wikidata_id: Q263
  1753. - name: wikispecies
  1754. engine: mediawiki
  1755. shortcut: wsp
  1756. categories: [general, science, wikimedia]
  1757. base_url: "https://species.wikimedia.org/"
  1758. search_type: text
  1759. disabled: true
  1760. about:
  1761. website: https://species.wikimedia.org/
  1762. wikidata_id: Q13679
  1763. tests:
  1764. wikispecies:
  1765. matrix:
  1766. query: "Campbell, L.I. et al. 2011: MicroRNAs"
  1767. lang: en
  1768. result_container:
  1769. - not_empty
  1770. - ['one_title_contains', 'Tardigrada']
  1771. test:
  1772. - unique_results
  1773. - name: wiktionary
  1774. engine: mediawiki
  1775. shortcut: wt
  1776. categories: [dictionaries, wikimedia]
  1777. base_url: "https://{language}.wiktionary.org/"
  1778. search_type: text
  1779. about:
  1780. website: https://www.wiktionary.org/
  1781. wikidata_id: Q151
  1782. - name: wikiversity
  1783. engine: mediawiki
  1784. weight: 0.5
  1785. shortcut: wv
  1786. categories: [general, wikimedia]
  1787. base_url: "https://{language}.wikiversity.org/"
  1788. search_type: text
  1789. disabled: true
  1790. about:
  1791. website: https://www.wikiversity.org/
  1792. wikidata_id: Q370
  1793. - name: wikivoyage
  1794. engine: mediawiki
  1795. weight: 0.5
  1796. shortcut: wy
  1797. categories: [general, wikimedia]
  1798. base_url: "https://{language}.wikivoyage.org/"
  1799. search_type: text
  1800. disabled: true
  1801. about:
  1802. website: https://www.wikivoyage.org/
  1803. wikidata_id: Q373
  1804. - name: wikicommons.images
  1805. engine: wikicommons
  1806. shortcut: wc
  1807. categories: images
  1808. search_type: images
  1809. number_of_results: 10
  1810. - name: wikicommons.videos
  1811. engine: wikicommons
  1812. shortcut: wcv
  1813. categories: videos
  1814. search_type: videos
  1815. number_of_results: 10
  1816. - name: wikicommons.audio
  1817. engine: wikicommons
  1818. shortcut: wca
  1819. categories: music
  1820. search_type: audio
  1821. number_of_results: 10
  1822. - name: wikicommons.files
  1823. engine: wikicommons
  1824. shortcut: wcf
  1825. categories: files
  1826. search_type: files
  1827. number_of_results: 10
  1828. - name: wolframalpha
  1829. shortcut: wa
  1830. # You can use the engine using the official stable API, but you need an API
  1831. # key. See: https://products.wolframalpha.com/api/
  1832. #
  1833. # engine: wolframalpha_api
  1834. # api_key: ''
  1835. #
  1836. # Or you can use the html non-stable engine, activated by default
  1837. engine: wolframalpha_noapi
  1838. timeout: 6.0
  1839. categories: general
  1840. disabled: true
  1841. - name: dictzone
  1842. engine: dictzone
  1843. shortcut: dc
  1844. - name: mymemory translated
  1845. engine: translated
  1846. shortcut: tl
  1847. timeout: 5.0
  1848. # You can use without an API key, but you are limited to 1000 words/day
  1849. # See: https://mymemory.translated.net/doc/usagelimits.php
  1850. # api_key: ''
  1851. # Required dependency: mysql-connector-python
  1852. # - name: mysql
  1853. # engine: mysql_server
  1854. # database: mydatabase
  1855. # username: user
  1856. # password: pass
  1857. # limit: 10
  1858. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1859. # shortcut: mysql
  1860. # Required dependency: mariadb
  1861. # - name: mariadb
  1862. # engine: mariadb_server
  1863. # database: mydatabase
  1864. # username: user
  1865. # password: pass
  1866. # limit: 10
  1867. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1868. # shortcut: mdb
  1869. - name: 1337x
  1870. engine: 1337x
  1871. shortcut: 1337x
  1872. disabled: true
  1873. - name: duden
  1874. engine: duden
  1875. shortcut: du
  1876. disabled: true
  1877. - name: seznam
  1878. shortcut: szn
  1879. engine: seznam
  1880. disabled: true
  1881. # - name: deepl
  1882. # engine: deepl
  1883. # shortcut: dpl
  1884. # # You can use the engine using the official stable API, but you need an API key
  1885. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  1886. # api_key: '' # required!
  1887. # timeout: 5.0
  1888. # disabled: true
  1889. - name: mojeek
  1890. shortcut: mjk
  1891. engine: mojeek
  1892. categories: [general, web]
  1893. disabled: true
  1894. - name: mojeek images
  1895. shortcut: mjkimg
  1896. engine: mojeek
  1897. categories: [images, web]
  1898. search_type: images
  1899. paging: false
  1900. disabled: true
  1901. - name: mojeek news
  1902. shortcut: mjknews
  1903. engine: mojeek
  1904. categories: [news, web]
  1905. search_type: news
  1906. paging: false
  1907. disabled: true
  1908. - name: moviepilot
  1909. engine: moviepilot
  1910. shortcut: mp
  1911. disabled: true
  1912. - name: naver
  1913. shortcut: nvr
  1914. categories: [general, web]
  1915. engine: xpath
  1916. paging: true
  1917. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1918. url_xpath: //a[@class="link_tit"]/@href
  1919. title_xpath: //a[@class="link_tit"]
  1920. content_xpath: //div[@class="total_dsc_wrap"]/a
  1921. first_page_num: 1
  1922. page_size: 10
  1923. disabled: true
  1924. about:
  1925. website: https://www.naver.com/
  1926. wikidata_id: Q485639
  1927. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1928. use_official_api: false
  1929. require_api_key: false
  1930. results: HTML
  1931. language: ko
  1932. - name: rubygems
  1933. shortcut: rbg
  1934. engine: xpath
  1935. paging: true
  1936. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1937. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1938. url_xpath: ./@href
  1939. title_xpath: ./span/h2
  1940. content_xpath: ./span/p
  1941. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1942. first_page_num: 1
  1943. categories: [it, packages]
  1944. disabled: true
  1945. about:
  1946. website: https://rubygems.org/
  1947. wikidata_id: Q1853420
  1948. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1949. use_official_api: false
  1950. require_api_key: false
  1951. results: HTML
  1952. - name: peertube
  1953. engine: peertube
  1954. shortcut: ptb
  1955. paging: true
  1956. # alternatives see: https://instances.joinpeertube.org/instances
  1957. # base_url: https://tube.4aem.com
  1958. categories: videos
  1959. disabled: true
  1960. timeout: 6.0
  1961. - name: mediathekviewweb
  1962. engine: mediathekviewweb
  1963. shortcut: mvw
  1964. disabled: true
  1965. - name: yacy
  1966. # https://docs.searxng.org/dev/engines/online/yacy.html
  1967. engine: yacy
  1968. categories: general
  1969. search_type: text
  1970. base_url:
  1971. - https://yacy.searchlab.eu
  1972. # see https://github.com/searxng/searxng/pull/3631#issuecomment-2240903027
  1973. # - https://search.kyun.li
  1974. # - https://yacy.securecomcorp.eu
  1975. # - https://yacy.myserv.ca
  1976. # - https://yacy.nsupdate.info
  1977. # - https://yacy.electroncash.de
  1978. shortcut: ya
  1979. disabled: true
  1980. # if you aren't using HTTPS for your local yacy instance disable https
  1981. # enable_http: false
  1982. search_mode: 'global'
  1983. # timeout can be reduced in 'local' search mode
  1984. timeout: 5.0
  1985. - name: yacy images
  1986. engine: yacy
  1987. network: yacy
  1988. categories: images
  1989. search_type: image
  1990. shortcut: yai
  1991. disabled: true
  1992. # timeout can be reduced in 'local' search mode
  1993. timeout: 5.0
  1994. - name: rumble
  1995. engine: rumble
  1996. shortcut: ru
  1997. base_url: https://rumble.com/
  1998. paging: true
  1999. categories: videos
  2000. disabled: true
  2001. - name: livespace
  2002. engine: livespace
  2003. shortcut: ls
  2004. categories: videos
  2005. disabled: true
  2006. timeout: 5.0
  2007. - name: wordnik
  2008. engine: wordnik
  2009. shortcut: def
  2010. categories: [dictionaries]
  2011. timeout: 5.0
  2012. - name: woxikon.de synonyme
  2013. engine: xpath
  2014. shortcut: woxi
  2015. categories: [dictionaries]
  2016. timeout: 5.0
  2017. disabled: true
  2018. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  2019. url_xpath: //div[@class="upper-synonyms"]/a/@href
  2020. content_xpath: //div[@class="synonyms-list-group"]
  2021. title_xpath: //div[@class="upper-synonyms"]/a
  2022. no_result_for_http_status: [404]
  2023. about:
  2024. website: https://www.woxikon.de/
  2025. wikidata_id: # No Wikidata ID
  2026. use_official_api: false
  2027. require_api_key: false
  2028. results: HTML
  2029. language: de
  2030. - name: seekr news
  2031. engine: seekr
  2032. shortcut: senews
  2033. categories: news
  2034. seekr_category: news
  2035. disabled: true
  2036. - name: seekr images
  2037. engine: seekr
  2038. network: seekr news
  2039. shortcut: seimg
  2040. categories: images
  2041. seekr_category: images
  2042. disabled: true
  2043. - name: seekr videos
  2044. engine: seekr
  2045. network: seekr news
  2046. shortcut: sevid
  2047. categories: videos
  2048. seekr_category: videos
  2049. disabled: true
  2050. - name: stract
  2051. engine: stract
  2052. shortcut: str
  2053. disabled: true
  2054. - name: svgrepo
  2055. engine: svgrepo
  2056. shortcut: svg
  2057. timeout: 10.0
  2058. disabled: true
  2059. - name: tootfinder
  2060. engine: tootfinder
  2061. shortcut: toot
  2062. - name: voidlinux
  2063. engine: voidlinux
  2064. shortcut: void
  2065. disabled: true
  2066. - name: wallhaven
  2067. engine: wallhaven
  2068. # api_key: abcdefghijklmnopqrstuvwxyz
  2069. shortcut: wh
  2070. # wikimini: online encyclopedia for children
  2071. # The fulltext and title parameter is necessary for Wikimini because
  2072. # sometimes it will not show the results and redirect instead
  2073. - name: wikimini
  2074. engine: xpath
  2075. shortcut: wkmn
  2076. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  2077. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  2078. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  2079. content_xpath: //li/div[@class="searchresult"]
  2080. categories: general
  2081. disabled: true
  2082. about:
  2083. website: https://wikimini.org/
  2084. wikidata_id: Q3568032
  2085. use_official_api: false
  2086. require_api_key: false
  2087. results: HTML
  2088. language: fr
  2089. - name: wttr.in
  2090. engine: wttr
  2091. shortcut: wttr
  2092. timeout: 9.0
  2093. - name: yummly
  2094. engine: yummly
  2095. shortcut: yum
  2096. disabled: true
  2097. - name: brave
  2098. engine: brave
  2099. shortcut: br
  2100. time_range_support: true
  2101. paging: true
  2102. categories: [general, web]
  2103. brave_category: search
  2104. # brave_spellcheck: true
  2105. - name: brave.images
  2106. engine: brave
  2107. network: brave
  2108. shortcut: brimg
  2109. categories: [images, web]
  2110. brave_category: images
  2111. - name: brave.videos
  2112. engine: brave
  2113. network: brave
  2114. shortcut: brvid
  2115. categories: [videos, web]
  2116. brave_category: videos
  2117. - name: brave.news
  2118. engine: brave
  2119. network: brave
  2120. shortcut: brnews
  2121. categories: news
  2122. brave_category: news
  2123. # - name: brave.goggles
  2124. # engine: brave
  2125. # network: brave
  2126. # shortcut: brgog
  2127. # time_range_support: true
  2128. # paging: true
  2129. # categories: [general, web]
  2130. # brave_category: goggles
  2131. # Goggles: # required! This should be a URL ending in .goggle
  2132. - name: lib.rs
  2133. shortcut: lrs
  2134. engine: lib_rs
  2135. disabled: true
  2136. - name: sourcehut
  2137. shortcut: srht
  2138. engine: xpath
  2139. paging: true
  2140. search_url: https://sr.ht/projects?page={pageno}&search={query}
  2141. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  2142. url_xpath: ./h4/a[2]/@href
  2143. title_xpath: ./h4/a[2]
  2144. content_xpath: ./p
  2145. first_page_num: 1
  2146. categories: [it, repos]
  2147. disabled: true
  2148. about:
  2149. website: https://sr.ht
  2150. wikidata_id: Q78514485
  2151. official_api_documentation: https://man.sr.ht/
  2152. use_official_api: false
  2153. require_api_key: false
  2154. results: HTML
  2155. - name: goo
  2156. shortcut: goo
  2157. engine: xpath
  2158. paging: true
  2159. search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
  2160. url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
  2161. title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
  2162. content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
  2163. first_page_num: 0
  2164. categories: [general, web]
  2165. disabled: true
  2166. timeout: 4.0
  2167. about:
  2168. website: https://search.goo.ne.jp
  2169. wikidata_id: Q249044
  2170. use_official_api: false
  2171. require_api_key: false
  2172. results: HTML
  2173. language: ja
  2174. - name: bt4g
  2175. engine: bt4g
  2176. shortcut: bt4g
  2177. - name: pkg.go.dev
  2178. engine: pkg_go_dev
  2179. shortcut: pgo
  2180. disabled: true
  2181. # Doku engine lets you access to any Doku wiki instance:
  2182. # A public one or a privete/corporate one.
  2183. # - name: ubuntuwiki
  2184. # engine: doku
  2185. # shortcut: uw
  2186. # base_url: 'https://doc.ubuntu-fr.org'
  2187. # Be careful when enabling this engine if you are
  2188. # running a public instance. Do not expose any sensitive
  2189. # information. You can restrict access by configuring a list
  2190. # of access tokens under tokens.
  2191. # - name: git grep
  2192. # engine: command
  2193. # command: ['git', 'grep', '{{QUERY}}']
  2194. # shortcut: gg
  2195. # tokens: []
  2196. # disabled: true
  2197. # delimiter:
  2198. # chars: ':'
  2199. # keys: ['filepath', 'code']
  2200. # Be careful when enabling this engine if you are
  2201. # running a public instance. Do not expose any sensitive
  2202. # information. You can restrict access by configuring a list
  2203. # of access tokens under tokens.
  2204. # - name: locate
  2205. # engine: command
  2206. # command: ['locate', '{{QUERY}}']
  2207. # shortcut: loc
  2208. # tokens: []
  2209. # disabled: true
  2210. # delimiter:
  2211. # chars: ' '
  2212. # keys: ['line']
  2213. # Be careful when enabling this engine if you are
  2214. # running a public instance. Do not expose any sensitive
  2215. # information. You can restrict access by configuring a list
  2216. # of access tokens under tokens.
  2217. # - name: find
  2218. # engine: command
  2219. # command: ['find', '.', '-name', '{{QUERY}}']
  2220. # query_type: path
  2221. # shortcut: fnd
  2222. # tokens: []
  2223. # disabled: true
  2224. # delimiter:
  2225. # chars: ' '
  2226. # keys: ['line']
  2227. # Be careful when enabling this engine if you are
  2228. # running a public instance. Do not expose any sensitive
  2229. # information. You can restrict access by configuring a list
  2230. # of access tokens under tokens.
  2231. # - name: pattern search in files
  2232. # engine: command
  2233. # command: ['fgrep', '{{QUERY}}']
  2234. # shortcut: fgr
  2235. # tokens: []
  2236. # disabled: true
  2237. # delimiter:
  2238. # chars: ' '
  2239. # keys: ['line']
  2240. # Be careful when enabling this engine if you are
  2241. # running a public instance. Do not expose any sensitive
  2242. # information. You can restrict access by configuring a list
  2243. # of access tokens under tokens.
  2244. # - name: regex search in files
  2245. # engine: command
  2246. # command: ['grep', '{{QUERY}}']
  2247. # shortcut: gr
  2248. # tokens: []
  2249. # disabled: true
  2250. # delimiter:
  2251. # chars: ' '
  2252. # keys: ['line']
  2253. doi_resolvers:
  2254. oadoi.org: 'https://oadoi.org/'
  2255. doi.org: 'https://doi.org/'
  2256. doai.io: 'https://dissem.in/'
  2257. sci-hub.se: 'https://sci-hub.se/'
  2258. sci-hub.st: 'https://sci-hub.st/'
  2259. sci-hub.ru: 'https://sci-hub.ru/'
  2260. default_doi_resolver: 'oadoi.org'