settings.yml 61 KB

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