settings.yml 61 KB

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