settings.yml 64 KB

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