settings.yml 61 KB

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