settings.yml 65 KB

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