settings.yml 65 KB

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