settings.yml 54 KB

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