settings.yml 38 KB

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