settings.yml 60 KB

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