settings.yml 53 KB

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