settings.yml 66 KB

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