settings.yml 38 KB

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