settings.yml 55 KB

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