settings.yml 61 KB

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