settings.yml 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028
  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. - name: ccc-tv
  378. engine: xpath
  379. paging: false
  380. search_url: https://media.ccc.de/search/?q={query}
  381. url_xpath: //div[@class="caption"]/h3/a/@href
  382. title_xpath: //div[@class="caption"]/h3/a/text()
  383. content_xpath: //div[@class="caption"]/h4/@title
  384. categories: videos
  385. disabled: true
  386. shortcut: c3tv
  387. about:
  388. website: https://media.ccc.de/
  389. wikidata_id: Q80729951
  390. official_api_documentation: https://github.com/voc/voctoweb
  391. use_official_api: false
  392. require_api_key: false
  393. results: HTML
  394. # We don't set language: de here because media.ccc.de is not just
  395. # for a German audience. It contains many English videos and many
  396. # German videos have English subtitles.
  397. - name: openverse
  398. engine: openverse
  399. categories: images
  400. shortcut: opv
  401. # - name: core.ac.uk
  402. # engine: core
  403. # categories: science
  404. # shortcut: cor
  405. # # get your API key from: https://core.ac.uk/api-keys/register/
  406. # api_key: 'unset'
  407. - name: crossref
  408. engine: crossref
  409. shortcut: cr
  410. timeout: 30
  411. disabled: true
  412. - name: crowdview
  413. engine: json_engine
  414. shortcut: cv
  415. categories: general
  416. paging: false
  417. search_url: https://crowdview-next-js.onrender.com/api/search-v3?query={query}
  418. results_query: results
  419. url_query: link
  420. title_query: title
  421. content_query: snippet
  422. disabled: true
  423. about:
  424. website: https://crowdview.ai/
  425. - name: yep
  426. engine: json_engine
  427. shortcut: yep
  428. categories: general
  429. disabled: true
  430. paging: false
  431. content_html_to_text: true
  432. title_html_to_text: true
  433. search_url: https://api.yep.com/fs/1/?type=web&q={query}&no_correct=false&limit=100
  434. results_query: 1/results
  435. title_query: title
  436. url_query: url
  437. content_query: snippet
  438. about:
  439. website: https://yep.com
  440. use_official_api: false
  441. require_api_key: false
  442. results: JSON
  443. - name: curlie
  444. engine: xpath
  445. shortcut: cl
  446. categories: general
  447. disabled: true
  448. paging: true
  449. lang_all: ''
  450. search_url: https://curlie.org/search?q={query}&lang={lang}&start={pageno}&stime=92452189
  451. page_size: 20
  452. results_xpath: //div[@id="site-list-content"]/div[@class="site-item"]
  453. url_xpath: ./div[@class="title-and-desc"]/a/@href
  454. title_xpath: ./div[@class="title-and-desc"]/a/div
  455. content_xpath: ./div[@class="title-and-desc"]/div[@class="site-descr"]
  456. about:
  457. website: https://curlie.org/
  458. wikidata_id: Q60715723
  459. use_official_api: false
  460. require_api_key: false
  461. results: HTML
  462. - name: currency
  463. engine: currency_convert
  464. categories: general
  465. shortcut: cc
  466. - name: deezer
  467. engine: deezer
  468. shortcut: dz
  469. disabled: true
  470. - name: deviantart
  471. engine: deviantart
  472. shortcut: da
  473. timeout: 3.0
  474. - name: ddg definitions
  475. engine: duckduckgo_definitions
  476. shortcut: ddd
  477. weight: 2
  478. disabled: true
  479. tests: *tests_infobox
  480. # cloudflare protected
  481. # - name: digbt
  482. # engine: digbt
  483. # shortcut: dbt
  484. # timeout: 6.0
  485. # disabled: true
  486. - name: docker hub
  487. engine: docker_hub
  488. shortcut: dh
  489. categories: [it, packages]
  490. - name: erowid
  491. engine: xpath
  492. paging: true
  493. first_page_num: 0
  494. page_size: 30
  495. search_url: https://www.erowid.org/search.php?q={query}&s={pageno}
  496. url_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  497. title_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  498. content_xpath: //dl[@class="results-list"]/dd[@class="result-details"]
  499. categories: []
  500. shortcut: ew
  501. disabled: true
  502. about:
  503. website: https://www.erowid.org/
  504. wikidata_id: Q1430691
  505. official_api_documentation:
  506. use_official_api: false
  507. require_api_key: false
  508. results: HTML
  509. # - name: elasticsearch
  510. # shortcut: es
  511. # engine: elasticsearch
  512. # base_url: http://localhost:9200
  513. # username: elastic
  514. # password: changeme
  515. # index: my-index
  516. # # available options: match, simple_query_string, term, terms, custom
  517. # query_type: match
  518. # # if query_type is set to custom, provide your query here
  519. # #custom_query_json: {"query":{"match_all": {}}}
  520. # #show_metadata: false
  521. # disabled: true
  522. - name: wikidata
  523. engine: wikidata
  524. shortcut: wd
  525. timeout: 3.0
  526. weight: 2
  527. tests: *tests_infobox
  528. - name: duckduckgo
  529. engine: duckduckgo
  530. shortcut: ddg
  531. - name: duckduckgo images
  532. engine: duckduckgo_images
  533. shortcut: ddi
  534. timeout: 3.0
  535. disabled: true
  536. - name: duckduckgo weather
  537. engine: duckduckgo_weather
  538. shortcut: ddw
  539. disabled: true
  540. - name: apple maps
  541. engine: apple_maps
  542. shortcut: apm
  543. disabled: true
  544. timeout: 5.0
  545. - name: emojipedia
  546. engine: emojipedia
  547. timeout: 4.0
  548. shortcut: em
  549. disabled: true
  550. - name: tineye
  551. engine: tineye
  552. shortcut: tin
  553. timeout: 9.0
  554. disabled: true
  555. - name: etymonline
  556. engine: xpath
  557. paging: true
  558. search_url: https://etymonline.com/search?page={pageno}&q={query}
  559. url_xpath: //a[contains(@class, "word__name--")]/@href
  560. title_xpath: //a[contains(@class, "word__name--")]
  561. content_xpath: //section[contains(@class, "word__defination")]
  562. first_page_num: 1
  563. shortcut: et
  564. categories: [dictionaries]
  565. about:
  566. website: https://www.etymonline.com/
  567. wikidata_id: Q1188617
  568. official_api_documentation:
  569. use_official_api: false
  570. require_api_key: false
  571. results: HTML
  572. # - name: ebay
  573. # engine: ebay
  574. # shortcut: eb
  575. # base_url: 'https://www.ebay.com'
  576. # disabled: true
  577. # timeout: 5
  578. - name: 1x
  579. engine: www1x
  580. shortcut: 1x
  581. timeout: 3.0
  582. disabled: true
  583. - name: fdroid
  584. engine: fdroid
  585. shortcut: fd
  586. disabled: true
  587. - name: flickr
  588. categories: images
  589. shortcut: fl
  590. # You can use the engine using the official stable API, but you need an API
  591. # key, see: https://www.flickr.com/services/apps/create/
  592. # engine: flickr
  593. # api_key: 'apikey' # required!
  594. # Or you can use the html non-stable engine, activated by default
  595. engine: flickr_noapi
  596. - name: free software directory
  597. engine: mediawiki
  598. shortcut: fsd
  599. categories: [it, software wikis]
  600. base_url: https://directory.fsf.org/
  601. number_of_results: 5
  602. # what part of a page matches the query string: title, text, nearmatch
  603. # * title - query matches title
  604. # * text - query matches the text of page
  605. # * nearmatch - nearmatch in title
  606. search_type: title
  607. timeout: 5.0
  608. disabled: true
  609. about:
  610. website: https://directory.fsf.org/
  611. wikidata_id: Q2470288
  612. # - name: freesound
  613. # engine: freesound
  614. # shortcut: fnd
  615. # disabled: true
  616. # timeout: 15.0
  617. # API key required, see: https://freesound.org/docs/api/overview.html
  618. # api_key: MyAPIkey
  619. - name: frinkiac
  620. engine: frinkiac
  621. shortcut: frk
  622. disabled: true
  623. - name: genius
  624. engine: genius
  625. shortcut: gen
  626. - name: gentoo
  627. engine: gentoo
  628. shortcut: ge
  629. timeout: 10.0
  630. - name: gitlab
  631. engine: json_engine
  632. paging: true
  633. search_url: https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  634. url_query: web_url
  635. title_query: name_with_namespace
  636. content_query: description
  637. page_size: 20
  638. categories: [it, repos]
  639. shortcut: gl
  640. timeout: 10.0
  641. disabled: true
  642. about:
  643. website: https://about.gitlab.com/
  644. wikidata_id: Q16639197
  645. official_api_documentation: https://docs.gitlab.com/ee/api/
  646. use_official_api: false
  647. require_api_key: false
  648. results: JSON
  649. - name: github
  650. engine: github
  651. shortcut: gh
  652. # This a Gitea service. If you would like to use a different instance,
  653. # change codeberg.org to URL of the desired Gitea host. Or you can create a
  654. # new engine by copying this and changing the name, shortcut and search_url.
  655. - name: codeberg
  656. engine: json_engine
  657. search_url: https://codeberg.org/api/v1/repos/search?q={query}&limit=10
  658. url_query: html_url
  659. title_query: name
  660. content_query: description
  661. categories: [it, repos]
  662. shortcut: cb
  663. disabled: true
  664. about:
  665. website: https://codeberg.org/
  666. wikidata_id:
  667. official_api_documentation: https://try.gitea.io/api/swagger
  668. use_official_api: false
  669. require_api_key: false
  670. results: JSON
  671. - name: google
  672. engine: google
  673. shortcut: go
  674. # additional_tests:
  675. # android: *test_android
  676. - name: google images
  677. engine: google_images
  678. shortcut: goi
  679. # additional_tests:
  680. # android: *test_android
  681. # dali:
  682. # matrix:
  683. # query: ['Dali Christ']
  684. # lang: ['en', 'de', 'fr', 'zh-CN']
  685. # result_container:
  686. # - ['one_title_contains', 'Salvador']
  687. - name: google news
  688. engine: google_news
  689. shortcut: gon
  690. # additional_tests:
  691. # android: *test_android
  692. - name: google videos
  693. engine: google_videos
  694. shortcut: gov
  695. # additional_tests:
  696. # android: *test_android
  697. - name: google scholar
  698. engine: google_scholar
  699. shortcut: gos
  700. - name: google play apps
  701. engine: google_play
  702. categories: [files, apps]
  703. shortcut: gpa
  704. play_categ: apps
  705. disabled: true
  706. - name: google play movies
  707. engine: google_play
  708. categories: videos
  709. shortcut: gpm
  710. play_categ: movies
  711. disabled: true
  712. - name: gpodder
  713. engine: json_engine
  714. shortcut: gpod
  715. timeout: 4.0
  716. paging: false
  717. search_url: https://gpodder.net/search.json?q={query}
  718. url_query: url
  719. title_query: title
  720. content_query: description
  721. page_size: 19
  722. categories: music
  723. disabled: true
  724. about:
  725. website: https://gpodder.net
  726. wikidata_id: Q3093354
  727. official_api_documentation: https://gpoddernet.readthedocs.io/en/latest/api/
  728. use_official_api: false
  729. requires_api_key: false
  730. results: JSON
  731. - name: habrahabr
  732. engine: xpath
  733. paging: true
  734. search_url: https://habrahabr.ru/search/page{pageno}/?q={query}
  735. url_xpath: //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  736. title_xpath: //article[contains(@class, "post")]//a[@class="post__title_link"]
  737. content_xpath: //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  738. categories: it
  739. timeout: 4.0
  740. disabled: true
  741. shortcut: habr
  742. about:
  743. website: https://habr.com/
  744. wikidata_id: Q4494434
  745. official_api_documentation: https://habr.com/en/docs/help/api/
  746. use_official_api: false
  747. require_api_key: false
  748. results: HTML
  749. - name: hoogle
  750. engine: xpath
  751. paging: true
  752. search_url: https://hoogle.haskell.org/?hoogle={query}&start={pageno}
  753. results_xpath: '//div[@class="result"]'
  754. title_xpath: './/div[@class="ans"]//a'
  755. url_xpath: './/div[@class="ans"]//a/@href'
  756. content_xpath: './/div[@class="from"]'
  757. page_size: 20
  758. categories: [it, packages]
  759. shortcut: ho
  760. about:
  761. website: https://hoogle.haskell.org/
  762. wikidata_id: Q34010
  763. official_api_documentation: https://hackage.haskell.org/api
  764. use_official_api: false
  765. require_api_key: false
  766. results: JSON
  767. - name: imdb
  768. engine: imdb
  769. shortcut: imdb
  770. timeout: 6.0
  771. disabled: true
  772. - name: ina
  773. engine: ina
  774. shortcut: in
  775. timeout: 6.0
  776. disabled: true
  777. - name: invidious
  778. engine: invidious
  779. # Instanes will be selected randomly, see https://api.invidious.io/ for
  780. # instances that are stable (good uptime) and close to you.
  781. base_url:
  782. - https://invidious.snopyta.org
  783. - https://vid.puffyan.us
  784. # - https://invidious.kavin.rocks # Error 1020 // Access denied by Cloudflare
  785. - https://invidio.xamh.de
  786. - https://inv.riverside.rocks
  787. shortcut: iv
  788. timeout: 3.0
  789. disabled: true
  790. - name: jisho
  791. engine: jisho
  792. shortcut: js
  793. timeout: 3.0
  794. disabled: true
  795. - name: kickass
  796. engine: kickass
  797. shortcut: kc
  798. timeout: 4.0
  799. disabled: true
  800. - name: library genesis
  801. engine: xpath
  802. search_url: https://libgen.fun/search.php?req={query}
  803. url_xpath: //a[contains(@href,"get.php?md5")]/@href
  804. title_xpath: //a[contains(@href,"book/")]/text()[1]
  805. content_xpath: //td/a[1][contains(@href,"=author")]/text()
  806. categories: files
  807. timeout: 7.0
  808. disabled: true
  809. shortcut: lg
  810. about:
  811. website: https://libgen.fun/
  812. wikidata_id: Q22017206
  813. official_api_documentation:
  814. use_official_api: false
  815. require_api_key: false
  816. results: HTML
  817. - name: z-library
  818. engine: zlibrary
  819. shortcut: zlib
  820. categories: files
  821. timeout: 7.0
  822. - name: library of congress
  823. engine: loc
  824. shortcut: loc
  825. categories: images
  826. - name: lingva
  827. engine: lingva
  828. shortcut: lv
  829. # set lingva instance in url, by default it will use the official instance
  830. # url: https://lingva.ml
  831. - name: lobste.rs
  832. engine: xpath
  833. search_url: https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  834. results_xpath: //li[contains(@class, "story")]
  835. url_xpath: .//a[@class="u-url"]/@href
  836. title_xpath: .//a[@class="u-url"]
  837. content_xpath: .//a[@class="domain"]
  838. categories: it
  839. shortcut: lo
  840. timeout: 5.0
  841. disabled: true
  842. about:
  843. website: https://lobste.rs/
  844. wikidata_id: Q60762874
  845. official_api_documentation:
  846. use_official_api: false
  847. require_api_key: false
  848. results: HTML
  849. - name: azlyrics
  850. shortcut: lyrics
  851. engine: xpath
  852. timeout: 4.0
  853. disabled: true
  854. categories: [music, lyrics]
  855. paging: true
  856. search_url: https://search.azlyrics.com/search.php?q={query}&w=lyrics&p={pageno}
  857. url_xpath: //td[@class="text-left visitedlyr"]/a/@href
  858. title_xpath: //span/b/text()
  859. content_xpath: //td[@class="text-left visitedlyr"]/a/small
  860. about:
  861. website: https://azlyrics.com
  862. wikidata_id: Q66372542
  863. official_api_documentation:
  864. use_official_api: false
  865. require_api_key: false
  866. results: HTML
  867. - name: metacpan
  868. engine: metacpan
  869. shortcut: cpan
  870. disabled: true
  871. number_of_results: 20
  872. # - name: meilisearch
  873. # engine: meilisearch
  874. # shortcut: mes
  875. # enable_http: true
  876. # base_url: http://localhost:7700
  877. # index: my-index
  878. - name: mixcloud
  879. engine: mixcloud
  880. shortcut: mc
  881. # MongoDB engine
  882. # Required dependency: pymongo
  883. # - name: mymongo
  884. # engine: mongodb
  885. # shortcut: md
  886. # exact_match_only: false
  887. # host: '127.0.0.1'
  888. # port: 27017
  889. # enable_http: true
  890. # results_per_page: 20
  891. # database: 'business'
  892. # collection: 'reviews' # name of the db collection
  893. # key: 'name' # key in the collection to search for
  894. - name: npm
  895. engine: json_engine
  896. paging: true
  897. first_page_num: 0
  898. search_url: https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  899. results_query: results
  900. url_query: package/links/npm
  901. title_query: package/name
  902. content_query: package/description
  903. page_size: 25
  904. categories: [it, packages]
  905. disabled: true
  906. timeout: 5.0
  907. shortcut: npm
  908. about:
  909. website: https://npms.io/
  910. wikidata_id: Q7067518
  911. official_api_documentation: https://api-docs.npms.io/
  912. use_official_api: false
  913. require_api_key: false
  914. results: JSON
  915. - name: nyaa
  916. engine: nyaa
  917. shortcut: nt
  918. disabled: true
  919. - name: mankier
  920. engine: json_engine
  921. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  922. results_query: results
  923. url_query: url
  924. title_query: name
  925. content_query: description
  926. categories: it
  927. shortcut: man
  928. about:
  929. website: https://www.mankier.com/
  930. official_api_documentation: https://www.mankier.com/api
  931. use_official_api: true
  932. require_api_key: false
  933. results: JSON
  934. - name: openairedatasets
  935. engine: json_engine
  936. paging: true
  937. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  938. results_query: response/results/result
  939. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  940. title_query: metadata/oaf:entity/oaf:result/title/$
  941. content_query: metadata/oaf:entity/oaf:result/description/$
  942. content_html_to_text: true
  943. categories: "science"
  944. shortcut: oad
  945. timeout: 5.0
  946. about:
  947. website: https://www.openaire.eu/
  948. wikidata_id: Q25106053
  949. official_api_documentation: https://api.openaire.eu/
  950. use_official_api: false
  951. require_api_key: false
  952. results: JSON
  953. - name: openairepublications
  954. engine: json_engine
  955. paging: true
  956. search_url: https://api.openaire.eu/search/publications?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: oap
  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: opensemanticsearch
  973. # engine: opensemantic
  974. # shortcut: oss
  975. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  976. - name: openstreetmap
  977. engine: openstreetmap
  978. shortcut: osm
  979. - name: openrepos
  980. engine: xpath
  981. paging: true
  982. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  983. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  984. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  985. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  986. categories: files
  987. timeout: 4.0
  988. disabled: true
  989. shortcut: or
  990. about:
  991. website: https://openrepos.net/
  992. wikidata_id:
  993. official_api_documentation:
  994. use_official_api: false
  995. require_api_key: false
  996. results: HTML
  997. - name: packagist
  998. engine: json_engine
  999. paging: true
  1000. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  1001. results_query: results
  1002. url_query: url
  1003. title_query: name
  1004. content_query: description
  1005. categories: [it, packages]
  1006. disabled: true
  1007. timeout: 5.0
  1008. shortcut: pack
  1009. about:
  1010. website: https://packagist.org
  1011. wikidata_id: Q108311377
  1012. official_api_documentation: https://packagist.org/apidoc
  1013. use_official_api: true
  1014. require_api_key: false
  1015. results: JSON
  1016. - name: pdbe
  1017. engine: pdbe
  1018. shortcut: pdb
  1019. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1020. # hide_obsolete: false
  1021. - name: photon
  1022. engine: photon
  1023. shortcut: ph
  1024. - name: piped
  1025. engine: piped
  1026. shortcut: ppd
  1027. categories: videos
  1028. piped_filter: videos
  1029. timeout: 3.0
  1030. # URL to use as link and for embeds
  1031. frontend_url: https://srv.piped.video
  1032. # Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
  1033. backend_url:
  1034. - https://pipedapi.kavin.rocks
  1035. - https://pipedapi-libre.kavin.rocks
  1036. - https://pipedapi.adminforge.de
  1037. - name: piped.music
  1038. engine: piped
  1039. network: piped
  1040. shortcut: ppdm
  1041. categories: music
  1042. piped_filter: music_songs
  1043. timeout: 3.0
  1044. - name: piratebay
  1045. engine: piratebay
  1046. shortcut: tpb
  1047. # You may need to change this URL to a proxy if piratebay is blocked in your
  1048. # country
  1049. url: https://thepiratebay.org/
  1050. timeout: 3.0
  1051. # Required dependency: psychopg2
  1052. # - name: postgresql
  1053. # engine: postgresql
  1054. # database: postgres
  1055. # username: postgres
  1056. # password: postgres
  1057. # limit: 10
  1058. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1059. # shortcut : psql
  1060. - name: pub.dev
  1061. engine: xpath
  1062. shortcut: pd
  1063. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1064. paging: true
  1065. results_xpath: /html/body/main/div/div[@class="search-results"]/div[@class="packages"]/div
  1066. url_xpath: ./div/h3/a/@href
  1067. title_xpath: ./div/h3/a
  1068. content_xpath: ./p[@class="packages-description"]
  1069. categories: [packages, it]
  1070. timeout: 3.0
  1071. disabled: true
  1072. first_page_num: 1
  1073. about:
  1074. website: https://pub.dev/
  1075. official_api_documentation: https://pub.dev/help/api
  1076. use_official_api: false
  1077. require_api_key: false
  1078. results: HTML
  1079. - name: pubmed
  1080. engine: pubmed
  1081. shortcut: pub
  1082. timeout: 3.0
  1083. - name: pypi
  1084. shortcut: pypi
  1085. engine: xpath
  1086. paging: true
  1087. search_url: https://pypi.org/search?q={query}&page={pageno}
  1088. results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"]
  1089. url_xpath: ./@href
  1090. title_xpath: ./h3/span[@class="package-snippet__name"]
  1091. content_xpath: ./p
  1092. suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"]
  1093. first_page_num: 1
  1094. categories: [it, packages]
  1095. about:
  1096. website: https://pypi.org
  1097. wikidata_id: Q2984686
  1098. official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html
  1099. use_official_api: false
  1100. require_api_key: false
  1101. results: HTML
  1102. - name: qwant
  1103. qwant_categ: web
  1104. engine: qwant
  1105. shortcut: qw
  1106. categories: [general, web]
  1107. additional_tests:
  1108. rosebud: *test_rosebud
  1109. - name: qwant news
  1110. qwant_categ: news
  1111. engine: qwant
  1112. shortcut: qwn
  1113. categories: news
  1114. network: qwant
  1115. - name: qwant images
  1116. qwant_categ: images
  1117. engine: qwant
  1118. shortcut: qwi
  1119. categories: [images, web]
  1120. network: qwant
  1121. - name: qwant videos
  1122. qwant_categ: videos
  1123. engine: qwant
  1124. shortcut: qwv
  1125. categories: [videos, web]
  1126. network: qwant
  1127. # - name: library
  1128. # engine: recoll
  1129. # shortcut: lib
  1130. # base_url: 'https://recoll.example.org/'
  1131. # search_dir: ''
  1132. # mount_prefix: /export
  1133. # dl_prefix: 'https://download.example.org'
  1134. # timeout: 30.0
  1135. # categories: files
  1136. # disabled: true
  1137. # - name: recoll library reference
  1138. # engine: recoll
  1139. # base_url: 'https://recoll.example.org/'
  1140. # search_dir: reference
  1141. # mount_prefix: /export
  1142. # dl_prefix: 'https://download.example.org'
  1143. # shortcut: libr
  1144. # timeout: 30.0
  1145. # categories: files
  1146. # disabled: true
  1147. - name: reddit
  1148. engine: reddit
  1149. shortcut: re
  1150. page_size: 25
  1151. # Required dependency: redis
  1152. # - name: myredis
  1153. # shortcut : rds
  1154. # engine: redis_server
  1155. # exact_match_only: false
  1156. # host: '127.0.0.1'
  1157. # port: 6379
  1158. # enable_http: true
  1159. # password: ''
  1160. # db: 0
  1161. # tmp suspended: bad certificate
  1162. # - name: scanr structures
  1163. # shortcut: scs
  1164. # engine: scanr_structures
  1165. # disabled: true
  1166. - name: sepiasearch
  1167. engine: sepiasearch
  1168. shortcut: sep
  1169. - name: soundcloud
  1170. engine: soundcloud
  1171. shortcut: sc
  1172. - name: stackoverflow
  1173. engine: stackexchange
  1174. shortcut: st
  1175. api_site: 'stackoverflow'
  1176. categories: [it, q&a]
  1177. - name: askubuntu
  1178. engine: stackexchange
  1179. shortcut: ubuntu
  1180. api_site: 'askubuntu'
  1181. categories: [it, q&a]
  1182. - name: superuser
  1183. engine: stackexchange
  1184. shortcut: su
  1185. api_site: 'superuser'
  1186. categories: [it, q&a]
  1187. - name: searchcode code
  1188. engine: searchcode_code
  1189. shortcut: scc
  1190. disabled: true
  1191. - name: framalibre
  1192. engine: framalibre
  1193. shortcut: frl
  1194. disabled: true
  1195. # - name: searx
  1196. # engine: searx_engine
  1197. # shortcut: se
  1198. # instance_urls :
  1199. # - http://127.0.0.1:8888/
  1200. # - ...
  1201. # disabled: true
  1202. - name: semantic scholar
  1203. engine: semantic_scholar
  1204. disabled: true
  1205. shortcut: se
  1206. # Spotify needs API credentials
  1207. # - name: spotify
  1208. # engine: spotify
  1209. # shortcut: stf
  1210. # api_client_id: *******
  1211. # api_client_secret: *******
  1212. # - name: solr
  1213. # engine: solr
  1214. # shortcut: slr
  1215. # base_url: http://localhost:8983
  1216. # collection: collection_name
  1217. # sort: '' # sorting: asc or desc
  1218. # field_list: '' # comma separated list of field names to display on the UI
  1219. # default_fields: '' # default field to query
  1220. # query_fields: '' # query fields
  1221. # enable_http: true
  1222. # - name: springer nature
  1223. # engine: springer
  1224. # # get your API key from: https://dev.springernature.com/signup
  1225. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1226. # api_key: 'unset'
  1227. # shortcut: springer
  1228. # timeout: 15.0
  1229. - name: startpage
  1230. engine: startpage
  1231. shortcut: sp
  1232. timeout: 6.0
  1233. disabled: true
  1234. additional_tests:
  1235. rosebud: *test_rosebud
  1236. - name: tokyotoshokan
  1237. engine: tokyotoshokan
  1238. shortcut: tt
  1239. timeout: 6.0
  1240. disabled: true
  1241. - name: solidtorrents
  1242. engine: solidtorrents
  1243. shortcut: solid
  1244. timeout: 4.0
  1245. base_url:
  1246. - https://solidtorrents.net
  1247. - https://solidtorrents.eu
  1248. - https://solidtorrents.to
  1249. - https://bitsearch.to
  1250. # For this demo of the sqlite engine download:
  1251. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1252. # and unpack into searx/data/filmliste-v2.db
  1253. # Query to test: "!demo concert"
  1254. #
  1255. # - name: demo
  1256. # engine: sqlite
  1257. # shortcut: demo
  1258. # categories: general
  1259. # result_template: default.html
  1260. # database: searx/data/filmliste-v2.db
  1261. # query_str: >-
  1262. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1263. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1264. # description AS content
  1265. # FROM film
  1266. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1267. # ORDER BY duration DESC
  1268. # Requires Tor
  1269. - name: torch
  1270. engine: xpath
  1271. paging: true
  1272. search_url:
  1273. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1274. results_xpath: //table//tr
  1275. url_xpath: ./td[2]/a
  1276. title_xpath: ./td[2]/b
  1277. content_xpath: ./td[2]/small
  1278. categories: onions
  1279. enable_http: true
  1280. shortcut: tch
  1281. # torznab engine lets you query any torznab compatible indexer. Using this
  1282. # engine in combination with Jackett opens the possibility to query a lot of
  1283. # public and private indexers directly from SearXNG. More details at:
  1284. # https://docs.searxng.org/src/searx.engines.torznab.html
  1285. #
  1286. # - name: Torznab EZTV
  1287. # engine: torznab
  1288. # shortcut: eztv
  1289. # base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
  1290. # enable_http: true # if using localhost
  1291. # api_key: xxxxxxxxxxxxxxx
  1292. # show_magnet_links: true
  1293. # show_torrent_files: false
  1294. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1295. # torznab_categories: # optional
  1296. # - 2000
  1297. # - 5000
  1298. - name: twitter
  1299. shortcut: tw
  1300. engine: twitter
  1301. disabled: true
  1302. # maybe in a fun category
  1303. # - name: uncyclopedia
  1304. # engine: mediawiki
  1305. # shortcut: unc
  1306. # base_url: https://uncyclopedia.wikia.com/
  1307. # number_of_results: 5
  1308. # tmp suspended - too slow, too many errors
  1309. # - name: urbandictionary
  1310. # engine : xpath
  1311. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1312. # url_xpath : //*[@class="word"]/@href
  1313. # title_xpath : //*[@class="def-header"]
  1314. # content_xpath: //*[@class="meaning"]
  1315. # shortcut: ud
  1316. - name: unsplash
  1317. engine: unsplash
  1318. shortcut: us
  1319. - name: yahoo
  1320. engine: yahoo
  1321. shortcut: yh
  1322. disabled: true
  1323. - name: yahoo news
  1324. engine: yahoo_news
  1325. shortcut: yhn
  1326. - name: youtube
  1327. shortcut: yt
  1328. # You can use the engine using the official stable API, but you need an API
  1329. # key See: https://console.developers.google.com/project
  1330. #
  1331. # engine: youtube_api
  1332. # api_key: 'apikey' # required!
  1333. #
  1334. # Or you can use the html non-stable engine, activated by default
  1335. engine: youtube_noapi
  1336. - name: dailymotion
  1337. engine: dailymotion
  1338. shortcut: dm
  1339. - name: vimeo
  1340. engine: vimeo
  1341. shortcut: vm
  1342. - name: wiby
  1343. engine: json_engine
  1344. paging: true
  1345. search_url: https://wiby.me/json/?q={query}&p={pageno}
  1346. url_query: URL
  1347. title_query: Title
  1348. content_query: Snippet
  1349. categories: [general, web]
  1350. shortcut: wib
  1351. disabled: true
  1352. about:
  1353. website: https://wiby.me/
  1354. - name: alexandria
  1355. engine: json_engine
  1356. shortcut: alx
  1357. categories: general
  1358. paging: true
  1359. search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
  1360. results_query: results
  1361. title_query: title
  1362. url_query: url
  1363. content_query: snippet
  1364. timeout: 1.5
  1365. disabled: true
  1366. about:
  1367. website: https://alexandria.org/
  1368. official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
  1369. use_official_api: true
  1370. require_api_key: false
  1371. results: JSON
  1372. - name: wikibooks
  1373. engine: mediawiki
  1374. shortcut: wb
  1375. categories: general
  1376. base_url: "https://{language}.wikibooks.org/"
  1377. number_of_results: 5
  1378. search_type: text
  1379. disabled: true
  1380. about:
  1381. website: https://www.wikibooks.org/
  1382. wikidata_id: Q367
  1383. - name: wikinews
  1384. engine: mediawiki
  1385. shortcut: wn
  1386. categories: news
  1387. base_url: "https://{language}.wikinews.org/"
  1388. number_of_results: 5
  1389. search_type: text
  1390. disabled: true
  1391. about:
  1392. website: https://www.wikinews.org/
  1393. wikidata_id: Q964
  1394. - name: wikiquote
  1395. engine: mediawiki
  1396. shortcut: wq
  1397. categories: general
  1398. base_url: "https://{language}.wikiquote.org/"
  1399. number_of_results: 5
  1400. search_type: text
  1401. disabled: true
  1402. additional_tests:
  1403. rosebud: *test_rosebud
  1404. about:
  1405. website: https://www.wikiquote.org/
  1406. wikidata_id: Q369
  1407. - name: wikisource
  1408. engine: mediawiki
  1409. shortcut: ws
  1410. categories: general
  1411. base_url: "https://{language}.wikisource.org/"
  1412. number_of_results: 5
  1413. search_type: text
  1414. disabled: true
  1415. about:
  1416. website: https://www.wikisource.org/
  1417. wikidata_id: Q263
  1418. - name: wiktionary
  1419. engine: mediawiki
  1420. shortcut: wt
  1421. categories: [dictionaries]
  1422. base_url: "https://{language}.wiktionary.org/"
  1423. number_of_results: 5
  1424. search_type: text
  1425. about:
  1426. website: https://www.wiktionary.org/
  1427. wikidata_id: Q151
  1428. - name: wikiversity
  1429. engine: mediawiki
  1430. shortcut: wv
  1431. categories: general
  1432. base_url: "https://{language}.wikiversity.org/"
  1433. number_of_results: 5
  1434. search_type: text
  1435. disabled: true
  1436. about:
  1437. website: https://www.wikiversity.org/
  1438. wikidata_id: Q370
  1439. - name: wikivoyage
  1440. engine: mediawiki
  1441. shortcut: wy
  1442. categories: general
  1443. base_url: "https://{language}.wikivoyage.org/"
  1444. number_of_results: 5
  1445. search_type: text
  1446. disabled: true
  1447. about:
  1448. website: https://www.wikivoyage.org/
  1449. wikidata_id: Q373
  1450. - name: wolframalpha
  1451. shortcut: wa
  1452. # You can use the engine using the official stable API, but you need an API
  1453. # key. See: https://products.wolframalpha.com/api/
  1454. #
  1455. # engine: wolframalpha_api
  1456. # api_key: ''
  1457. #
  1458. # Or you can use the html non-stable engine, activated by default
  1459. engine: wolframalpha_noapi
  1460. timeout: 6.0
  1461. categories: []
  1462. - name: dictzone
  1463. engine: dictzone
  1464. shortcut: dc
  1465. - name: mymemory translated
  1466. engine: translated
  1467. shortcut: tl
  1468. timeout: 5.0
  1469. # You can use without an API key, but you are limited to 1000 words/day
  1470. # See: https://mymemory.translated.net/doc/usagelimits.php
  1471. # api_key: ''
  1472. # Required dependency: mysql-connector-python
  1473. # - name: mysql
  1474. # engine: mysql_server
  1475. # database: mydatabase
  1476. # username: user
  1477. # password: pass
  1478. # limit: 10
  1479. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1480. # shortcut: mysql
  1481. - name: 1337x
  1482. engine: 1337x
  1483. shortcut: 1337x
  1484. disabled: true
  1485. - name: duden
  1486. engine: duden
  1487. shortcut: du
  1488. disabled: true
  1489. - name: seznam
  1490. shortcut: szn
  1491. engine: seznam
  1492. disabled: true
  1493. # - name: deepl
  1494. # engine: deepl
  1495. # shortcut: dpl
  1496. # # You can use the engine using the official stable API, but you need an API key
  1497. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  1498. # api_key: '' # required!
  1499. # timeout: 5.0
  1500. # disabled: true
  1501. - name: mojeek
  1502. shortcut: mjk
  1503. engine: xpath
  1504. paging: true
  1505. categories: [general, web]
  1506. search_url: https://www.mojeek.com/search?q={query}&s={pageno}&lang={lang}&lb={lang}
  1507. results_xpath: //ul[@class="results-standard"]/li/a[@class="ob"]
  1508. url_xpath: ./@href
  1509. title_xpath: ../h2/a
  1510. content_xpath: ..//p[@class="s"]
  1511. suggestion_xpath: //div[@class="top-info"]/p[@class="top-info spell"]/em/a
  1512. first_page_num: 0
  1513. page_size: 10
  1514. disabled: true
  1515. about:
  1516. website: https://www.mojeek.com/
  1517. wikidata_id: Q60747299
  1518. official_api_documentation: https://www.mojeek.com/services/api.html/
  1519. use_official_api: false
  1520. require_api_key: false
  1521. results: HTML
  1522. - name: naver
  1523. shortcut: nvr
  1524. categories: [general, web]
  1525. engine: xpath
  1526. paging: true
  1527. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1528. url_xpath: //a[@class="link_tit"]/@href
  1529. title_xpath: //a[@class="link_tit"]
  1530. content_xpath: //a[@class="total_dsc"]/div
  1531. first_page_num: 1
  1532. page_size: 10
  1533. disabled: true
  1534. about:
  1535. website: https://www.naver.com/
  1536. wikidata_id: Q485639
  1537. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1538. use_official_api: false
  1539. require_api_key: false
  1540. results: HTML
  1541. language: ko
  1542. - name: rubygems
  1543. shortcut: rbg
  1544. engine: xpath
  1545. paging: true
  1546. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1547. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1548. url_xpath: ./@href
  1549. title_xpath: ./span/h2
  1550. content_xpath: ./span/p
  1551. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1552. first_page_num: 1
  1553. categories: [it, packages]
  1554. disabled: true
  1555. about:
  1556. website: https://rubygems.org/
  1557. wikidata_id: Q1853420
  1558. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1559. use_official_api: false
  1560. require_api_key: false
  1561. results: HTML
  1562. - name: peertube
  1563. engine: peertube
  1564. shortcut: ptb
  1565. paging: true
  1566. # alternatives see: https://instances.joinpeertube.org/instances
  1567. # base_url: https://tube.4aem.com
  1568. categories: videos
  1569. disabled: true
  1570. timeout: 6.0
  1571. - name: mediathekviewweb
  1572. engine: mediathekviewweb
  1573. shortcut: mvw
  1574. disabled: true
  1575. # - name: yacy
  1576. # engine: yacy
  1577. # shortcut: ya
  1578. # base_url: http://localhost:8090
  1579. # required if you aren't using HTTPS for your local yacy instance'
  1580. # enable_http: true
  1581. # number_of_results: 5
  1582. # timeout: 3.0
  1583. - name: rumble
  1584. engine: rumble
  1585. shortcut: ru
  1586. base_url: https://rumble.com/
  1587. paging: true
  1588. categories: videos
  1589. disabled: true
  1590. - name: wordnik
  1591. engine: wordnik
  1592. shortcut: def
  1593. base_url: https://www.wordnik.com/
  1594. categories: [dictionaries]
  1595. timeout: 5.0
  1596. - name: woxikon.de synonyme
  1597. engine: xpath
  1598. shortcut: woxi
  1599. categories: [dictionaries]
  1600. timeout: 5.0
  1601. disabled: true
  1602. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  1603. url_xpath: //div[@class="upper-synonyms"]/a/@href
  1604. content_xpath: //div[@class="synonyms-list-group"]
  1605. title_xpath: //div[@class="upper-synonyms"]/a
  1606. no_result_for_http_status: [404]
  1607. about:
  1608. website: https://www.woxikon.de/
  1609. wikidata_id: # No Wikidata ID
  1610. use_official_api: false
  1611. require_api_key: false
  1612. results: HTML
  1613. language: de
  1614. - name: sjp.pwn
  1615. engine: sjp
  1616. shortcut: sjp
  1617. base_url: https://sjp.pwn.pl/
  1618. timeout: 5.0
  1619. disabled: true
  1620. # wikimini: online encyclopedia for children
  1621. # The fulltext and title parameter is necessary for Wikimini because
  1622. # sometimes it will not show the results and redirect instead
  1623. - name: wikimini
  1624. engine: xpath
  1625. shortcut: wkmn
  1626. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  1627. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  1628. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  1629. content_xpath: //li/div[@class="searchresult"]
  1630. categories: general
  1631. disabled: true
  1632. about:
  1633. website: https://wikimini.org/
  1634. wikidata_id: Q3568032
  1635. use_official_api: false
  1636. require_api_key: false
  1637. results: HTML
  1638. language: fr
  1639. - name: wttr.in
  1640. engine: wttr
  1641. shortcut: wttr
  1642. timeout: 9.0
  1643. - name: brave
  1644. shortcut: brave
  1645. engine: xpath
  1646. paging: true
  1647. time_range_support: true
  1648. first_page_num: 0
  1649. time_range_url: "&tf={time_range_val}"
  1650. search_url: https://search.brave.com/search?q={query}&offset={pageno}&spellcheck=1{time_range}
  1651. url_xpath: //a[@class="result-header"]/@href
  1652. title_xpath: //span[@class="snippet-title"]
  1653. content_xpath: //p[1][@class="snippet-description"]
  1654. suggestion_xpath: //div[@class="text-gray h6"]/a
  1655. time_range_map:
  1656. day: 'pd'
  1657. week: 'pw'
  1658. month: 'pm'
  1659. year: 'py'
  1660. categories: [general, web]
  1661. disabled: true
  1662. headers:
  1663. Accept-Encoding: gzip, deflate
  1664. about:
  1665. website: https://brave.com/search/
  1666. wikidata_id: Q107355971
  1667. use_official_api: false
  1668. require_api_key: false
  1669. results: HTML
  1670. - name: petalsearch
  1671. shortcut: pts
  1672. engine: xpath
  1673. paging: true
  1674. search_url: https://petalsearch.com/search?query={query}&pn={pageno}
  1675. url_xpath: //div[@class='card-source']
  1676. title_xpath: //div[@class='title-name']
  1677. content_xpath: //div[@class='webpage-text']
  1678. first_page_num: 1
  1679. disabled: true
  1680. headers:
  1681. User-Agent: Mozilla/5.0 (Linux; Android 7.0;) \
  1682. AppleWebKit/537.36 (KHTML, like Gecko) \
  1683. Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)
  1684. about:
  1685. website: https://petalsearch.com/
  1686. wikidata_id: Q104399280
  1687. use_official_api: false
  1688. require_api_key: false
  1689. results: HTML
  1690. - name: petalsearch images
  1691. engine: petal_images
  1692. shortcut: ptsi
  1693. disabled: true
  1694. timeout: 3.0
  1695. - name: lib.rs
  1696. shortcut: lrs
  1697. engine: xpath
  1698. search_url: https://lib.rs/search?q={query}
  1699. results_xpath: /html/body/main/div/ol/li/a
  1700. url_xpath: ./@href
  1701. title_xpath: ./div[@class="h"]/h4
  1702. content_xpath: ./div[@class="h"]/p
  1703. categories: [it, packages]
  1704. disabled: true
  1705. about:
  1706. website: https://lib.rs
  1707. wikidata_id: Q113486010
  1708. use_official_api: false
  1709. require_api_key: false
  1710. results: HTML
  1711. - name: sourcehut
  1712. shortcut: srht
  1713. engine: xpath
  1714. paging: true
  1715. search_url: https://sr.ht/projects?page={pageno}&search={query}
  1716. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  1717. url_xpath: ./h4/a[2]/@href
  1718. title_xpath: ./h4/a[2]
  1719. content_xpath: ./p
  1720. first_page_num: 1
  1721. categories: [it, repos]
  1722. disabled: true
  1723. about:
  1724. website: https://sr.ht
  1725. wikidata_id: Q78514485
  1726. official_api_documentation: https://man.sr.ht/
  1727. use_official_api: false
  1728. require_api_key: false
  1729. results: HTML
  1730. - name: goo
  1731. shortcut: goo
  1732. engine: xpath
  1733. paging: true
  1734. search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
  1735. url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
  1736. title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
  1737. content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
  1738. first_page_num: 0
  1739. categories: [general, web]
  1740. disabled: true
  1741. timeout: 4.0
  1742. about:
  1743. website: https://search.goo.ne.jp
  1744. wikidata_id: Q249044
  1745. use_official_api: false
  1746. require_api_key: false
  1747. results: HTML
  1748. language: ja
  1749. # Doku engine lets you access to any Doku wiki instance:
  1750. # A public one or a privete/corporate one.
  1751. # - name: ubuntuwiki
  1752. # engine: doku
  1753. # shortcut: uw
  1754. # base_url: 'https://doc.ubuntu-fr.org'
  1755. # Be careful when enabling this engine if you are
  1756. # running a public instance. Do not expose any sensitive
  1757. # information. You can restrict access by configuring a list
  1758. # of access tokens under tokens.
  1759. # - name: git grep
  1760. # engine: command
  1761. # command: ['git', 'grep', '{{QUERY}}']
  1762. # shortcut: gg
  1763. # tokens: []
  1764. # disabled: true
  1765. # delimiter:
  1766. # chars: ':'
  1767. # keys: ['filepath', 'code']
  1768. # Be careful when enabling this engine if you are
  1769. # running a public instance. Do not expose any sensitive
  1770. # information. You can restrict access by configuring a list
  1771. # of access tokens under tokens.
  1772. # - name: locate
  1773. # engine: command
  1774. # command: ['locate', '{{QUERY}}']
  1775. # shortcut: loc
  1776. # tokens: []
  1777. # disabled: true
  1778. # delimiter:
  1779. # chars: ' '
  1780. # keys: ['line']
  1781. # Be careful when enabling this engine if you are
  1782. # running a public instance. Do not expose any sensitive
  1783. # information. You can restrict access by configuring a list
  1784. # of access tokens under tokens.
  1785. # - name: find
  1786. # engine: command
  1787. # command: ['find', '.', '-name', '{{QUERY}}']
  1788. # query_type: path
  1789. # shortcut: fnd
  1790. # tokens: []
  1791. # disabled: true
  1792. # delimiter:
  1793. # chars: ' '
  1794. # keys: ['line']
  1795. # Be careful when enabling this engine if you are
  1796. # running a public instance. Do not expose any sensitive
  1797. # information. You can restrict access by configuring a list
  1798. # of access tokens under tokens.
  1799. # - name: pattern search in files
  1800. # engine: command
  1801. # command: ['fgrep', '{{QUERY}}']
  1802. # shortcut: fgr
  1803. # tokens: []
  1804. # disabled: true
  1805. # delimiter:
  1806. # chars: ' '
  1807. # keys: ['line']
  1808. # Be careful when enabling this engine if you are
  1809. # running a public instance. Do not expose any sensitive
  1810. # information. You can restrict access by configuring a list
  1811. # of access tokens under tokens.
  1812. # - name: regex search in files
  1813. # engine: command
  1814. # command: ['grep', '{{QUERY}}']
  1815. # shortcut: gr
  1816. # tokens: []
  1817. # disabled: true
  1818. # delimiter:
  1819. # chars: ' '
  1820. # keys: ['line']
  1821. doi_resolvers:
  1822. oadoi.org: 'https://oadoi.org/'
  1823. doi.org: 'https://doi.org/'
  1824. doai.io: 'https://dissem.in/'
  1825. sci-hub.se: 'https://sci-hub.se/'
  1826. sci-hub.st: 'https://sci-hub.st/'
  1827. sci-hub.ru: 'https://sci-hub.ru/'
  1828. default_doi_resolver: 'oadoi.org'