settings.yml 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382
  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: lingva
  948. engine: lingva
  949. shortcut: lv
  950. # set lingva instance in url, by default it will use the official instance
  951. # url: https://lingva.thedaviddelta.com
  952. - name: lobste.rs
  953. engine: xpath
  954. search_url: https://lobste.rs/search?q={query}&what=stories&order=relevance
  955. results_xpath: //li[contains(@class, "story")]
  956. url_xpath: .//a[@class="u-url"]/@href
  957. title_xpath: .//a[@class="u-url"]
  958. content_xpath: .//a[@class="domain"]
  959. categories: it
  960. shortcut: lo
  961. timeout: 5.0
  962. disabled: true
  963. about:
  964. website: https://lobste.rs/
  965. wikidata_id: Q60762874
  966. official_api_documentation:
  967. use_official_api: false
  968. require_api_key: false
  969. results: HTML
  970. - name: azlyrics
  971. shortcut: lyrics
  972. engine: xpath
  973. timeout: 4.0
  974. disabled: true
  975. categories: [music, lyrics]
  976. paging: true
  977. search_url: https://search.azlyrics.com/search.php?q={query}&w=lyrics&p={pageno}
  978. url_xpath: //td[@class="text-left visitedlyr"]/a/@href
  979. title_xpath: //span/b/text()
  980. content_xpath: //td[@class="text-left visitedlyr"]/a/small
  981. about:
  982. website: https://azlyrics.com
  983. wikidata_id: Q66372542
  984. official_api_documentation:
  985. use_official_api: false
  986. require_api_key: false
  987. results: HTML
  988. - name: mastodon users
  989. engine: mastodon
  990. mastodon_type: accounts
  991. base_url: https://mastodon.social
  992. shortcut: mau
  993. - name: mastodon hashtags
  994. engine: mastodon
  995. mastodon_type: hashtags
  996. base_url: https://mastodon.social
  997. shortcut: mah
  998. # - name: matrixrooms
  999. # engine: mrs
  1000. # # https://docs.searxng.org/dev/engines/online/mrs.html
  1001. # # base_url: https://mrs-api-host
  1002. # shortcut: mtrx
  1003. # disabled: true
  1004. - name: mdn
  1005. shortcut: mdn
  1006. engine: json_engine
  1007. categories: [it]
  1008. paging: true
  1009. search_url: https://developer.mozilla.org/api/v1/search?q={query}&page={pageno}
  1010. results_query: documents
  1011. url_query: mdn_url
  1012. url_prefix: https://developer.mozilla.org
  1013. title_query: title
  1014. content_query: summary
  1015. about:
  1016. website: https://developer.mozilla.org
  1017. wikidata_id: Q3273508
  1018. official_api_documentation: null
  1019. use_official_api: false
  1020. require_api_key: false
  1021. results: JSON
  1022. - name: metacpan
  1023. engine: metacpan
  1024. shortcut: cpan
  1025. disabled: true
  1026. number_of_results: 20
  1027. # - name: meilisearch
  1028. # engine: meilisearch
  1029. # shortcut: mes
  1030. # enable_http: true
  1031. # base_url: http://localhost:7700
  1032. # index: my-index
  1033. - name: mixcloud
  1034. engine: mixcloud
  1035. shortcut: mc
  1036. # MongoDB engine
  1037. # Required dependency: pymongo
  1038. # - name: mymongo
  1039. # engine: mongodb
  1040. # shortcut: md
  1041. # exact_match_only: false
  1042. # host: '127.0.0.1'
  1043. # port: 27017
  1044. # enable_http: true
  1045. # results_per_page: 20
  1046. # database: 'business'
  1047. # collection: 'reviews' # name of the db collection
  1048. # key: 'name' # key in the collection to search for
  1049. - name: mozhi
  1050. engine: mozhi
  1051. base_url:
  1052. - https://mozhi.aryak.me
  1053. - https://translate.bus-hit.me
  1054. - https://nyc1.mz.ggtyler.dev
  1055. # mozhi_engine: google - see https://mozhi.aryak.me for supported engines
  1056. timeout: 4.0
  1057. shortcut: mz
  1058. disabled: true
  1059. - name: mwmbl
  1060. engine: mwmbl
  1061. # api_url: https://api.mwmbl.org
  1062. shortcut: mwm
  1063. disabled: true
  1064. - name: npm
  1065. engine: npm
  1066. shortcut: npm
  1067. timeout: 5.0
  1068. disabled: true
  1069. - name: nyaa
  1070. engine: nyaa
  1071. shortcut: nt
  1072. disabled: true
  1073. - name: mankier
  1074. engine: json_engine
  1075. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  1076. results_query: results
  1077. url_query: url
  1078. title_query: name
  1079. content_query: description
  1080. categories: it
  1081. shortcut: man
  1082. about:
  1083. website: https://www.mankier.com/
  1084. official_api_documentation: https://www.mankier.com/api
  1085. use_official_api: true
  1086. require_api_key: false
  1087. results: JSON
  1088. # read https://docs.searxng.org/dev/engines/online/mullvad_leta.html
  1089. # - name: mullvadleta
  1090. # engine: mullvad_leta
  1091. # use_cache: true # Only 100 non-cache searches per day, suggested only for private instances
  1092. # search_url: https://leta.mullvad.net
  1093. # categories: [general, web]
  1094. # shortcut: ml
  1095. - name: odysee
  1096. engine: odysee
  1097. shortcut: od
  1098. disabled: true
  1099. - name: openairedatasets
  1100. engine: json_engine
  1101. paging: true
  1102. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  1103. results_query: response/results/result
  1104. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1105. title_query: metadata/oaf:entity/oaf:result/title/$
  1106. content_query: metadata/oaf:entity/oaf:result/description/$
  1107. content_html_to_text: true
  1108. categories: "science"
  1109. shortcut: oad
  1110. timeout: 5.0
  1111. about:
  1112. website: https://www.openaire.eu/
  1113. wikidata_id: Q25106053
  1114. official_api_documentation: https://api.openaire.eu/
  1115. use_official_api: false
  1116. require_api_key: false
  1117. results: JSON
  1118. - name: openairepublications
  1119. engine: json_engine
  1120. paging: true
  1121. search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  1122. results_query: response/results/result
  1123. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1124. title_query: metadata/oaf:entity/oaf:result/title/$
  1125. content_query: metadata/oaf:entity/oaf:result/description/$
  1126. content_html_to_text: true
  1127. categories: science
  1128. shortcut: oap
  1129. timeout: 5.0
  1130. about:
  1131. website: https://www.openaire.eu/
  1132. wikidata_id: Q25106053
  1133. official_api_documentation: https://api.openaire.eu/
  1134. use_official_api: false
  1135. require_api_key: false
  1136. results: JSON
  1137. # - name: opensemanticsearch
  1138. # engine: opensemantic
  1139. # shortcut: oss
  1140. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  1141. - name: openstreetmap
  1142. engine: openstreetmap
  1143. shortcut: osm
  1144. - name: openrepos
  1145. engine: xpath
  1146. paging: true
  1147. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  1148. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  1149. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  1150. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  1151. categories: files
  1152. timeout: 4.0
  1153. disabled: true
  1154. shortcut: or
  1155. about:
  1156. website: https://openrepos.net/
  1157. wikidata_id:
  1158. official_api_documentation:
  1159. use_official_api: false
  1160. require_api_key: false
  1161. results: HTML
  1162. - name: packagist
  1163. engine: json_engine
  1164. paging: true
  1165. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  1166. results_query: results
  1167. url_query: url
  1168. title_query: name
  1169. content_query: description
  1170. categories: [it, packages]
  1171. disabled: true
  1172. timeout: 5.0
  1173. shortcut: pack
  1174. about:
  1175. website: https://packagist.org
  1176. wikidata_id: Q108311377
  1177. official_api_documentation: https://packagist.org/apidoc
  1178. use_official_api: true
  1179. require_api_key: false
  1180. results: JSON
  1181. - name: pdbe
  1182. engine: pdbe
  1183. shortcut: pdb
  1184. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1185. # hide_obsolete: false
  1186. - name: photon
  1187. engine: photon
  1188. shortcut: ph
  1189. - name: pinterest
  1190. engine: pinterest
  1191. shortcut: pin
  1192. - name: piped
  1193. engine: piped
  1194. shortcut: ppd
  1195. categories: videos
  1196. piped_filter: videos
  1197. timeout: 3.0
  1198. # URL to use as link and for embeds
  1199. frontend_url: https://srv.piped.video
  1200. # Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
  1201. backend_url:
  1202. - https://pipedapi.kavin.rocks
  1203. - https://pipedapi-libre.kavin.rocks
  1204. - https://pipedapi.adminforge.de
  1205. - name: piped.music
  1206. engine: piped
  1207. network: piped
  1208. shortcut: ppdm
  1209. categories: music
  1210. piped_filter: music_songs
  1211. timeout: 3.0
  1212. - name: piratebay
  1213. engine: piratebay
  1214. shortcut: tpb
  1215. # You may need to change this URL to a proxy if piratebay is blocked in your
  1216. # country
  1217. url: https://thepiratebay.org/
  1218. timeout: 3.0
  1219. - name: pixiv
  1220. shortcut: pv
  1221. engine: pixiv
  1222. disabled: true
  1223. inactive: true
  1224. pixiv_image_proxies:
  1225. - pximg.example.org
  1226. # A proxy is required to load the images. Hosting an image proxy server
  1227. # for Pixiv:
  1228. # --> https://codeberg.org/VnPower/PixivFE/wiki/Hosting-an-image-proxy-server-for-Pixiv
  1229. # Proxies from public instances. Ask the public instances owners if they
  1230. # agree to receive traffic from SearXNG!
  1231. # --> https://codeberg.org/VnPower/PixivFE#instances
  1232. # --> https://github.com/searxng/searxng/pull/3192#issuecomment-1941095047
  1233. # image proxy of https://pixiv.cat
  1234. # - https://i.pixiv.cat
  1235. # image proxy of https://www.pixiv.pics
  1236. # - https://pximg.cocomi.eu.org
  1237. # image proxy of https://pixivfe.exozy.me
  1238. # - https://pximg.exozy.me
  1239. # image proxy of https://pixivfe.ducks.party
  1240. # - https://pixiv.ducks.party
  1241. # image proxy of https://pixiv.perennialte.ch
  1242. # - https://pximg.perennialte.ch
  1243. - name: podcastindex
  1244. engine: podcastindex
  1245. shortcut: podcast
  1246. # Required dependency: psychopg2
  1247. # - name: postgresql
  1248. # engine: postgresql
  1249. # database: postgres
  1250. # username: postgres
  1251. # password: postgres
  1252. # limit: 10
  1253. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1254. # shortcut : psql
  1255. - name: presearch
  1256. engine: presearch
  1257. search_type: search
  1258. categories: [general, web]
  1259. shortcut: ps
  1260. timeout: 4.0
  1261. disabled: true
  1262. - name: presearch images
  1263. engine: presearch
  1264. network: presearch
  1265. search_type: images
  1266. categories: [images, web]
  1267. timeout: 4.0
  1268. shortcut: psimg
  1269. disabled: true
  1270. - name: presearch videos
  1271. engine: presearch
  1272. network: presearch
  1273. search_type: videos
  1274. categories: [general, web]
  1275. timeout: 4.0
  1276. shortcut: psvid
  1277. disabled: true
  1278. - name: presearch news
  1279. engine: presearch
  1280. network: presearch
  1281. search_type: news
  1282. categories: [news, web]
  1283. timeout: 4.0
  1284. shortcut: psnews
  1285. disabled: true
  1286. - name: pub.dev
  1287. engine: xpath
  1288. shortcut: pd
  1289. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1290. paging: true
  1291. results_xpath: //div[contains(@class,"packages-item")]
  1292. url_xpath: ./div/h3/a/@href
  1293. title_xpath: ./div/h3/a
  1294. content_xpath: ./div/div/div[contains(@class,"packages-description")]/span
  1295. categories: [packages, it]
  1296. timeout: 3.0
  1297. disabled: true
  1298. first_page_num: 1
  1299. about:
  1300. website: https://pub.dev/
  1301. official_api_documentation: https://pub.dev/help/api
  1302. use_official_api: false
  1303. require_api_key: false
  1304. results: HTML
  1305. - name: pubmed
  1306. engine: pubmed
  1307. shortcut: pub
  1308. timeout: 3.0
  1309. - name: pypi
  1310. shortcut: pypi
  1311. engine: pypi
  1312. - name: qwant
  1313. qwant_categ: web
  1314. engine: qwant
  1315. shortcut: qw
  1316. categories: [general, web]
  1317. additional_tests:
  1318. rosebud: *test_rosebud
  1319. - name: qwant news
  1320. qwant_categ: news
  1321. engine: qwant
  1322. shortcut: qwn
  1323. categories: news
  1324. network: qwant
  1325. - name: qwant images
  1326. qwant_categ: images
  1327. engine: qwant
  1328. shortcut: qwi
  1329. categories: [images, web]
  1330. network: qwant
  1331. - name: qwant videos
  1332. qwant_categ: videos
  1333. engine: qwant
  1334. shortcut: qwv
  1335. categories: [videos, web]
  1336. network: qwant
  1337. # - name: library
  1338. # engine: recoll
  1339. # shortcut: lib
  1340. # base_url: 'https://recoll.example.org/'
  1341. # search_dir: ''
  1342. # mount_prefix: /export
  1343. # dl_prefix: 'https://download.example.org'
  1344. # timeout: 30.0
  1345. # categories: files
  1346. # disabled: true
  1347. # - name: recoll library reference
  1348. # engine: recoll
  1349. # base_url: 'https://recoll.example.org/'
  1350. # search_dir: reference
  1351. # mount_prefix: /export
  1352. # dl_prefix: 'https://download.example.org'
  1353. # shortcut: libr
  1354. # timeout: 30.0
  1355. # categories: files
  1356. # disabled: true
  1357. - name: radio browser
  1358. engine: radio_browser
  1359. shortcut: rb
  1360. - name: reddit
  1361. engine: reddit
  1362. shortcut: re
  1363. page_size: 25
  1364. - name: rottentomatoes
  1365. engine: rottentomatoes
  1366. shortcut: rt
  1367. disabled: true
  1368. # Required dependency: redis
  1369. # - name: myredis
  1370. # shortcut : rds
  1371. # engine: redis_server
  1372. # exact_match_only: false
  1373. # host: '127.0.0.1'
  1374. # port: 6379
  1375. # enable_http: true
  1376. # password: ''
  1377. # db: 0
  1378. # tmp suspended: bad certificate
  1379. # - name: scanr structures
  1380. # shortcut: scs
  1381. # engine: scanr_structures
  1382. # disabled: true
  1383. - name: sepiasearch
  1384. engine: sepiasearch
  1385. shortcut: sep
  1386. - name: soundcloud
  1387. engine: soundcloud
  1388. shortcut: sc
  1389. - name: stackoverflow
  1390. engine: stackexchange
  1391. shortcut: st
  1392. api_site: 'stackoverflow'
  1393. categories: [it, q&a]
  1394. - name: askubuntu
  1395. engine: stackexchange
  1396. shortcut: ubuntu
  1397. api_site: 'askubuntu'
  1398. categories: [it, q&a]
  1399. - name: internetarchivescholar
  1400. engine: internet_archive_scholar
  1401. shortcut: ias
  1402. timeout: 15.0
  1403. - name: superuser
  1404. engine: stackexchange
  1405. shortcut: su
  1406. api_site: 'superuser'
  1407. categories: [it, q&a]
  1408. - name: searchcode code
  1409. engine: searchcode_code
  1410. shortcut: scc
  1411. disabled: true
  1412. # - name: searx
  1413. # engine: searx_engine
  1414. # shortcut: se
  1415. # instance_urls :
  1416. # - http://127.0.0.1:8888/
  1417. # - ...
  1418. # disabled: true
  1419. - name: semantic scholar
  1420. engine: semantic_scholar
  1421. disabled: true
  1422. shortcut: se
  1423. # Spotify needs API credentials
  1424. # - name: spotify
  1425. # engine: spotify
  1426. # shortcut: stf
  1427. # api_client_id: *******
  1428. # api_client_secret: *******
  1429. # - name: solr
  1430. # engine: solr
  1431. # shortcut: slr
  1432. # base_url: http://localhost:8983
  1433. # collection: collection_name
  1434. # sort: '' # sorting: asc or desc
  1435. # field_list: '' # comma separated list of field names to display on the UI
  1436. # default_fields: '' # default field to query
  1437. # query_fields: '' # query fields
  1438. # enable_http: true
  1439. # - name: springer nature
  1440. # engine: springer
  1441. # # get your API key from: https://dev.springernature.com/signup
  1442. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1443. # api_key: 'unset'
  1444. # shortcut: springer
  1445. # timeout: 15.0
  1446. - name: startpage
  1447. engine: startpage
  1448. shortcut: sp
  1449. timeout: 6.0
  1450. disabled: true
  1451. additional_tests:
  1452. rosebud: *test_rosebud
  1453. - name: tokyotoshokan
  1454. engine: tokyotoshokan
  1455. shortcut: tt
  1456. timeout: 6.0
  1457. disabled: true
  1458. - name: solidtorrents
  1459. engine: solidtorrents
  1460. shortcut: solid
  1461. timeout: 4.0
  1462. base_url:
  1463. - https://solidtorrents.to
  1464. - https://bitsearch.to
  1465. # For this demo of the sqlite engine download:
  1466. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1467. # and unpack into searx/data/filmliste-v2.db
  1468. # Query to test: "!demo concert"
  1469. #
  1470. # - name: demo
  1471. # engine: sqlite
  1472. # shortcut: demo
  1473. # categories: general
  1474. # result_template: default.html
  1475. # database: searx/data/filmliste-v2.db
  1476. # query_str: >-
  1477. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1478. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1479. # description AS content
  1480. # FROM film
  1481. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1482. # ORDER BY duration DESC
  1483. - name: tagesschau
  1484. engine: tagesschau
  1485. # when set to false, display URLs from Tagesschau, and not the actual source
  1486. # (e.g. NDR, WDR, SWR, HR, ...)
  1487. use_source_url: true
  1488. shortcut: ts
  1489. disabled: true
  1490. - name: tmdb
  1491. engine: xpath
  1492. paging: true
  1493. categories: movies
  1494. search_url: https://www.themoviedb.org/search?page={pageno}&query={query}
  1495. results_xpath: //div[contains(@class,"movie") or contains(@class,"tv")]//div[contains(@class,"card")]
  1496. url_xpath: .//div[contains(@class,"poster")]/a/@href
  1497. thumbnail_xpath: .//img/@src
  1498. title_xpath: .//div[contains(@class,"title")]//h2
  1499. content_xpath: .//div[contains(@class,"overview")]
  1500. shortcut: tm
  1501. disabled: true
  1502. # Requires Tor
  1503. - name: torch
  1504. engine: xpath
  1505. paging: true
  1506. search_url:
  1507. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1508. results_xpath: //table//tr
  1509. url_xpath: ./td[2]/a
  1510. title_xpath: ./td[2]/b
  1511. content_xpath: ./td[2]/small
  1512. categories: onions
  1513. enable_http: true
  1514. shortcut: tch
  1515. # torznab engine lets you query any torznab compatible indexer. Using this
  1516. # engine in combination with Jackett opens the possibility to query a lot of
  1517. # public and private indexers directly from SearXNG. More details at:
  1518. # https://docs.searxng.org/dev/engines/online/torznab.html
  1519. #
  1520. # - name: Torznab EZTV
  1521. # engine: torznab
  1522. # shortcut: eztv
  1523. # base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
  1524. # enable_http: true # if using localhost
  1525. # api_key: xxxxxxxxxxxxxxx
  1526. # show_magnet_links: true
  1527. # show_torrent_files: false
  1528. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1529. # torznab_categories: # optional
  1530. # - 2000
  1531. # - 5000
  1532. # tmp suspended - too slow, too many errors
  1533. # - name: urbandictionary
  1534. # engine : xpath
  1535. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1536. # url_xpath : //*[@class="word"]/@href
  1537. # title_xpath : //*[@class="def-header"]
  1538. # content_xpath: //*[@class="meaning"]
  1539. # shortcut: ud
  1540. - name: unsplash
  1541. engine: unsplash
  1542. shortcut: us
  1543. - name: yandex music
  1544. engine: yandex_music
  1545. shortcut: ydm
  1546. disabled: true
  1547. # https://yandex.com/support/music/access.html
  1548. inactive: true
  1549. - name: yahoo
  1550. engine: yahoo
  1551. shortcut: yh
  1552. disabled: true
  1553. - name: yahoo news
  1554. engine: yahoo_news
  1555. shortcut: yhn
  1556. - name: youtube
  1557. shortcut: yt
  1558. # You can use the engine using the official stable API, but you need an API
  1559. # key See: https://console.developers.google.com/project
  1560. #
  1561. # engine: youtube_api
  1562. # api_key: 'apikey' # required!
  1563. #
  1564. # Or you can use the html non-stable engine, activated by default
  1565. engine: youtube_noapi
  1566. - name: dailymotion
  1567. engine: dailymotion
  1568. shortcut: dm
  1569. - name: vimeo
  1570. engine: vimeo
  1571. shortcut: vm
  1572. - name: wiby
  1573. engine: json_engine
  1574. paging: true
  1575. search_url: https://wiby.me/json/?q={query}&p={pageno}
  1576. url_query: URL
  1577. title_query: Title
  1578. content_query: Snippet
  1579. categories: [general, web]
  1580. shortcut: wib
  1581. disabled: true
  1582. about:
  1583. website: https://wiby.me/
  1584. - name: alexandria
  1585. engine: json_engine
  1586. shortcut: alx
  1587. categories: general
  1588. paging: true
  1589. search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
  1590. results_query: results
  1591. title_query: title
  1592. url_query: url
  1593. content_query: snippet
  1594. timeout: 1.5
  1595. disabled: true
  1596. about:
  1597. website: https://alexandria.org/
  1598. official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
  1599. use_official_api: true
  1600. require_api_key: false
  1601. results: JSON
  1602. - name: wikibooks
  1603. engine: mediawiki
  1604. weight: 0.5
  1605. shortcut: wb
  1606. categories: [general, wikimedia]
  1607. base_url: "https://{language}.wikibooks.org/"
  1608. search_type: text
  1609. disabled: true
  1610. about:
  1611. website: https://www.wikibooks.org/
  1612. wikidata_id: Q367
  1613. - name: wikinews
  1614. engine: mediawiki
  1615. shortcut: wn
  1616. categories: [news, wikimedia]
  1617. base_url: "https://{language}.wikinews.org/"
  1618. search_type: text
  1619. srsort: create_timestamp_desc
  1620. about:
  1621. website: https://www.wikinews.org/
  1622. wikidata_id: Q964
  1623. - name: wikiquote
  1624. engine: mediawiki
  1625. weight: 0.5
  1626. shortcut: wq
  1627. categories: [general, wikimedia]
  1628. base_url: "https://{language}.wikiquote.org/"
  1629. search_type: text
  1630. disabled: true
  1631. additional_tests:
  1632. rosebud: *test_rosebud
  1633. about:
  1634. website: https://www.wikiquote.org/
  1635. wikidata_id: Q369
  1636. - name: wikisource
  1637. engine: mediawiki
  1638. weight: 0.5
  1639. shortcut: ws
  1640. categories: [general, wikimedia]
  1641. base_url: "https://{language}.wikisource.org/"
  1642. search_type: text
  1643. disabled: true
  1644. about:
  1645. website: https://www.wikisource.org/
  1646. wikidata_id: Q263
  1647. - name: wikispecies
  1648. engine: mediawiki
  1649. shortcut: wsp
  1650. categories: [general, science, wikimedia]
  1651. base_url: "https://species.wikimedia.org/"
  1652. search_type: text
  1653. disabled: true
  1654. about:
  1655. website: https://species.wikimedia.org/
  1656. wikidata_id: Q13679
  1657. tests:
  1658. wikispecies:
  1659. matrix:
  1660. query: "Campbell, L.I. et al. 2011: MicroRNAs"
  1661. lang: en
  1662. result_container:
  1663. - not_empty
  1664. - ['one_title_contains', 'Tardigrada']
  1665. test:
  1666. - unique_results
  1667. - name: wiktionary
  1668. engine: mediawiki
  1669. shortcut: wt
  1670. categories: [dictionaries, wikimedia]
  1671. base_url: "https://{language}.wiktionary.org/"
  1672. search_type: text
  1673. about:
  1674. website: https://www.wiktionary.org/
  1675. wikidata_id: Q151
  1676. - name: wikiversity
  1677. engine: mediawiki
  1678. weight: 0.5
  1679. shortcut: wv
  1680. categories: [general, wikimedia]
  1681. base_url: "https://{language}.wikiversity.org/"
  1682. search_type: text
  1683. disabled: true
  1684. about:
  1685. website: https://www.wikiversity.org/
  1686. wikidata_id: Q370
  1687. - name: wikivoyage
  1688. engine: mediawiki
  1689. weight: 0.5
  1690. shortcut: wy
  1691. categories: [general, wikimedia]
  1692. base_url: "https://{language}.wikivoyage.org/"
  1693. search_type: text
  1694. disabled: true
  1695. about:
  1696. website: https://www.wikivoyage.org/
  1697. wikidata_id: Q373
  1698. - name: wikicommons.images
  1699. engine: wikicommons
  1700. shortcut: wc
  1701. categories: images
  1702. number_of_results: 10
  1703. - name: wolframalpha
  1704. shortcut: wa
  1705. # You can use the engine using the official stable API, but you need an API
  1706. # key. See: https://products.wolframalpha.com/api/
  1707. #
  1708. # engine: wolframalpha_api
  1709. # api_key: ''
  1710. #
  1711. # Or you can use the html non-stable engine, activated by default
  1712. engine: wolframalpha_noapi
  1713. timeout: 6.0
  1714. categories: general
  1715. disabled: true
  1716. - name: dictzone
  1717. engine: dictzone
  1718. shortcut: dc
  1719. - name: mymemory translated
  1720. engine: translated
  1721. shortcut: tl
  1722. timeout: 5.0
  1723. # You can use without an API key, but you are limited to 1000 words/day
  1724. # See: https://mymemory.translated.net/doc/usagelimits.php
  1725. # api_key: ''
  1726. # Required dependency: mysql-connector-python
  1727. # - name: mysql
  1728. # engine: mysql_server
  1729. # database: mydatabase
  1730. # username: user
  1731. # password: pass
  1732. # limit: 10
  1733. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1734. # shortcut: mysql
  1735. - name: 1337x
  1736. engine: 1337x
  1737. shortcut: 1337x
  1738. disabled: true
  1739. - name: duden
  1740. engine: duden
  1741. shortcut: du
  1742. disabled: true
  1743. - name: seznam
  1744. shortcut: szn
  1745. engine: seznam
  1746. disabled: true
  1747. # - name: deepl
  1748. # engine: deepl
  1749. # shortcut: dpl
  1750. # # You can use the engine using the official stable API, but you need an API key
  1751. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  1752. # api_key: '' # required!
  1753. # timeout: 5.0
  1754. # disabled: true
  1755. - name: mojeek
  1756. shortcut: mjk
  1757. engine: xpath
  1758. paging: true
  1759. categories: [general, web]
  1760. search_url: https://www.mojeek.com/search?q={query}&s={pageno}&lang={lang}&lb={lang}
  1761. results_xpath: //ul[@class="results-standard"]/li/a[@class="ob"]
  1762. url_xpath: ./@href
  1763. title_xpath: ../h2/a
  1764. content_xpath: ..//p[@class="s"]
  1765. suggestion_xpath: //div[@class="top-info"]/p[@class="top-info spell"]/em/a
  1766. first_page_num: 0
  1767. page_size: 10
  1768. max_page: 100
  1769. disabled: true
  1770. about:
  1771. website: https://www.mojeek.com/
  1772. wikidata_id: Q60747299
  1773. official_api_documentation: https://www.mojeek.com/services/api.html/
  1774. use_official_api: false
  1775. require_api_key: false
  1776. results: HTML
  1777. - name: moviepilot
  1778. engine: moviepilot
  1779. shortcut: mp
  1780. disabled: true
  1781. - name: naver
  1782. shortcut: nvr
  1783. categories: [general, web]
  1784. engine: xpath
  1785. paging: true
  1786. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1787. url_xpath: //a[@class="link_tit"]/@href
  1788. title_xpath: //a[@class="link_tit"]
  1789. content_xpath: //div[@class="total_dsc_wrap"]/a
  1790. first_page_num: 1
  1791. page_size: 10
  1792. disabled: true
  1793. about:
  1794. website: https://www.naver.com/
  1795. wikidata_id: Q485639
  1796. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1797. use_official_api: false
  1798. require_api_key: false
  1799. results: HTML
  1800. language: ko
  1801. - name: rubygems
  1802. shortcut: rbg
  1803. engine: xpath
  1804. paging: true
  1805. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1806. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1807. url_xpath: ./@href
  1808. title_xpath: ./span/h2
  1809. content_xpath: ./span/p
  1810. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1811. first_page_num: 1
  1812. categories: [it, packages]
  1813. disabled: true
  1814. about:
  1815. website: https://rubygems.org/
  1816. wikidata_id: Q1853420
  1817. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1818. use_official_api: false
  1819. require_api_key: false
  1820. results: HTML
  1821. - name: peertube
  1822. engine: peertube
  1823. shortcut: ptb
  1824. paging: true
  1825. # alternatives see: https://instances.joinpeertube.org/instances
  1826. # base_url: https://tube.4aem.com
  1827. categories: videos
  1828. disabled: true
  1829. timeout: 6.0
  1830. - name: mediathekviewweb
  1831. engine: mediathekviewweb
  1832. shortcut: mvw
  1833. disabled: true
  1834. - name: yacy
  1835. engine: yacy
  1836. categories: general
  1837. search_type: text
  1838. base_url: https://yacy.searchlab.eu
  1839. shortcut: ya
  1840. disabled: true
  1841. # required if you aren't using HTTPS for your local yacy instance
  1842. # https://docs.searxng.org/dev/engines/online/yacy.html
  1843. # enable_http: true
  1844. # timeout: 3.0
  1845. # search_mode: 'global'
  1846. - name: yacy images
  1847. engine: yacy
  1848. categories: images
  1849. search_type: image
  1850. base_url: https://yacy.searchlab.eu
  1851. shortcut: yai
  1852. disabled: true
  1853. - name: rumble
  1854. engine: rumble
  1855. shortcut: ru
  1856. base_url: https://rumble.com/
  1857. paging: true
  1858. categories: videos
  1859. disabled: true
  1860. - name: livespace
  1861. engine: livespace
  1862. shortcut: ls
  1863. categories: videos
  1864. disabled: true
  1865. timeout: 5.0
  1866. - name: wordnik
  1867. engine: wordnik
  1868. shortcut: def
  1869. base_url: https://www.wordnik.com/
  1870. categories: [dictionaries]
  1871. timeout: 5.0
  1872. - name: woxikon.de synonyme
  1873. engine: xpath
  1874. shortcut: woxi
  1875. categories: [dictionaries]
  1876. timeout: 5.0
  1877. disabled: true
  1878. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  1879. url_xpath: //div[@class="upper-synonyms"]/a/@href
  1880. content_xpath: //div[@class="synonyms-list-group"]
  1881. title_xpath: //div[@class="upper-synonyms"]/a
  1882. no_result_for_http_status: [404]
  1883. about:
  1884. website: https://www.woxikon.de/
  1885. wikidata_id: # No Wikidata ID
  1886. use_official_api: false
  1887. require_api_key: false
  1888. results: HTML
  1889. language: de
  1890. - name: seekr news
  1891. engine: seekr
  1892. shortcut: senews
  1893. categories: news
  1894. seekr_category: news
  1895. disabled: true
  1896. - name: seekr images
  1897. engine: seekr
  1898. network: seekr news
  1899. shortcut: seimg
  1900. categories: images
  1901. seekr_category: images
  1902. disabled: true
  1903. - name: seekr videos
  1904. engine: seekr
  1905. network: seekr news
  1906. shortcut: sevid
  1907. categories: videos
  1908. seekr_category: videos
  1909. disabled: true
  1910. - name: sjp.pwn
  1911. engine: sjp
  1912. shortcut: sjp
  1913. base_url: https://sjp.pwn.pl/
  1914. timeout: 5.0
  1915. disabled: true
  1916. - name: stract
  1917. engine: stract
  1918. shortcut: str
  1919. disabled: true
  1920. - name: svgrepo
  1921. engine: svgrepo
  1922. shortcut: svg
  1923. timeout: 10.0
  1924. disabled: true
  1925. - name: tootfinder
  1926. engine: tootfinder
  1927. shortcut: toot
  1928. - name: voidlinux
  1929. engine: voidlinux
  1930. shortcut: void
  1931. disabled: true
  1932. - name: wallhaven
  1933. engine: wallhaven
  1934. # api_key: abcdefghijklmnopqrstuvwxyz
  1935. shortcut: wh
  1936. # wikimini: online encyclopedia for children
  1937. # The fulltext and title parameter is necessary for Wikimini because
  1938. # sometimes it will not show the results and redirect instead
  1939. - name: wikimini
  1940. engine: xpath
  1941. shortcut: wkmn
  1942. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  1943. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  1944. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  1945. content_xpath: //li/div[@class="searchresult"]
  1946. categories: general
  1947. disabled: true
  1948. about:
  1949. website: https://wikimini.org/
  1950. wikidata_id: Q3568032
  1951. use_official_api: false
  1952. require_api_key: false
  1953. results: HTML
  1954. language: fr
  1955. - name: wttr.in
  1956. engine: wttr
  1957. shortcut: wttr
  1958. timeout: 9.0
  1959. - name: yummly
  1960. engine: yummly
  1961. shortcut: yum
  1962. disabled: true
  1963. - name: brave
  1964. engine: brave
  1965. shortcut: br
  1966. time_range_support: true
  1967. paging: true
  1968. categories: [general, web]
  1969. brave_category: search
  1970. # brave_spellcheck: true
  1971. - name: brave.images
  1972. engine: brave
  1973. network: brave
  1974. shortcut: brimg
  1975. categories: [images, web]
  1976. brave_category: images
  1977. - name: brave.videos
  1978. engine: brave
  1979. network: brave
  1980. shortcut: brvid
  1981. categories: [videos, web]
  1982. brave_category: videos
  1983. - name: brave.news
  1984. engine: brave
  1985. network: brave
  1986. shortcut: brnews
  1987. categories: news
  1988. brave_category: news
  1989. # - name: brave.goggles
  1990. # engine: brave
  1991. # network: brave
  1992. # shortcut: brgog
  1993. # time_range_support: true
  1994. # paging: true
  1995. # categories: [general, web]
  1996. # brave_category: goggles
  1997. # Goggles: # required! This should be a URL ending in .goggle
  1998. - name: lib.rs
  1999. shortcut: lrs
  2000. engine: lib_rs
  2001. disabled: true
  2002. - name: sourcehut
  2003. shortcut: srht
  2004. engine: xpath
  2005. paging: true
  2006. search_url: https://sr.ht/projects?page={pageno}&search={query}
  2007. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  2008. url_xpath: ./h4/a[2]/@href
  2009. title_xpath: ./h4/a[2]
  2010. content_xpath: ./p
  2011. first_page_num: 1
  2012. categories: [it, repos]
  2013. disabled: true
  2014. about:
  2015. website: https://sr.ht
  2016. wikidata_id: Q78514485
  2017. official_api_documentation: https://man.sr.ht/
  2018. use_official_api: false
  2019. require_api_key: false
  2020. results: HTML
  2021. - name: goo
  2022. shortcut: goo
  2023. engine: xpath
  2024. paging: true
  2025. search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
  2026. url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
  2027. title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
  2028. content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
  2029. first_page_num: 0
  2030. categories: [general, web]
  2031. disabled: true
  2032. timeout: 4.0
  2033. about:
  2034. website: https://search.goo.ne.jp
  2035. wikidata_id: Q249044
  2036. use_official_api: false
  2037. require_api_key: false
  2038. results: HTML
  2039. language: ja
  2040. - name: bt4g
  2041. engine: bt4g
  2042. shortcut: bt4g
  2043. - name: pkg.go.dev
  2044. engine: pkg_go_dev
  2045. shortcut: pgo
  2046. disabled: true
  2047. # Doku engine lets you access to any Doku wiki instance:
  2048. # A public one or a privete/corporate one.
  2049. # - name: ubuntuwiki
  2050. # engine: doku
  2051. # shortcut: uw
  2052. # base_url: 'https://doc.ubuntu-fr.org'
  2053. # Be careful when enabling this engine if you are
  2054. # running a public instance. Do not expose any sensitive
  2055. # information. You can restrict access by configuring a list
  2056. # of access tokens under tokens.
  2057. # - name: git grep
  2058. # engine: command
  2059. # command: ['git', 'grep', '{{QUERY}}']
  2060. # shortcut: gg
  2061. # tokens: []
  2062. # disabled: true
  2063. # delimiter:
  2064. # chars: ':'
  2065. # keys: ['filepath', 'code']
  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: locate
  2071. # engine: command
  2072. # command: ['locate', '{{QUERY}}']
  2073. # shortcut: loc
  2074. # tokens: []
  2075. # disabled: true
  2076. # delimiter:
  2077. # chars: ' '
  2078. # keys: ['line']
  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: find
  2084. # engine: command
  2085. # command: ['find', '.', '-name', '{{QUERY}}']
  2086. # query_type: path
  2087. # shortcut: fnd
  2088. # tokens: []
  2089. # disabled: true
  2090. # delimiter:
  2091. # chars: ' '
  2092. # keys: ['line']
  2093. # Be careful when enabling this engine if you are
  2094. # running a public instance. Do not expose any sensitive
  2095. # information. You can restrict access by configuring a list
  2096. # of access tokens under tokens.
  2097. # - name: pattern search in files
  2098. # engine: command
  2099. # command: ['fgrep', '{{QUERY}}']
  2100. # shortcut: fgr
  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: regex search in files
  2111. # engine: command
  2112. # command: ['grep', '{{QUERY}}']
  2113. # shortcut: gr
  2114. # tokens: []
  2115. # disabled: true
  2116. # delimiter:
  2117. # chars: ' '
  2118. # keys: ['line']
  2119. doi_resolvers:
  2120. oadoi.org: 'https://oadoi.org/'
  2121. doi.org: 'https://doi.org/'
  2122. doai.io: 'https://dissem.in/'
  2123. sci-hub.se: 'https://sci-hub.se/'
  2124. sci-hub.st: 'https://sci-hub.st/'
  2125. sci-hub.ru: 'https://sci-hub.ru/'
  2126. default_doi_resolver: 'oadoi.org'