settings.yml 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049
  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: false
  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: metacpan
  856. engine: metacpan
  857. shortcut: cpan
  858. disabled: true
  859. number_of_results: 20
  860. # - name: meilisearch
  861. # engine: meilisearch
  862. # shortcut: mes
  863. # enable_http: true
  864. # base_url: http://localhost:7700
  865. # index: my-index
  866. - name: mixcloud
  867. engine: mixcloud
  868. shortcut: mc
  869. # MongoDB engine
  870. # Required dependency: pymongo
  871. # - name: mymongo
  872. # engine: mongodb
  873. # shortcut: md
  874. # exact_match_only: false
  875. # host: '127.0.0.1'
  876. # port: 27017
  877. # enable_http: true
  878. # results_per_page: 20
  879. # database: 'business'
  880. # collection: 'reviews' # name of the db collection
  881. # key: 'name' # key in the collection to search for
  882. - name: neeva
  883. engine: xpath
  884. shortcut: nv
  885. time_range_support: true
  886. time_range_url: '&alf%5Bfreshness%5D={time_range_val}'
  887. time_range_map:
  888. day: 'Day'
  889. week: 'Week'
  890. month: 'Month'
  891. year: 'Year'
  892. search_url: https://neeva.com/search?q={query}&c=All&src=Pagination&page={pageno}{time_range}
  893. results_xpath: //div[@class="web-index__component-2rKiM"] | //li[@class="web-rich-deep-links__deepLink-SIbD4"]
  894. url_xpath: .//a[@class="lib-doc-title__link-1b9rC"]/@href | ./h2/a/@href
  895. title_xpath: .//a[@class="lib-doc-title__link-1b9rC"] | ./h2/a
  896. content_xpath: >
  897. .//div[@class="lib-doc-snippet__component-3ewW6"]/text() |
  898. .//div[@class="lib-doc-snippet__component-3ewW6"]/*[not(self::a)] |
  899. ./p
  900. content_html_to_text: true
  901. suggestion_xpath: //span[@class="result-related-searches__link-2ho_u"]
  902. paging: true
  903. disabled: true
  904. categories: [general, web]
  905. timeout: 5.0
  906. soft_max_redirects: 2
  907. about:
  908. website: https://neeva.com
  909. official_api_documentation:
  910. use_official_api: false
  911. require_api_key: false
  912. results: HTML
  913. - name: npm
  914. engine: json_engine
  915. paging: true
  916. first_page_num: 0
  917. search_url: https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  918. results_query: results
  919. url_query: package/links/npm
  920. title_query: package/name
  921. content_query: package/description
  922. page_size: 25
  923. categories: [it, packages]
  924. disabled: true
  925. timeout: 5.0
  926. shortcut: npm
  927. about:
  928. website: https://npms.io/
  929. wikidata_id: Q7067518
  930. official_api_documentation: https://api-docs.npms.io/
  931. use_official_api: false
  932. require_api_key: false
  933. results: JSON
  934. - name: nyaa
  935. engine: nyaa
  936. shortcut: nt
  937. disabled: true
  938. - name: mankier
  939. engine: json_engine
  940. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  941. results_query: results
  942. url_query: url
  943. title_query: name
  944. content_query: description
  945. categories: it
  946. shortcut: man
  947. about:
  948. website: https://www.mankier.com/
  949. official_api_documentation: https://www.mankier.com/api
  950. use_official_api: true
  951. require_api_key: false
  952. results: JSON
  953. - name: openairedatasets
  954. engine: json_engine
  955. paging: true
  956. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  957. results_query: response/results/result
  958. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  959. title_query: metadata/oaf:entity/oaf:result/title/$
  960. content_query: metadata/oaf:entity/oaf:result/description/$
  961. content_html_to_text: true
  962. categories: "science"
  963. shortcut: oad
  964. timeout: 5.0
  965. about:
  966. website: https://www.openaire.eu/
  967. wikidata_id: Q25106053
  968. official_api_documentation: https://api.openaire.eu/
  969. use_official_api: false
  970. require_api_key: false
  971. results: JSON
  972. - name: openairepublications
  973. engine: json_engine
  974. paging: true
  975. search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  976. results_query: response/results/result
  977. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  978. title_query: metadata/oaf:entity/oaf:result/title/$
  979. content_query: metadata/oaf:entity/oaf:result/description/$
  980. content_html_to_text: true
  981. categories: science
  982. shortcut: oap
  983. timeout: 5.0
  984. about:
  985. website: https://www.openaire.eu/
  986. wikidata_id: Q25106053
  987. official_api_documentation: https://api.openaire.eu/
  988. use_official_api: false
  989. require_api_key: false
  990. results: JSON
  991. # - name: opensemanticsearch
  992. # engine: opensemantic
  993. # shortcut: oss
  994. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  995. - name: openstreetmap
  996. engine: openstreetmap
  997. shortcut: osm
  998. - name: openrepos
  999. engine: xpath
  1000. paging: true
  1001. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  1002. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  1003. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  1004. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  1005. categories: files
  1006. timeout: 4.0
  1007. disabled: true
  1008. shortcut: or
  1009. about:
  1010. website: https://openrepos.net/
  1011. wikidata_id:
  1012. official_api_documentation:
  1013. use_official_api: false
  1014. require_api_key: false
  1015. results: HTML
  1016. - name: packagist
  1017. engine: json_engine
  1018. paging: true
  1019. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  1020. results_query: results
  1021. url_query: url
  1022. title_query: name
  1023. content_query: description
  1024. categories: [it, packages]
  1025. disabled: true
  1026. timeout: 5.0
  1027. shortcut: pack
  1028. about:
  1029. website: https://packagist.org
  1030. wikidata_id: Q108311377
  1031. official_api_documentation: https://packagist.org/apidoc
  1032. use_official_api: true
  1033. require_api_key: false
  1034. results: JSON
  1035. - name: pdbe
  1036. engine: pdbe
  1037. shortcut: pdb
  1038. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1039. # hide_obsolete: false
  1040. - name: photon
  1041. engine: photon
  1042. shortcut: ph
  1043. - name: piratebay
  1044. engine: piratebay
  1045. shortcut: tpb
  1046. # You may need to change this URL to a proxy if piratebay is blocked in your
  1047. # country
  1048. url: https://thepiratebay.org/
  1049. timeout: 3.0
  1050. # Required dependency: psychopg2
  1051. # - name: postgresql
  1052. # engine: postgresql
  1053. # database: postgres
  1054. # username: postgres
  1055. # password: postgres
  1056. # limit: 10
  1057. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1058. # shortcut : psql
  1059. - name: pub.dev
  1060. engine: xpath
  1061. shortcut: pd
  1062. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1063. paging: true
  1064. results_xpath: /html/body/main/div/div[@class="search-results"]/div[@class="packages"]/div
  1065. url_xpath: ./div/h3/a/@href
  1066. title_xpath: ./div/h3/a
  1067. content_xpath: ./p[@class="packages-description"]
  1068. categories: [packages, it]
  1069. timeout: 3.0
  1070. disabled: true
  1071. first_page_num: 1
  1072. about:
  1073. website: https://pub.dev/
  1074. official_api_documentation: https://pub.dev/help/api
  1075. use_official_api: false
  1076. require_api_key: false
  1077. results: HTML
  1078. - name: pubmed
  1079. engine: pubmed
  1080. shortcut: pub
  1081. timeout: 3.0
  1082. - name: pypi
  1083. shortcut: pypi
  1084. engine: xpath
  1085. paging: true
  1086. search_url: https://pypi.org/search?q={query}&page={pageno}
  1087. results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"]
  1088. url_xpath: ./@href
  1089. title_xpath: ./h3/span[@class="package-snippet__name"]
  1090. content_xpath: ./p
  1091. suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"]
  1092. first_page_num: 1
  1093. categories: [it, packages]
  1094. about:
  1095. website: https://pypi.org
  1096. wikidata_id: Q2984686
  1097. official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html
  1098. use_official_api: false
  1099. require_api_key: false
  1100. results: HTML
  1101. - name: qwant
  1102. qwant_categ: web
  1103. engine: qwant
  1104. shortcut: qw
  1105. categories: [general, web]
  1106. disabled: false
  1107. additional_tests:
  1108. rosebud: *test_rosebud
  1109. - name: qwant news
  1110. qwant_categ: news
  1111. engine: qwant
  1112. shortcut: qwn
  1113. categories: news
  1114. disabled: false
  1115. network: qwant
  1116. - name: qwant images
  1117. qwant_categ: images
  1118. engine: qwant
  1119. shortcut: qwi
  1120. categories: [images, web]
  1121. disabled: false
  1122. network: qwant
  1123. - name: qwant videos
  1124. qwant_categ: videos
  1125. engine: qwant
  1126. shortcut: qwv
  1127. categories: [videos, web]
  1128. disabled: false
  1129. network: qwant
  1130. # - name: library
  1131. # engine: recoll
  1132. # shortcut: lib
  1133. # base_url: 'https://recoll.example.org/'
  1134. # search_dir: ''
  1135. # mount_prefix: /export
  1136. # dl_prefix: 'https://download.example.org'
  1137. # timeout: 30.0
  1138. # categories: files
  1139. # disabled: true
  1140. # - name: recoll library reference
  1141. # engine: recoll
  1142. # base_url: 'https://recoll.example.org/'
  1143. # search_dir: reference
  1144. # mount_prefix: /export
  1145. # dl_prefix: 'https://download.example.org'
  1146. # shortcut: libr
  1147. # timeout: 30.0
  1148. # categories: files
  1149. # disabled: true
  1150. - name: reddit
  1151. engine: reddit
  1152. shortcut: re
  1153. page_size: 25
  1154. # Required dependency: redis
  1155. # - name: myredis
  1156. # shortcut : rds
  1157. # engine: redis_server
  1158. # exact_match_only: false
  1159. # host: '127.0.0.1'
  1160. # port: 6379
  1161. # enable_http: true
  1162. # password: ''
  1163. # db: 0
  1164. # tmp suspended: bad certificate
  1165. # - name: scanr structures
  1166. # shortcut: scs
  1167. # engine: scanr_structures
  1168. # disabled: true
  1169. - name: sepiasearch
  1170. engine: sepiasearch
  1171. shortcut: sep
  1172. - name: soundcloud
  1173. engine: soundcloud
  1174. shortcut: sc
  1175. - name: stackoverflow
  1176. engine: stackexchange
  1177. shortcut: st
  1178. api_site: 'stackoverflow'
  1179. categories: [it, q&a]
  1180. - name: askubuntu
  1181. engine: stackexchange
  1182. shortcut: ubuntu
  1183. api_site: 'askubuntu'
  1184. categories: [it, q&a]
  1185. - name: superuser
  1186. engine: stackexchange
  1187. shortcut: su
  1188. api_site: 'superuser'
  1189. categories: [it, q&a]
  1190. - name: searchcode code
  1191. engine: searchcode_code
  1192. shortcut: scc
  1193. disabled: true
  1194. - name: framalibre
  1195. engine: framalibre
  1196. shortcut: frl
  1197. disabled: true
  1198. # - name: searx
  1199. # engine: searx_engine
  1200. # shortcut: se
  1201. # instance_urls :
  1202. # - http://127.0.0.1:8888/
  1203. # - ...
  1204. # disabled: true
  1205. - name: semantic scholar
  1206. engine: semantic_scholar
  1207. disabled: true
  1208. shortcut: se
  1209. # Spotify needs API credentials
  1210. # - name: spotify
  1211. # engine: spotify
  1212. # shortcut: stf
  1213. # api_client_id: *******
  1214. # api_client_secret: *******
  1215. # - name: solr
  1216. # engine: solr
  1217. # shortcut: slr
  1218. # base_url: http://localhost:8983
  1219. # collection: collection_name
  1220. # sort: '' # sorting: asc or desc
  1221. # field_list: '' # comma separated list of field names to display on the UI
  1222. # default_fields: '' # default field to query
  1223. # query_fields: '' # query fields
  1224. # enable_http: true
  1225. # - name: springer nature
  1226. # engine: springer
  1227. # # get your API key from: https://dev.springernature.com/signup
  1228. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1229. # api_key: 'unset'
  1230. # shortcut: springer
  1231. # timeout: 15.0
  1232. - name: startpage
  1233. engine: startpage
  1234. shortcut: sp
  1235. timeout: 6.0
  1236. disabled: true
  1237. additional_tests:
  1238. rosebud: *test_rosebud
  1239. - name: tokyotoshokan
  1240. engine: tokyotoshokan
  1241. shortcut: tt
  1242. timeout: 6.0
  1243. disabled: true
  1244. - name: solidtorrents
  1245. engine: solidtorrents
  1246. shortcut: solid
  1247. timeout: 4.0
  1248. disabled: false
  1249. base_url:
  1250. - https://solidtorrents.net
  1251. - https://solidtorrents.eu
  1252. - https://solidtorrents.to
  1253. - https://bitsearch.to
  1254. # For this demo of the sqlite engine download:
  1255. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1256. # and unpack into searx/data/filmliste-v2.db
  1257. # Query to test: "!demo concert"
  1258. #
  1259. # - name: demo
  1260. # engine: sqlite
  1261. # shortcut: demo
  1262. # categories: general
  1263. # result_template: default.html
  1264. # database: searx/data/filmliste-v2.db
  1265. # query_str: >-
  1266. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1267. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1268. # description AS content
  1269. # FROM film
  1270. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1271. # ORDER BY duration DESC
  1272. # disabled: false
  1273. # Requires Tor
  1274. - name: torch
  1275. engine: xpath
  1276. paging: true
  1277. search_url:
  1278. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1279. results_xpath: //table//tr
  1280. url_xpath: ./td[2]/a
  1281. title_xpath: ./td[2]/b
  1282. content_xpath: ./td[2]/small
  1283. categories: onions
  1284. enable_http: true
  1285. shortcut: tch
  1286. # torznab engine lets you query any torznab compatible indexer. Using this
  1287. # engine in combination with Jackett (https://github.com/Jackett/Jackett)
  1288. # opens the possibility to query a lot of public and private indexers directly
  1289. # from SearXNG.
  1290. # - name: torznab
  1291. # engine: torznab
  1292. # shortcut: trz
  1293. # base_url: http://localhost:9117/api/v2.0/indexers/all/results/torznab
  1294. # enable_http: true # if using localhost
  1295. # api_key: xxxxxxxxxxxxxxx
  1296. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1297. # torznab_categories: # optional
  1298. # - 2000
  1299. # - 5000
  1300. - name: twitter
  1301. shortcut: tw
  1302. engine: twitter
  1303. disabled: true
  1304. # maybe in a fun category
  1305. # - name: uncyclopedia
  1306. # engine: mediawiki
  1307. # shortcut: unc
  1308. # base_url: https://uncyclopedia.wikia.com/
  1309. # number_of_results: 5
  1310. # tmp suspended - too slow, too many errors
  1311. # - name: urbandictionary
  1312. # engine : xpath
  1313. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1314. # url_xpath : //*[@class="word"]/@href
  1315. # title_xpath : //*[@class="def-header"]
  1316. # content_xpath: //*[@class="meaning"]
  1317. # shortcut: ud
  1318. - name: unsplash
  1319. engine: unsplash
  1320. shortcut: us
  1321. - name: yahoo
  1322. engine: yahoo
  1323. shortcut: yh
  1324. disabled: true
  1325. - name: yahoo news
  1326. engine: yahoo_news
  1327. shortcut: yhn
  1328. - name: youtube
  1329. shortcut: yt
  1330. # You can use the engine using the official stable API, but you need an API
  1331. # key See: https://console.developers.google.com/project
  1332. #
  1333. # engine: youtube_api
  1334. # api_key: 'apikey' # required!
  1335. #
  1336. # Or you can use the html non-stable engine, activated by default
  1337. engine: youtube_noapi
  1338. - name: dailymotion
  1339. engine: dailymotion
  1340. shortcut: dm
  1341. - name: vimeo
  1342. engine: vimeo
  1343. shortcut: vm
  1344. - name: wiby
  1345. engine: json_engine
  1346. search_url: https://wiby.me/json/?q={query}
  1347. url_query: URL
  1348. title_query: Title
  1349. content_query: Snippet
  1350. categories: [general, web]
  1351. shortcut: wib
  1352. disabled: true
  1353. about:
  1354. website: https://wiby.me/
  1355. - name: marginalia
  1356. engine: json_engine
  1357. shortcut: mar
  1358. categories: general
  1359. paging: false
  1360. # index: {"0": "popular", "1": "blogs", "2": "big_sites",
  1361. # "3": "default", "4": experimental"}
  1362. search_url: https://api.marginalia.nu/public/search/{query}?index=4&count=20
  1363. results_query: results
  1364. url_query: url
  1365. title_query: title
  1366. content_query: description
  1367. timeout: 1.5
  1368. disabled: true
  1369. about:
  1370. website: https://www.marginalia.nu/
  1371. official_api_documentation: https://api.marginalia.nu/
  1372. use_official_api: true
  1373. require_api_key: true
  1374. results: JSON
  1375. - name: alexandria
  1376. engine: json_engine
  1377. shortcut: alx
  1378. categories: general
  1379. paging: true
  1380. search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
  1381. results_query: results
  1382. title_query: title
  1383. url_query: url
  1384. content_query: snippet
  1385. timeout: 1.5
  1386. disabled: true
  1387. about:
  1388. website: https://alexandria.org/
  1389. official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
  1390. use_official_api: true
  1391. require_api_key: false
  1392. results: JSON
  1393. - name: wikibooks
  1394. engine: mediawiki
  1395. shortcut: wb
  1396. categories: general
  1397. base_url: "https://{language}.wikibooks.org/"
  1398. number_of_results: 5
  1399. search_type: text
  1400. disabled: true
  1401. about:
  1402. website: https://www.wikibooks.org/
  1403. wikidata_id: Q367
  1404. - name: wikinews
  1405. engine: mediawiki
  1406. shortcut: wn
  1407. categories: news
  1408. base_url: "https://{language}.wikinews.org/"
  1409. number_of_results: 5
  1410. search_type: text
  1411. disabled: true
  1412. about:
  1413. website: https://www.wikinews.org/
  1414. wikidata_id: Q964
  1415. - name: wikiquote
  1416. engine: mediawiki
  1417. shortcut: wq
  1418. categories: general
  1419. base_url: "https://{language}.wikiquote.org/"
  1420. number_of_results: 5
  1421. search_type: text
  1422. disabled: true
  1423. additional_tests:
  1424. rosebud: *test_rosebud
  1425. about:
  1426. website: https://www.wikiquote.org/
  1427. wikidata_id: Q369
  1428. - name: wikisource
  1429. engine: mediawiki
  1430. shortcut: ws
  1431. categories: general
  1432. base_url: "https://{language}.wikisource.org/"
  1433. number_of_results: 5
  1434. search_type: text
  1435. disabled: true
  1436. about:
  1437. website: https://www.wikisource.org/
  1438. wikidata_id: Q263
  1439. - name: wiktionary
  1440. engine: mediawiki
  1441. shortcut: wt
  1442. categories: [dictionaries]
  1443. base_url: "https://{language}.wiktionary.org/"
  1444. number_of_results: 5
  1445. search_type: text
  1446. disabled: false
  1447. about:
  1448. website: https://www.wiktionary.org/
  1449. wikidata_id: Q151
  1450. - name: wikiversity
  1451. engine: mediawiki
  1452. shortcut: wv
  1453. categories: general
  1454. base_url: "https://{language}.wikiversity.org/"
  1455. number_of_results: 5
  1456. search_type: text
  1457. disabled: true
  1458. about:
  1459. website: https://www.wikiversity.org/
  1460. wikidata_id: Q370
  1461. - name: wikivoyage
  1462. engine: mediawiki
  1463. shortcut: wy
  1464. categories: general
  1465. base_url: "https://{language}.wikivoyage.org/"
  1466. number_of_results: 5
  1467. search_type: text
  1468. disabled: true
  1469. about:
  1470. website: https://www.wikivoyage.org/
  1471. wikidata_id: Q373
  1472. - name: wolframalpha
  1473. shortcut: wa
  1474. # You can use the engine using the official stable API, but you need an API
  1475. # key. See: https://products.wolframalpha.com/api/
  1476. #
  1477. # engine: wolframalpha_api
  1478. # api_key: ''
  1479. #
  1480. # Or you can use the html non-stable engine, activated by default
  1481. engine: wolframalpha_noapi
  1482. timeout: 6.0
  1483. categories: []
  1484. - name: dictzone
  1485. engine: dictzone
  1486. shortcut: dc
  1487. - name: mymemory translated
  1488. engine: translated
  1489. shortcut: tl
  1490. timeout: 5.0
  1491. disabled: false
  1492. # You can use without an API key, but you are limited to 1000 words/day
  1493. # See: https://mymemory.translated.net/doc/usagelimits.php
  1494. # api_key: ''
  1495. # Required dependency: mysql-connector-python
  1496. # - name: mysql
  1497. # engine: mysql_server
  1498. # database: mydatabase
  1499. # username: user
  1500. # password: pass
  1501. # limit: 10
  1502. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1503. # shortcut: mysql
  1504. - name: 1337x
  1505. engine: 1337x
  1506. shortcut: 1337x
  1507. disabled: true
  1508. - name: duden
  1509. engine: duden
  1510. shortcut: du
  1511. disabled: true
  1512. - name: seznam
  1513. shortcut: szn
  1514. engine: seznam
  1515. disabled: true
  1516. # - name: deepl
  1517. # engine: deepl
  1518. # shortcut: dpl
  1519. # # You can use the engine using the official stable API, but you need an API key
  1520. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  1521. # api_key: '' # required!
  1522. # timeout: 5.0
  1523. # disabled: true
  1524. - name: mojeek
  1525. shortcut: mjk
  1526. engine: xpath
  1527. paging: true
  1528. categories: [general, web]
  1529. search_url: https://www.mojeek.com/search?q={query}&s={pageno}
  1530. results_xpath: //a[@class="ob"]
  1531. url_xpath: ./@href
  1532. title_xpath: ./h2
  1533. content_xpath: ../p[@class="s"]
  1534. suggestion_xpath: /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
  1535. first_page_num: 0
  1536. page_size: 10
  1537. disabled: true
  1538. about:
  1539. website: https://www.mojeek.com/
  1540. wikidata_id: Q60747299
  1541. official_api_documentation: https://www.mojeek.com/services/api.html/
  1542. use_official_api: false
  1543. require_api_key: false
  1544. results: HTML
  1545. - name: naver
  1546. shortcut: nvr
  1547. categories: [general, web]
  1548. engine: xpath
  1549. paging: true
  1550. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1551. url_xpath: //a[@class="link_tit"]/@href
  1552. title_xpath: //a[@class="link_tit"]
  1553. content_xpath: //a[@class="total_dsc"]/div
  1554. first_page_num: 1
  1555. page_size: 10
  1556. disabled: true
  1557. about:
  1558. website: https://www.naver.com/
  1559. wikidata_id: Q485639
  1560. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1561. use_official_api: false
  1562. require_api_key: false
  1563. results: HTML
  1564. language: ko
  1565. - name: rubygems
  1566. shortcut: rbg
  1567. engine: xpath
  1568. paging: true
  1569. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1570. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1571. url_xpath: ./@href
  1572. title_xpath: ./span/h2
  1573. content_xpath: ./span/p
  1574. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1575. first_page_num: 1
  1576. categories: [it, packages]
  1577. disabled: true
  1578. about:
  1579. website: https://rubygems.org/
  1580. wikidata_id: Q1853420
  1581. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1582. use_official_api: false
  1583. require_api_key: false
  1584. results: HTML
  1585. - name: peertube
  1586. engine: peertube
  1587. shortcut: ptb
  1588. paging: true
  1589. # https://instances.joinpeertube.org/instances
  1590. base_url: https://peertube.biz/
  1591. # base_url: https://tube.tardis.world/
  1592. categories: videos
  1593. disabled: true
  1594. timeout: 6.0
  1595. - name: mediathekviewweb
  1596. engine: mediathekviewweb
  1597. shortcut: mvw
  1598. disabled: true
  1599. # - name: yacy
  1600. # engine: yacy
  1601. # shortcut: ya
  1602. # base_url: http://localhost:8090
  1603. # required if you aren't using HTTPS for your local yacy instance'
  1604. # enable_http: true
  1605. # number_of_results: 5
  1606. # timeout: 3.0
  1607. - name: rumble
  1608. engine: rumble
  1609. shortcut: ru
  1610. base_url: https://rumble.com/
  1611. paging: true
  1612. categories: videos
  1613. disabled: true
  1614. - name: wordnik
  1615. engine: wordnik
  1616. shortcut: def
  1617. base_url: https://www.wordnik.com/
  1618. categories: [dictionaries]
  1619. timeout: 5.0
  1620. disabled: false
  1621. - name: woxikon.de synonyme
  1622. engine: xpath
  1623. shortcut: woxi
  1624. categories: [dictionaries]
  1625. timeout: 5.0
  1626. disabled: true
  1627. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  1628. url_xpath: //div[@class="upper-synonyms"]/a/@href
  1629. content_xpath: //div[@class="synonyms-list-group"]
  1630. title_xpath: //div[@class="upper-synonyms"]/a
  1631. no_result_for_http_status: [404]
  1632. about:
  1633. website: https://www.woxikon.de/
  1634. wikidata_id: # No Wikidata ID
  1635. use_official_api: false
  1636. require_api_key: false
  1637. results: HTML
  1638. language: de
  1639. - name: sjp.pwn
  1640. engine: sjp
  1641. shortcut: sjp
  1642. base_url: https://sjp.pwn.pl/
  1643. timeout: 5.0
  1644. disabled: true
  1645. # wikimini: online encyclopedia for children
  1646. # The fulltext and title parameter is necessary for Wikimini because
  1647. # sometimes it will not show the results and redirect instead
  1648. - name: wikimini
  1649. engine: xpath
  1650. shortcut: wkmn
  1651. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  1652. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  1653. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  1654. content_xpath: //li/div[@class="searchresult"]
  1655. categories: general
  1656. disabled: true
  1657. about:
  1658. website: https://wikimini.org/
  1659. wikidata_id: Q3568032
  1660. use_official_api: false
  1661. require_api_key: false
  1662. results: HTML
  1663. language: fr
  1664. - name: wttr.in
  1665. engine: wttr
  1666. shortcut: wttr
  1667. timeout: 9.0
  1668. - name: brave
  1669. shortcut: brave
  1670. engine: xpath
  1671. paging: true
  1672. time_range_support: true
  1673. first_page_num: 0
  1674. time_range_url: "&tf={time_range_val}"
  1675. search_url: https://search.brave.com/search?q={query}&offset={pageno}&spellcheck=1{time_range}
  1676. url_xpath: //a[@class="result-header"]/@href
  1677. title_xpath: //span[@class="snippet-title"]
  1678. content_xpath: //p[1][@class="snippet-description"]
  1679. suggestion_xpath: //div[@class="text-gray h6"]/a
  1680. time_range_map:
  1681. day: 'pd'
  1682. week: 'pw'
  1683. month: 'pm'
  1684. year: 'py'
  1685. categories: [general, web]
  1686. disabled: true
  1687. headers:
  1688. Accept-Encoding: gzip, deflate
  1689. about:
  1690. website: https://brave.com/search/
  1691. wikidata_id: Q107355971
  1692. use_official_api: false
  1693. require_api_key: false
  1694. results: HTML
  1695. - name: petalsearch
  1696. shortcut: pts
  1697. engine: xpath
  1698. paging: true
  1699. search_url: https://petalsearch.com/search?query={query}&pn={pageno}
  1700. results_xpath: //div[@class="webpage-content"]/div[@class="title-cont"]/a
  1701. url_xpath: ./@href
  1702. title_xpath: .
  1703. content_xpath: ../../div[@class="webpage-text"]
  1704. suggestion_xpath: //div[@class="related-search-items"]/a
  1705. first_page_num: 1
  1706. disabled: true
  1707. about:
  1708. website: https://petalsearch.com/
  1709. wikidata_id: Q104399280
  1710. use_official_api: false
  1711. require_api_key: false
  1712. results: HTML
  1713. - name: petalsearch images
  1714. engine: petal_images
  1715. shortcut: ptsi
  1716. disabled: true
  1717. timeout: 3.0
  1718. - name: petalsearch news
  1719. shortcut: ptsn
  1720. categories: news
  1721. engine: xpath
  1722. paging: true
  1723. search_url: https://petalsearch.com/search?channel=news&query={query}&pn={pageno}
  1724. results_xpath: //div[@class="news-container"]/div/div/div/a
  1725. url_xpath: ./@href
  1726. title_xpath: ./div
  1727. content_xpath: ../div[@class="news-text"]
  1728. thumbnail_xpath: ../../../../img/@src
  1729. first_page_num: 1
  1730. disabled: true
  1731. about:
  1732. website: https://petalsearch.com/
  1733. wikidata_id: Q104399280
  1734. use_official_api: false
  1735. require_api_key: false
  1736. results: HTML
  1737. - name: lib.rs
  1738. shortcut: lrs
  1739. engine: xpath
  1740. search_url: https://lib.rs/search?q={query}
  1741. results_xpath: /html/body/main/div/ol/li/a
  1742. url_xpath: ./@href
  1743. title_xpath: ./div[@class="h"]/h4
  1744. content_xpath: ./div[@class="h"]/p
  1745. categories: [it, packages]
  1746. disabled: true
  1747. about:
  1748. website: https://lib.rs
  1749. wikidata_id: Q113486010
  1750. use_official_api: false
  1751. require_api_key: false
  1752. results: HTML
  1753. - name: sourcehut
  1754. shortcut: srht
  1755. engine: xpath
  1756. paging: true
  1757. search_url: https://sr.ht/projects?page={pageno}&search={query}
  1758. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  1759. url_xpath: ./h4/a[2]/@href
  1760. title_xpath: ./h4/a[2]
  1761. content_xpath: ./p
  1762. first_page_num: 1
  1763. categories: [it, repos]
  1764. disabled: true
  1765. about:
  1766. website: https://sr.ht
  1767. wikidata_id: Q78514485
  1768. official_api_documentation: https://man.sr.ht/
  1769. use_official_api: false
  1770. require_api_key: false
  1771. results: HTML
  1772. # Doku engine lets you access to any Doku wiki instance:
  1773. # A public one or a privete/corporate one.
  1774. # - name: ubuntuwiki
  1775. # engine: doku
  1776. # shortcut: uw
  1777. # base_url: 'https://doc.ubuntu-fr.org'
  1778. # Be careful when enabling this engine if you are
  1779. # running a public instance. Do not expose any sensitive
  1780. # information. You can restrict access by configuring a list
  1781. # of access tokens under tokens.
  1782. # - name: git grep
  1783. # engine: command
  1784. # command: ['git', 'grep', '{{QUERY}}']
  1785. # shortcut: gg
  1786. # tokens: []
  1787. # disabled: true
  1788. # delimiter:
  1789. # chars: ':'
  1790. # keys: ['filepath', 'code']
  1791. # Be careful when enabling this engine if you are
  1792. # running a public instance. Do not expose any sensitive
  1793. # information. You can restrict access by configuring a list
  1794. # of access tokens under tokens.
  1795. # - name: locate
  1796. # engine: command
  1797. # command: ['locate', '{{QUERY}}']
  1798. # shortcut: loc
  1799. # tokens: []
  1800. # disabled: true
  1801. # delimiter:
  1802. # chars: ' '
  1803. # keys: ['line']
  1804. # Be careful when enabling this engine if you are
  1805. # running a public instance. Do not expose any sensitive
  1806. # information. You can restrict access by configuring a list
  1807. # of access tokens under tokens.
  1808. # - name: find
  1809. # engine: command
  1810. # command: ['find', '.', '-name', '{{QUERY}}']
  1811. # query_type: path
  1812. # shortcut: fnd
  1813. # tokens: []
  1814. # disabled: true
  1815. # delimiter:
  1816. # chars: ' '
  1817. # keys: ['line']
  1818. # Be careful when enabling this engine if you are
  1819. # running a public instance. Do not expose any sensitive
  1820. # information. You can restrict access by configuring a list
  1821. # of access tokens under tokens.
  1822. # - name: pattern search in files
  1823. # engine: command
  1824. # command: ['fgrep', '{{QUERY}}']
  1825. # shortcut: fgr
  1826. # tokens: []
  1827. # disabled: true
  1828. # delimiter:
  1829. # chars: ' '
  1830. # keys: ['line']
  1831. # Be careful when enabling this engine if you are
  1832. # running a public instance. Do not expose any sensitive
  1833. # information. You can restrict access by configuring a list
  1834. # of access tokens under tokens.
  1835. # - name: regex search in files
  1836. # engine: command
  1837. # command: ['grep', '{{QUERY}}']
  1838. # shortcut: gr
  1839. # tokens: []
  1840. # disabled: true
  1841. # delimiter:
  1842. # chars: ' '
  1843. # keys: ['line']
  1844. doi_resolvers:
  1845. oadoi.org: 'https://oadoi.org/'
  1846. doi.org: 'https://doi.org/'
  1847. doai.io: 'https://dissem.in/'
  1848. sci-hub.se: 'https://sci-hub.se/'
  1849. sci-hub.st: 'https://sci-hub.st/'
  1850. sci-hub.ru: 'https://sci-hub.ru/'
  1851. default_doi_resolver: 'oadoi.org'