settings.yml 61 KB

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