settings.yml 66 KB

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