settings.yml 51 KB

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