settings.yml 53 KB

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