settings.yml 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405
  1. general:
  2. debug : False # Debug mode, only for development
  3. instance_name : "searx" # displayed name
  4. contact_url: False # mailto:contact@example.com
  5. brand:
  6. git_url: https://github.com/searx/searx
  7. git_branch: master
  8. issue_url: https://github.com/searx/searx/issues
  9. docs_url: https://searx.github.io/searx
  10. public_instances: https://searx.space
  11. wiki_url: https://github.com/searx/searx/wiki
  12. twitter_url: https://twitter.com/Searx_engine
  13. search:
  14. safe_search : 0 # Filter results. 0: None, 1: Moderate, 2: Strict
  15. autocomplete : "" # Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "startpage", "swisscows", "qwant", "wikipedia" - leave blank to turn it off by default
  16. default_lang : "" # Default search language - leave blank to detect from browser information or use codes from 'languages.py'
  17. ban_time_on_fail : 5 # ban time in seconds after engine errors
  18. max_ban_time_on_fail : 120 # max ban time in seconds after engine errors
  19. server:
  20. port : 8888
  21. bind_address : "127.0.0.1" # address to listen on
  22. secret_key : "ultrasecretkey" # change this!
  23. base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/"
  24. image_proxy : False # Proxying image results through searx
  25. http_protocol_version : "1.0" # 1.0 and 1.1 are supported
  26. method: "POST" # POST queries are more secure as they don't show up in history but may cause problems when using Firefox containers
  27. default_http_headers:
  28. X-Content-Type-Options : nosniff
  29. X-XSS-Protection : 1; mode=block
  30. X-Download-Options : noopen
  31. X-Robots-Tag : noindex, nofollow
  32. Referrer-Policy : no-referrer
  33. ui:
  34. static_path : "" # Custom static path - leave it blank if you didn't change
  35. templates_path : "" # Custom templates path - leave it blank if you didn't change
  36. default_theme : oscar # ui theme
  37. default_locale : "" # Default interface locale - leave blank to detect from browser information or use codes from the 'locales' config section
  38. theme_args :
  39. oscar_style : logicodev # default style of oscar
  40. # results_on_new_tab: False # Open result links in a new tab by default
  41. # categories_order :
  42. # - general
  43. # - files
  44. # - map
  45. # - it
  46. # - science
  47. # Lock arbitrary settings on the preferences page.
  48. # To find the ID of the user setting you want to lock, check
  49. # the ID of the form on the page "preferences".
  50. #preferences:
  51. # lock:
  52. # - language
  53. # - autocomplete
  54. # - method
  55. # searx supports result proxification using an external service: https://github.com/asciimoo/morty
  56. # uncomment below section if you have running morty proxy
  57. # the key is base64 encoded (keep the !!binary notation)
  58. # Note: since commit af77ec3, morty accepts a base64 encoded key.
  59. #result_proxy:
  60. # url : http://127.0.0.1:3000/
  61. # key : !!binary "your_morty_proxy_key"
  62. outgoing: # communication with search engines
  63. request_timeout : 2.0 # default timeout in seconds, can be override by engine
  64. # max_request_timeout: 10.0 # the maximum timeout in seconds
  65. useragent_suffix : "" # suffix of searx_useragent, could contain informations like an email address to the administrator
  66. pool_connections : 100 # Number of different hosts
  67. pool_maxsize : 10 # Number of simultaneous requests by host
  68. # uncomment below section if you want to use a proxy
  69. # see https://2.python-requests.org/en/latest/user/advanced/#proxies
  70. # SOCKS proxies are also supported: see https://2.python-requests.org/en/latest/user/advanced/#socks
  71. # proxies:
  72. # http:
  73. # - http://proxy1:8080
  74. # - http://proxy2:8080
  75. # https:
  76. # - http://proxy1:8080
  77. # - http://proxy2:8080
  78. # using_tor_proxy : True
  79. # extra_proxy_timeout : 10.0 # Extra seconds to add in order to account for the time taken by the proxy
  80. # uncomment below section only if you have more than one network interface
  81. # which can be the source of outgoing search requests
  82. # source_ips:
  83. # - 1.1.1.1
  84. # - 1.1.1.2
  85. # External plugin configuration
  86. # See http://searx.github.io/searx/dev/plugins.html for more details
  87. #
  88. # plugins:
  89. # - plugin1
  90. # - plugin2
  91. # - ...
  92. # uncomment below section if you want to configure which plugin is enabled by default
  93. #
  94. # enabled_plugins:
  95. # - "HTTPS rewrite"
  96. # - ...
  97. checker:
  98. # disable checker when in debug mode
  99. off_when_debug: True
  100. # scheduling: interval or int
  101. # use "scheduling: False" to disable scheduling
  102. # to activate the scheduler:
  103. # * uncomment "scheduling" section
  104. # * add "cache2 = name=searxcache,items=2000,blocks=2000,blocksize=4096,bitmap=1" to your uwsgi.ini
  105. # scheduling:
  106. # start_after: [300, 1800] # delay to start the first run of the checker
  107. # every: [86400, 90000] # how often the checker runs
  108. # additional tests: only for the YAML anchors (see the engines section)
  109. additional_tests:
  110. rosebud: &test_rosebud
  111. matrix:
  112. query: rosebud
  113. lang: en
  114. result_container:
  115. - not_empty
  116. - ['one_title_contains', 'citizen kane']
  117. test:
  118. - unique_results
  119. android: &test_android
  120. matrix:
  121. query: ['android']
  122. lang: ['en', 'de', 'fr', 'zh-CN']
  123. result_container:
  124. - not_empty
  125. - ['one_title_contains', 'google']
  126. test:
  127. - unique_results
  128. # tests: only for the YAML anchors (see the engines section)
  129. tests:
  130. infobox: &tests_infobox
  131. infobox:
  132. matrix:
  133. query: ["linux", "new york", "bbc"]
  134. result_container:
  135. - has_infobox
  136. engines:
  137. - name: apk mirror
  138. engine: apkmirror
  139. timeout: 4.0
  140. shortcut: apkm
  141. disabled: True
  142. # Requires Tor
  143. - name : ahmia
  144. engine : ahmia
  145. categories : onions
  146. enable_http : True
  147. shortcut : ah
  148. - name : arch linux wiki
  149. engine : archlinux
  150. shortcut : al
  151. - name : archive is
  152. engine : xpath
  153. search_url : https://archive.is/{query}
  154. url_xpath : (//div[@class="TEXT-BLOCK"]/a)/@href
  155. title_xpath : (//div[@class="TEXT-BLOCK"]/a)
  156. content_xpath : //div[@class="TEXT-BLOCK"]/ul/li
  157. categories : general
  158. timeout : 7.0
  159. disabled : True
  160. shortcut : ai
  161. about:
  162. website: https://archive.is/
  163. wikidata_id: Q13515725
  164. official_api_documentation: http://mementoweb.org/depot/native/archiveis/
  165. use_official_api: false
  166. require_api_key: false
  167. results: HTML
  168. - name : arxiv
  169. engine : arxiv
  170. shortcut : arx
  171. categories : science
  172. timeout : 4.0
  173. # tmp suspended: dh key too small
  174. # - name : base
  175. # engine : base
  176. # shortcut : bs
  177. - name : wikipedia
  178. engine : wikipedia
  179. shortcut : wp
  180. base_url : 'https://{language}.wikipedia.org/'
  181. - name : bing
  182. engine : bing
  183. shortcut : bi
  184. - name : bing images
  185. engine : bing_images
  186. shortcut : bii
  187. - name : bing news
  188. engine : bing_news
  189. shortcut : bin
  190. - name : bing videos
  191. engine : bing_videos
  192. shortcut : biv
  193. - name : bitbucket
  194. engine : xpath
  195. paging : True
  196. search_url : https://bitbucket.org/repo/all/{pageno}?name={query}
  197. url_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  198. title_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]
  199. content_xpath : //article[@class="repo-summary"]/p
  200. categories : it
  201. timeout : 4.0
  202. disabled : True
  203. shortcut : bb
  204. about:
  205. website: https://bitbucket.org/
  206. wikidata_id: Q2493781
  207. official_api_documentation: https://developer.atlassian.com/bitbucket
  208. use_official_api: false
  209. require_api_key: false
  210. results: HTML
  211. - name : btdigg
  212. engine : btdigg
  213. shortcut : bt
  214. - name : ccc-tv
  215. engine : xpath
  216. paging : False
  217. search_url : https://media.ccc.de/search/?q={query}
  218. url_xpath : //div[@class="caption"]/h3/a/@href
  219. title_xpath : //div[@class="caption"]/h3/a/text()
  220. content_xpath : //div[@class="caption"]/h4/@title
  221. categories : videos
  222. disabled : True
  223. shortcut : c3tv
  224. about:
  225. website: https://media.ccc.de/
  226. wikidata_id: Q80729951
  227. official_api_documentation: https://github.com/voc/voctoweb
  228. use_official_api: false
  229. require_api_key: false
  230. results: HTML
  231. - name : ccengine
  232. engine : ccengine
  233. categories : images
  234. shortcut : cce
  235. - name : crossref
  236. engine : json_engine
  237. paging : True
  238. search_url : https://search.crossref.org/dois?q={query}&page={pageno}
  239. url_query : doi
  240. title_query : title
  241. title_html_to_text: True
  242. content_query : fullCitation
  243. content_html_to_text: True
  244. categories : science
  245. shortcut : cr
  246. about:
  247. website: https://www.crossref.org/
  248. wikidata_id: Q5188229
  249. official_api_documentation: https://github.com/CrossRef/rest-api-doc
  250. use_official_api: false
  251. require_api_key: false
  252. results: JSON
  253. - name : currency
  254. engine : currency_convert
  255. categories : general
  256. shortcut : cc
  257. - name : deezer
  258. engine : deezer
  259. shortcut : dz
  260. - name : deviantart
  261. engine : deviantart
  262. shortcut : da
  263. timeout : 3.0
  264. - name : ddg definitions
  265. engine : duckduckgo_definitions
  266. shortcut : ddd
  267. weight : 2
  268. disabled : True
  269. tests: *tests_infobox
  270. # cloudflare protected
  271. # - name : digbt
  272. # engine : digbt
  273. # shortcut : dbt
  274. # timeout : 6.0
  275. # disabled : True
  276. - name : digg
  277. engine : digg
  278. shortcut : dg
  279. - name : erowid
  280. engine : xpath
  281. paging : True
  282. first_page_num : 0
  283. page_size : 30
  284. search_url : https://www.erowid.org/search.php?q={query}&s={pageno}
  285. url_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  286. title_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  287. content_xpath : //dl[@class="results-list"]/dd[@class="result-details"]
  288. categories : general
  289. shortcut : ew
  290. disabled : True
  291. about:
  292. website: https://www.erowid.org/
  293. wikidata_id: Q1430691
  294. official_api_documentation:
  295. use_official_api: false
  296. require_api_key: false
  297. results: HTML
  298. # - name : elasticsearch
  299. # shortcut : es
  300. # engine : elasticsearch
  301. # base_url : http://localhost:9200
  302. # username : elastic
  303. # password : changeme
  304. # index : my-index
  305. # # available options: match, simple_query_string, term, terms, custom
  306. # query_type : match
  307. # # if query_type is set to custom, provide your query here
  308. # #custom_query_json: {"query":{"match_all": {}}}
  309. # #show_metadata: False
  310. # disabled : True
  311. - name : wikidata
  312. engine : wikidata
  313. shortcut : wd
  314. timeout : 3.0
  315. weight : 2
  316. tests: *tests_infobox
  317. - name : duckduckgo
  318. engine : duckduckgo
  319. shortcut : ddg
  320. disabled : True
  321. - name : duckduckgo images
  322. engine : duckduckgo_images
  323. shortcut : ddi
  324. timeout: 3.0
  325. disabled : True
  326. - name : etools
  327. engine : etools
  328. shortcut : eto
  329. disabled : True
  330. additional_tests:
  331. rosebud: *test_rosebud
  332. - name : etymonline
  333. engine : xpath
  334. paging : True
  335. search_url : https://etymonline.com/search?page={pageno}&q={query}
  336. url_xpath : //a[contains(@class, "word__name--")]/@href
  337. title_xpath : //a[contains(@class, "word__name--")]
  338. content_xpath : //section[contains(@class, "word__defination")]
  339. first_page_num : 1
  340. shortcut : et
  341. disabled : True
  342. about:
  343. website: https://www.etymonline.com/
  344. wikidata_id: Q1188617
  345. official_api_documentation:
  346. use_official_api: false
  347. require_api_key: false
  348. results: HTML
  349. # - name : ebay
  350. # engine : ebay
  351. # shortcut : eb
  352. # disabled : True
  353. # timeout: 5
  354. - name : 1x
  355. engine : www1x
  356. shortcut : 1x
  357. timeout : 3.0
  358. disabled : True
  359. - name : fdroid
  360. engine : fdroid
  361. shortcut : fd
  362. disabled : True
  363. - name : flickr
  364. categories : images
  365. shortcut : fl
  366. # You can use the engine using the official stable API, but you need an API key
  367. # See : https://www.flickr.com/services/apps/create/
  368. # engine : flickr
  369. # api_key: 'apikey' # required!
  370. # Or you can use the html non-stable engine, activated by default
  371. engine : flickr_noapi
  372. - name : free software directory
  373. engine : mediawiki
  374. shortcut : fsd
  375. categories : it
  376. base_url : https://directory.fsf.org/
  377. number_of_results : 5
  378. # what part of a page matches the query string: title, text, nearmatch
  379. # title - query matches title, text - query matches the text of page, nearmatch - nearmatch in title
  380. search_type : title
  381. timeout : 5.0
  382. disabled : True
  383. about:
  384. website: https://directory.fsf.org/
  385. wikidata_id: Q2470288
  386. # - name : freesound
  387. # engine : freesound
  388. # shortcut : fnd
  389. # disabled : True
  390. # timeout : 15.0
  391. # api_key : MyAPIkey
  392. # API key required, see : https://freesound.org/docs/api/overview.html
  393. - name : frinkiac
  394. engine : frinkiac
  395. shortcut : frk
  396. disabled : True
  397. - name : genius
  398. engine : genius
  399. shortcut : gen
  400. - name : gigablast
  401. engine : gigablast
  402. shortcut : gb
  403. timeout : 3.0
  404. disabled: True
  405. additional_tests:
  406. rosebud: *test_rosebud
  407. - name : gentoo
  408. engine : gentoo
  409. shortcut : ge
  410. - name : gitlab
  411. engine : json_engine
  412. paging : True
  413. search_url : https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  414. url_query : web_url
  415. title_query : name_with_namespace
  416. content_query : description
  417. page_size : 20
  418. categories : it
  419. shortcut : gl
  420. timeout : 10.0
  421. disabled : True
  422. about:
  423. website: https://about.gitlab.com/
  424. wikidata_id: Q16639197
  425. official_api_documentation: https://docs.gitlab.com/ee/api/
  426. use_official_api: false
  427. require_api_key: false
  428. results: JSON
  429. - name : github
  430. engine : github
  431. shortcut : gh
  432. # This a Gitea service. If you would like to use a different instance,
  433. # change codeberg.org to URL of the desired Gitea host. Or you can create
  434. # a new engine by copying this and changing the name, shortcut and search_url.
  435. - name : codeberg
  436. engine : json_engine
  437. search_url : https://codeberg.org/api/v1/repos/search?q={query}&limit=10
  438. url_query : html_url
  439. title_query : name
  440. content_query : description
  441. categories : it
  442. shortcut : cb
  443. disabled : True
  444. about:
  445. website: https://codeberg.org/
  446. wikidata_id:
  447. official_api_documentation: https://try.gitea.io/api/swagger
  448. use_official_api: false
  449. require_api_key: false
  450. results: JSON
  451. - name : google
  452. engine : google
  453. shortcut : go
  454. # additional_tests:
  455. # android: *test_android
  456. - name : google images
  457. engine : google_images
  458. shortcut : goi
  459. # additional_tests:
  460. # android: *test_android
  461. # dali:
  462. # matrix:
  463. # query: ['Dali Christ']
  464. # lang: ['en', 'de', 'fr', 'zh-CN']
  465. # result_container:
  466. # - ['one_title_contains', 'Salvador']
  467. - name : google news
  468. engine : google_news
  469. shortcut : gon
  470. # additional_tests:
  471. # android: *test_android
  472. - name : google videos
  473. engine : google_videos
  474. shortcut : gov
  475. # additional_tests:
  476. # android: *test_android
  477. - name : google scholar
  478. engine : google_scholar
  479. shortcut : gos
  480. - name : google play apps
  481. engine : xpath
  482. search_url : https://play.google.com/store/search?q={query}&c=apps
  483. results_xpath : '//div[@class="ImZGtf mpg5gc"]'
  484. title_xpath : './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a'
  485. url_xpath : './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a/@href'
  486. content_xpath : './/div[@class="RZEgze"]//a[@class="mnKHRc"]'
  487. thumbnail_xpath : './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  488. categories : files
  489. shortcut : gpa
  490. disabled : True
  491. about:
  492. website: https://play.google.com/
  493. wikidata_id: Q79576
  494. official_api_documentation:
  495. use_official_api: false
  496. require_api_key: false
  497. results: HTML
  498. - name : google play movies
  499. engine : xpath
  500. search_url : https://play.google.com/store/search?q={query}&c=movies
  501. results_xpath : '//div[@class="ImZGtf mpg5gc"]'
  502. title_xpath : './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a'
  503. url_xpath : './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a/@href'
  504. content_xpath : './/div[@class="kCSSQe"]'
  505. thumbnail_xpath : './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  506. categories : videos
  507. shortcut : gpm
  508. disabled : True
  509. about:
  510. website: https://play.google.com/
  511. wikidata_id: Q79576
  512. official_api_documentation:
  513. use_official_api: false
  514. require_api_key: false
  515. results: HTML
  516. - name : geektimes
  517. engine : xpath
  518. paging : True
  519. search_url : https://habr.com/en/search/page{pageno}/?q={query}
  520. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  521. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  522. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  523. categories : it
  524. timeout : 4.0
  525. disabled : True
  526. shortcut : gt
  527. about:
  528. website: https://geektimes.ru/
  529. wikidata_id: Q50572423
  530. official_api_documentation:
  531. use_official_api: false
  532. require_api_key: false
  533. results: HTML
  534. - name : habrahabr
  535. engine : xpath
  536. paging : True
  537. search_url : https://habrahabr.ru/search/page{pageno}/?q={query}
  538. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  539. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  540. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  541. categories : it
  542. timeout : 4.0
  543. disabled : True
  544. shortcut : habr
  545. about:
  546. website: https://habr.com/
  547. wikidata_id: Q4494434
  548. official_api_documentation: https://habr.com/en/docs/help/api/
  549. use_official_api: false
  550. require_api_key: false
  551. results: HTML
  552. - name : hoogle
  553. engine : xpath
  554. paging : True
  555. search_url : https://hoogle.haskell.org/?hoogle={query}&start={pageno}
  556. results_xpath : '//div[@class="result"]'
  557. title_xpath : './/div[@class="ans"]//a'
  558. url_xpath : './/div[@class="ans"]//a/@href'
  559. content_xpath : './/div[@class="from"]'
  560. page_size : 20
  561. categories : it
  562. shortcut : ho
  563. about:
  564. website: https://www.haskell.org/
  565. wikidata_id: Q34010
  566. official_api_documentation: https://hackage.haskell.org/api
  567. use_official_api: false
  568. require_api_key: false
  569. results: JSON
  570. - name : ina
  571. engine : ina
  572. shortcut : in
  573. timeout : 6.0
  574. disabled : True
  575. - name : invidious
  576. engine : invidious
  577. base_url :
  578. - https://invidious.tube/
  579. - https://invidious.snopyta.org/
  580. shortcut: iv
  581. timeout : 5.0
  582. disabled : True
  583. - name: kickass
  584. engine : kickass
  585. shortcut : kc
  586. timeout : 4.0
  587. disabled : True
  588. - name : library genesis
  589. engine : xpath
  590. enable_http: True
  591. search_url : http://libgen.rs/search.php?req={query}
  592. url_xpath : //a[contains(@href,"bookfi.net/md5")]/@href
  593. title_xpath : //a[contains(@href,"book/")]/text()[1]
  594. content_xpath : //td/a[1][contains(@href,"=author")]/text()
  595. categories : general
  596. timeout : 7.0
  597. disabled : True
  598. shortcut : lg
  599. about:
  600. website: http://libgen.rs/
  601. wikidata_id: Q22017206
  602. official_api_documentation:
  603. use_official_api: false
  604. require_api_key: false
  605. results: HTML
  606. - name : library of congress
  607. engine : loc
  608. shortcut : loc
  609. categories : images
  610. - name : lobste.rs
  611. engine : xpath
  612. search_url : https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  613. results_xpath : //li[contains(@class, "story")]
  614. url_xpath : .//a[@class="u-url"]/@href
  615. title_xpath : .//a[@class="u-url"]
  616. content_xpath : .//a[@class="domain"]
  617. categories : it
  618. shortcut : lo
  619. timeout : 5.0
  620. disabled: True
  621. about:
  622. website: https://lobste.rs/
  623. wikidata_id: Q60762874
  624. official_api_documentation:
  625. use_official_api: false
  626. require_api_key: false
  627. results: HTML
  628. # - name : meilisearch
  629. # engine : meilisearch
  630. # shortcut: mes
  631. # enable_http: True
  632. # base_url : http://localhost:7700
  633. # index : my-index
  634. - name : microsoft academic
  635. engine : microsoft_academic
  636. categories : science
  637. shortcut : ma
  638. - name : mixcloud
  639. engine : mixcloud
  640. shortcut : mc
  641. - name : npm
  642. engine : json_engine
  643. paging : True
  644. search_url : https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  645. results_query : results
  646. url_query : package/links/npm
  647. title_query : package/name
  648. content_query : package/description
  649. page_size : 25
  650. categories : it
  651. disabled: True
  652. timeout: 5.0
  653. shortcut : npm
  654. about:
  655. website: https://npms.io/
  656. wikidata_id: Q7067518
  657. official_api_documentation: https://api-docs.npms.io/
  658. use_official_api: false
  659. require_api_key: false
  660. results: JSON
  661. # Requires Tor
  662. - name : not evil
  663. engine : not_evil
  664. categories : onions
  665. enable_http : True
  666. shortcut : ne
  667. - name : nyaa
  668. engine : nyaa
  669. shortcut : nt
  670. disabled : True
  671. - name : openairedatasets
  672. engine : json_engine
  673. paging : True
  674. search_url : https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  675. results_query : response/results/result
  676. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  677. title_query : metadata/oaf:entity/oaf:result/title/$
  678. content_query : metadata/oaf:entity/oaf:result/description/$
  679. content_html_to_text: True
  680. categories : science
  681. shortcut : oad
  682. timeout: 5.0
  683. about:
  684. website: https://www.openaire.eu/
  685. wikidata_id: Q25106053
  686. official_api_documentation: https://api.openaire.eu/
  687. use_official_api: false
  688. require_api_key: false
  689. results: JSON
  690. - name : openairepublications
  691. engine : json_engine
  692. paging : True
  693. search_url : https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  694. results_query : response/results/result
  695. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  696. title_query : metadata/oaf:entity/oaf:result/title/$
  697. content_query : metadata/oaf:entity/oaf:result/description/$
  698. content_html_to_text: True
  699. categories : science
  700. shortcut : oap
  701. timeout: 5.0
  702. about:
  703. website: https://www.openaire.eu/
  704. wikidata_id: Q25106053
  705. official_api_documentation: https://api.openaire.eu/
  706. use_official_api: false
  707. require_api_key: false
  708. results: JSON
  709. # - name : opensemanticsearch
  710. # engine : opensemantic
  711. # shortcut : oss
  712. # base_url : 'http://localhost:8983/solr/opensemanticsearch/'
  713. - name : openstreetmap
  714. engine : openstreetmap
  715. shortcut : osm
  716. - name : openrepos
  717. engine : xpath
  718. paging : True
  719. search_url : https://openrepos.net/search/node/{query}?page={pageno}
  720. url_xpath : //li[@class="search-result"]//h3[@class="title"]/a/@href
  721. title_xpath : //li[@class="search-result"]//h3[@class="title"]/a
  722. content_xpath : //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  723. categories : files
  724. timeout : 4.0
  725. disabled : True
  726. shortcut : or
  727. about:
  728. website: https://openrepos.net/
  729. wikidata_id:
  730. official_api_documentation:
  731. use_official_api: false
  732. require_api_key: false
  733. results: HTML
  734. - name : pdbe
  735. engine : pdbe
  736. shortcut : pdb
  737. # Hide obsolete PDB entries.
  738. # Default is not to hide obsolete structures
  739. # hide_obsolete : False
  740. - name : photon
  741. engine : photon
  742. shortcut : ph
  743. - name : piratebay
  744. engine : piratebay
  745. shortcut : tpb
  746. # You may need to change this URL to a proxy if piratebay is blocked in your country
  747. url: https://thepiratebay.org/
  748. timeout : 3.0
  749. - name : pubmed
  750. engine : pubmed
  751. shortcut : pub
  752. categories: science
  753. timeout : 3.0
  754. - name : qwant
  755. engine : qwant
  756. shortcut : qw
  757. categories : general
  758. disabled : True
  759. additional_tests:
  760. rosebud: *test_rosebud
  761. - name : qwant images
  762. engine : qwant
  763. shortcut : qwi
  764. categories : images
  765. - name : qwant news
  766. engine : qwant
  767. shortcut : qwn
  768. categories : news
  769. # - name: library
  770. # engine: recoll
  771. # shortcut: lib
  772. # base_url: 'https://recoll.example.org/'
  773. # search_dir: ''
  774. # mount_prefix: /export
  775. # dl_prefix: 'https://download.example.org'
  776. # timeout: 30.0
  777. # categories: files
  778. # disabled: True
  779. # - name: recoll library reference
  780. # engine: recoll
  781. # base_url: 'https://recoll.example.org/'
  782. # search_dir: reference
  783. # mount_prefix: /export
  784. # dl_prefix: 'https://download.example.org'
  785. # shortcut: libr
  786. # timeout: 30.0
  787. # categories: files
  788. # disabled: True
  789. - name : reddit
  790. engine : reddit
  791. shortcut : re
  792. page_size : 25
  793. timeout : 10.0
  794. disabled : True
  795. # tmp suspended: bad certificate
  796. # - name : scanr structures
  797. # shortcut: scs
  798. # engine : scanr_structures
  799. # disabled : True
  800. - name: sepiasearch
  801. engine: sepiasearch
  802. shortcut: sep
  803. - name : soundcloud
  804. engine : soundcloud
  805. shortcut : sc
  806. - name : stackoverflow
  807. engine : stackoverflow
  808. shortcut : st
  809. - name : searchcode code
  810. engine : searchcode_code
  811. shortcut : scc
  812. disabled : True
  813. - name : framalibre
  814. engine : framalibre
  815. shortcut : frl
  816. disabled : True
  817. # - name : searx
  818. # engine : searx_engine
  819. # shortcut : se
  820. # instance_urls :
  821. # - http://127.0.0.1:8888/
  822. # - ...
  823. # disabled : True
  824. - name : semantic scholar
  825. engine : semantic_scholar
  826. disabled : True
  827. shortcut : se
  828. categories : science
  829. about:
  830. website: https://www.semanticscholar.org/
  831. wikidata_id: Q22908627
  832. official_api_documentation: https://api.semanticscholar.org/
  833. use_official_api: false
  834. require_api_key: false
  835. results: JSON
  836. # Spotify needs API credentials
  837. # - name : spotify
  838. # engine : spotify
  839. # shortcut : stf
  840. # api_client_id : *******
  841. # api_client_secret : *******
  842. # - name : solr
  843. # engine : solr
  844. # shortcut : slr
  845. # base_url : http://localhost:8983
  846. # collection : collection_name
  847. # sort : '' # sorting: asc or desc
  848. # field_list : '' # comma separated list of field names to display on the UI
  849. # default_fields : '' # default field to query
  850. # query_fields : '' # query fields
  851. # enable_http : True
  852. - name : startpage
  853. engine : startpage
  854. shortcut : sp
  855. timeout : 6.0
  856. disabled : True
  857. additional_tests:
  858. rosebud: *test_rosebud
  859. - name : tokyotoshokan
  860. engine : tokyotoshokan
  861. shortcut : tt
  862. timeout : 6.0
  863. disabled : True
  864. - name : solidtorrents
  865. engine : solidtorrents
  866. shortcut : solid
  867. timeout : 3.0
  868. disabled : True
  869. - name : torrentz
  870. engine : torrentz
  871. shortcut : tor
  872. url: https://torrentz2.eu/
  873. timeout : 3.0
  874. # Requires Tor
  875. - name : torch
  876. engine : xpath
  877. paging : True
  878. search_url : http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  879. results_xpath : //table//tr
  880. url_xpath : ./td[2]/a
  881. title_xpath : ./td[2]/b
  882. content_xpath : ./td[2]/small
  883. categories : onions
  884. enable_http : True
  885. shortcut : tch
  886. # maybe in a fun category
  887. # - name : uncyclopedia
  888. # engine : mediawiki
  889. # shortcut : unc
  890. # base_url : https://uncyclopedia.wikia.com/
  891. # number_of_results : 5
  892. # tmp suspended - too slow, too many errors
  893. # - name : urbandictionary
  894. # engine : xpath
  895. # search_url : http://www.urbandictionary.com/define.php?term={query}
  896. # url_xpath : //*[@class="word"]/@href
  897. # title_xpath : //*[@class="def-header"]
  898. # content_xpath : //*[@class="meaning"]
  899. # shortcut : ud
  900. - name : unsplash
  901. engine : unsplash
  902. disabled: True
  903. shortcut : us
  904. - name : yahoo
  905. engine : yahoo
  906. shortcut : yh
  907. disabled : True
  908. - name : yahoo news
  909. engine : yahoo_news
  910. shortcut : yhn
  911. - name : youtube
  912. shortcut : yt
  913. # You can use the engine using the official stable API, but you need an API key
  914. # See : https://console.developers.google.com/project
  915. # engine : youtube_api
  916. # api_key: 'apikey' # required!
  917. # Or you can use the html non-stable engine, activated by default
  918. engine : youtube_noapi
  919. - name : yggtorrent
  920. engine : yggtorrent
  921. shortcut : ygg
  922. url: https://www4.yggtorrent.li/
  923. disabled : True
  924. timeout : 4.0
  925. - name : dailymotion
  926. engine : dailymotion
  927. shortcut : dm
  928. - name : vimeo
  929. engine : vimeo
  930. shortcut : vm
  931. - name : wiby
  932. engine : json_engine
  933. search_url : https://wiby.me/json/?q={query}
  934. url_query : URL
  935. title_query : Title
  936. content_query : Snippet
  937. categories : general
  938. shortcut : wib
  939. disabled : True
  940. - name : wikibooks
  941. engine : mediawiki
  942. shortcut : wb
  943. categories : general
  944. base_url : "https://{language}.wikibooks.org/"
  945. number_of_results : 5
  946. search_type : text
  947. disabled : True
  948. about:
  949. website: https://www.wikibooks.org/
  950. wikidata_id: Q367
  951. - name : wikinews
  952. engine : mediawiki
  953. shortcut : wn
  954. categories : news
  955. base_url : "https://{language}.wikinews.org/"
  956. number_of_results : 5
  957. search_type : text
  958. disabled : True
  959. about:
  960. website: https://www.wikinews.org/
  961. wikidata_id: Q964
  962. - name : wikiquote
  963. engine : mediawiki
  964. shortcut : wq
  965. categories : general
  966. base_url : "https://{language}.wikiquote.org/"
  967. number_of_results : 5
  968. search_type : text
  969. disabled : True
  970. additional_tests:
  971. rosebud: *test_rosebud
  972. about:
  973. website: https://www.wikiquote.org/
  974. wikidata_id: Q369
  975. - name : wikisource
  976. engine : mediawiki
  977. shortcut : ws
  978. categories : general
  979. base_url : "https://{language}.wikisource.org/"
  980. number_of_results : 5
  981. search_type : text
  982. disabled : True
  983. about:
  984. website: https://www.wikisource.org/
  985. wikidata_id: Q263
  986. - name : wiktionary
  987. engine : mediawiki
  988. shortcut : wt
  989. categories : general
  990. base_url : "https://{language}.wiktionary.org/"
  991. number_of_results : 5
  992. search_type : text
  993. disabled : True
  994. about:
  995. website: https://www.wiktionary.org/
  996. wikidata_id: Q151
  997. - name : wikiversity
  998. engine : mediawiki
  999. shortcut : wv
  1000. categories : general
  1001. base_url : "https://{language}.wikiversity.org/"
  1002. number_of_results : 5
  1003. search_type : text
  1004. disabled : True
  1005. about:
  1006. website: https://www.wikiversity.org/
  1007. wikidata_id: Q370
  1008. - name : wikivoyage
  1009. engine : mediawiki
  1010. shortcut : wy
  1011. categories : general
  1012. base_url : "https://{language}.wikivoyage.org/"
  1013. number_of_results : 5
  1014. search_type : text
  1015. disabled : True
  1016. about:
  1017. website: https://www.wikivoyage.org/
  1018. wikidata_id: Q373
  1019. - name : wolframalpha
  1020. shortcut : wa
  1021. # You can use the engine using the official stable API, but you need an API key
  1022. # See : http://products.wolframalpha.com/api/
  1023. # engine : wolframalpha_api
  1024. # api_key: '' # required!
  1025. engine : wolframalpha_noapi
  1026. timeout: 6.0
  1027. categories : science
  1028. - name : dictzone
  1029. engine : dictzone
  1030. shortcut : dc
  1031. - name : mymemory translated
  1032. engine : translated
  1033. shortcut : tl
  1034. timeout : 5.0
  1035. disabled : True
  1036. # You can use without an API key, but you are limited to 1000 words/day
  1037. # See : http://mymemory.translated.net/doc/usagelimits.php
  1038. # api_key : ''
  1039. - name : 1337x
  1040. engine : 1337x
  1041. shortcut : 1337x
  1042. disabled : True
  1043. - name : duden
  1044. engine : duden
  1045. shortcut : du
  1046. disabled : True
  1047. - name : seznam
  1048. shortcut: szn
  1049. engine: seznam
  1050. disabled : True
  1051. - name : mojeek
  1052. shortcut: mjk
  1053. engine: xpath
  1054. paging : True
  1055. search_url : https://www.mojeek.com/search?q={query}&s={pageno}
  1056. results_xpath: /html/body//div[@class="results"]/ul[@class="results-standard"]/li
  1057. url_xpath : ./h2/a/@href
  1058. title_xpath : ./h2
  1059. content_xpath : ./p[@class="s"]
  1060. suggestion_xpath : /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
  1061. first_page_num : 0
  1062. page_size : 10
  1063. disabled : True
  1064. about:
  1065. website: https://www.mojeek.com/
  1066. wikidata_id: Q60747299
  1067. official_api_documentation: https://www.mojeek.com/services/api.html/
  1068. use_official_api: false
  1069. require_api_key: false
  1070. results: HTML
  1071. - name : naver
  1072. shortcut: nvr
  1073. engine: xpath
  1074. paging : True
  1075. search_url : https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1076. url_xpath : //a[@class="link_tit"]/@href
  1077. title_xpath : //a[@class="link_tit"]
  1078. content_xpath : //a[@class="total_dsc"]/div
  1079. first_page_num : 1
  1080. page_size : 10
  1081. disabled : True
  1082. about:
  1083. website: https://www.naver.com/
  1084. wikidata_id: Q485639
  1085. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1086. use_official_api: false
  1087. require_api_key: false
  1088. results: HTML
  1089. - name : rubygems
  1090. shortcut: rbg
  1091. engine: xpath
  1092. paging : True
  1093. search_url : https://rubygems.org/search?page={pageno}&query={query}
  1094. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1095. url_xpath : ./@href
  1096. title_xpath : ./span/h2
  1097. content_xpath : ./span/p
  1098. suggestion_xpath : /html/body/main/div/div[@class="search__suggestions"]/p/a
  1099. first_page_num : 1
  1100. categories: it
  1101. disabled : True
  1102. about:
  1103. website: https://rubygems.org/
  1104. wikidata_id: Q1853420
  1105. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1106. use_official_api: false
  1107. require_api_key: false
  1108. results: HTML
  1109. - name : peertube
  1110. engine: peertube
  1111. shortcut: ptb
  1112. paging : True
  1113. base_url : https://peer.tube/
  1114. categories: videos
  1115. disabled : True
  1116. - name : mediathekviewweb
  1117. engine : mediathekviewweb
  1118. shortcut : mvw
  1119. # - name : yacy
  1120. # engine : yacy
  1121. # shortcut : ya
  1122. # base_url : 'http://localhost:8090'
  1123. # enable_http: True # required if you aren't using HTTPS for your local yacy instance
  1124. # number_of_results : 5
  1125. # timeout : 3.0
  1126. - name : rumble
  1127. engine : rumble
  1128. shortcut : ru
  1129. base_url : https://rumble.com/
  1130. paging : True
  1131. categories: videos
  1132. disabled : True
  1133. # Doku engine lets you access to any Doku wiki instance:
  1134. # A public one or a privete/corporate one.
  1135. # - name : ubuntuwiki
  1136. # engine : doku
  1137. # shortcut : uw
  1138. # base_url : 'http://doc.ubuntu-fr.org'
  1139. # Be careful when enabling this engine if you are
  1140. # running a public instance. Do not expose any sensitive
  1141. # information. You can restrict access by configuring a list
  1142. # of access tokens under tokens.
  1143. # - name: git grep
  1144. # engine: command
  1145. # command: ['git', 'grep', '{{QUERY}}']
  1146. # shortcut: gg
  1147. # tokens: []
  1148. # disabled: True
  1149. # delimiter:
  1150. # chars: ':'
  1151. # keys: ['filepath', 'code']
  1152. # Be careful when enabling this engine if you are
  1153. # running a public instance. Do not expose any sensitive
  1154. # information. You can restrict access by configuring a list
  1155. # of access tokens under tokens.
  1156. # - name: locate
  1157. # engine: command
  1158. # command: ['locate', '{{QUERY}}']
  1159. # shortcut: loc
  1160. # tokens: []
  1161. # disabled: True
  1162. # delimiter:
  1163. # chars: ' '
  1164. # keys: ['line']
  1165. # Be careful when enabling this engine if you are
  1166. # running a public instance. Do not expose any sensitive
  1167. # information. You can restrict access by configuring a list
  1168. # of access tokens under tokens.
  1169. # - name: find
  1170. # engine: command
  1171. # command: ['find', '.', '-name', '{{QUERY}}']
  1172. # query_type: path
  1173. # shortcut: fnd
  1174. # tokens: []
  1175. # disabled: True
  1176. # delimiter:
  1177. # chars: ' '
  1178. # keys: ['line']
  1179. # Be careful when enabling this engine if you are
  1180. # running a public instance. Do not expose any sensitive
  1181. # information. You can restrict access by configuring a list
  1182. # of access tokens under tokens.
  1183. # - name: pattern search in files
  1184. # engine: command
  1185. # command: ['fgrep', '{{QUERY}}']
  1186. # shortcut: fgr
  1187. # tokens: []
  1188. # disabled: True
  1189. # delimiter:
  1190. # chars: ' '
  1191. # keys: ['line']
  1192. # Be careful when enabling this engine if you are
  1193. # running a public instance. Do not expose any sensitive
  1194. # information. You can restrict access by configuring a list
  1195. # of access tokens under tokens.
  1196. # - name: regex search in files
  1197. # engine: command
  1198. # command: ['grep', '{{QUERY}}']
  1199. # shortcut: gr
  1200. # tokens: []
  1201. # disabled: True
  1202. # delimiter:
  1203. # chars: ' '
  1204. # keys: ['line']
  1205. locales:
  1206. en : English
  1207. ar : العَرَبِيَّة (Arabic)
  1208. bg : Български (Bulgarian)
  1209. bo : བོད་སྐད་ (Tibetian)
  1210. ca : Català (Catalan)
  1211. cs : Čeština (Czech)
  1212. cy : Cymraeg (Welsh)
  1213. da : Dansk (Danish)
  1214. de : Deutsch (German)
  1215. el_GR : Ελληνικά (Greek_Greece)
  1216. eo : Esperanto (Esperanto)
  1217. es : Español (Spanish)
  1218. et : Eesti (Estonian)
  1219. eu : Euskara (Basque)
  1220. fa_IR : (fārsī) فارسى (Persian)
  1221. fi : Suomi (Finnish)
  1222. fil : Wikang Filipino (Filipino)
  1223. fr : Français (French)
  1224. gl : Galego (Galician)
  1225. he : עברית (Hebrew)
  1226. hr : Hrvatski (Croatian)
  1227. hu : Magyar (Hungarian)
  1228. ia : Interlingua (Interlingua)
  1229. it : Italiano (Italian)
  1230. ja : 日本語 (Japanese)
  1231. lt : Lietuvių (Lithuanian)
  1232. nl : Nederlands (Dutch)
  1233. nl_BE : Vlaams (Dutch_Belgium)
  1234. oc : Lenga D'òc (Occitan)
  1235. pl : Polski (Polish)
  1236. pt : Português (Portuguese)
  1237. pt_BR : Português (Portuguese_Brazil)
  1238. ro : Română (Romanian)
  1239. ru : Русский (Russian)
  1240. sk : Slovenčina (Slovak)
  1241. sl : Slovenski (Slovene)
  1242. sr : српски (Serbian)
  1243. sv : Svenska (Swedish)
  1244. te : తెలుగు (telugu)
  1245. ta : தமிழ் (Tamil)
  1246. tr : Türkçe (Turkish)
  1247. uk : українська мова (Ukrainian)
  1248. vi : tiếng việt (Vietnamese)
  1249. zh : 中文 (Chinese)
  1250. zh_TW : 國語 (Taiwanese Mandarin)
  1251. doi_resolvers :
  1252. oadoi.org : 'https://oadoi.org/'
  1253. doi.org : 'https://doi.org/'
  1254. doai.io : 'https://dissem.in/'
  1255. sci-hub.tw : 'https://sci-hub.tw/'
  1256. default_doi_resolver : 'oadoi.org'