settings.yml 61 KB

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