settings.yml 51 KB

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