settings.yml 63 KB

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