settings.yml 61 KB

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