settings.yml 54 KB

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