settings.yml 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402
  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. # tests: only for the YAML anchors (see the engines section)
  118. tests:
  119. infobox: &tests_infobox
  120. infobox:
  121. matrix:
  122. query: ["linux", "new york", "bbc"]
  123. result_container:
  124. - has_infobox
  125. engines:
  126. - name: apk mirror
  127. engine: apkmirror
  128. timeout: 4.0
  129. shortcut: apkm
  130. disabled: True
  131. # Requires Tor
  132. - name : ahmia
  133. engine : ahmia
  134. categories : onions
  135. shortcut : ah
  136. - name : arch linux wiki
  137. engine : archlinux
  138. shortcut : al
  139. - name : archive is
  140. engine : xpath
  141. search_url : https://archive.is/{query}
  142. url_xpath : (//div[@class="TEXT-BLOCK"]/a)/@href
  143. title_xpath : (//div[@class="TEXT-BLOCK"]/a)
  144. content_xpath : //div[@class="TEXT-BLOCK"]/ul/li
  145. categories : general
  146. timeout : 7.0
  147. disabled : True
  148. shortcut : ai
  149. about:
  150. website: https://archive.is/
  151. wikidata_id: Q13515725
  152. official_api_documentation: http://mementoweb.org/depot/native/archiveis/
  153. use_official_api: false
  154. require_api_key: false
  155. results: HTML
  156. - name : arxiv
  157. engine : arxiv
  158. shortcut : arx
  159. categories : science
  160. timeout : 4.0
  161. # tmp suspended: dh key too small
  162. # - name : base
  163. # engine : base
  164. # shortcut : bs
  165. - name : wikipedia
  166. engine : wikipedia
  167. shortcut : wp
  168. base_url : 'https://{language}.wikipedia.org/'
  169. - name : bing
  170. engine : bing
  171. shortcut : bi
  172. - name : bing images
  173. engine : bing_images
  174. shortcut : bii
  175. - name : bing news
  176. engine : bing_news
  177. shortcut : bin
  178. - name : bing videos
  179. engine : bing_videos
  180. shortcut : biv
  181. - name : bitbucket
  182. engine : xpath
  183. paging : True
  184. search_url : https://bitbucket.org/repo/all/{pageno}?name={query}
  185. url_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  186. title_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]
  187. content_xpath : //article[@class="repo-summary"]/p
  188. categories : it
  189. timeout : 4.0
  190. disabled : True
  191. shortcut : bb
  192. about:
  193. website: https://bitbucket.org/
  194. wikidata_id: Q2493781
  195. official_api_documentation: https://developer.atlassian.com/bitbucket
  196. use_official_api: false
  197. require_api_key: false
  198. results: HTML
  199. - name : btdigg
  200. engine : btdigg
  201. shortcut : bt
  202. - name : ccc-tv
  203. engine : xpath
  204. paging : False
  205. search_url : https://media.ccc.de/search/?q={query}
  206. url_xpath : //div[@class="caption"]/h3/a/@href
  207. title_xpath : //div[@class="caption"]/h3/a/text()
  208. content_xpath : //div[@class="caption"]/h4/@title
  209. categories : videos
  210. disabled : True
  211. shortcut : c3tv
  212. about:
  213. website: https://media.ccc.de/
  214. wikidata_id: Q80729951
  215. official_api_documentation: https://github.com/voc/voctoweb
  216. use_official_api: false
  217. require_api_key: false
  218. results: HTML
  219. - name : crossref
  220. engine : json_engine
  221. paging : True
  222. search_url : https://search.crossref.org/dois?q={query}&page={pageno}
  223. url_query : doi
  224. title_query : title
  225. content_query : fullCitation
  226. categories : science
  227. shortcut : cr
  228. about:
  229. website: https://www.crossref.org/
  230. wikidata_id: Q5188229
  231. official_api_documentation: https://github.com/CrossRef/rest-api-doc
  232. use_official_api: false
  233. require_api_key: false
  234. results: JSON
  235. - name : currency
  236. engine : currency_convert
  237. categories : general
  238. shortcut : cc
  239. - name : deezer
  240. engine : deezer
  241. shortcut : dz
  242. - name : deviantart
  243. engine : deviantart
  244. shortcut : da
  245. timeout : 3.0
  246. - name : ddg definitions
  247. engine : duckduckgo_definitions
  248. shortcut : ddd
  249. weight : 2
  250. disabled : True
  251. tests: *tests_infobox
  252. # cloudflare protected
  253. # - name : digbt
  254. # engine : digbt
  255. # shortcut : dbt
  256. # timeout : 6.0
  257. # disabled : True
  258. - name : digg
  259. engine : digg
  260. shortcut : dg
  261. - name : erowid
  262. engine : xpath
  263. paging : True
  264. first_page_num : 0
  265. page_size : 30
  266. search_url : https://www.erowid.org/search.php?q={query}&s={pageno}
  267. url_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  268. title_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  269. content_xpath : //dl[@class="results-list"]/dd[@class="result-details"]
  270. categories : general
  271. shortcut : ew
  272. disabled : True
  273. about:
  274. website: https://www.erowid.org/
  275. wikidata_id: Q1430691
  276. official_api_documentation:
  277. use_official_api: false
  278. require_api_key: false
  279. results: HTML
  280. # - name : elasticsearch
  281. # shortcut : es
  282. # engine : elasticsearch
  283. # base_url : http://localhost:9200
  284. # username : elastic
  285. # password : changeme
  286. # index : my-index
  287. # # available options: match, simple_query_string, term, terms, custom
  288. # query_type : match
  289. # # if query_type is set to custom, provide your query here
  290. # #custom_query_json: {"query":{"match_all": {}}}
  291. # #show_metadata: False
  292. # disabled : True
  293. - name : wikidata
  294. engine : wikidata
  295. shortcut : wd
  296. timeout : 3.0
  297. weight : 2
  298. tests: *tests_infobox
  299. - name : duckduckgo
  300. engine : duckduckgo
  301. shortcut : ddg
  302. disabled : True
  303. - name : duckduckgo images
  304. engine : duckduckgo_images
  305. shortcut : ddi
  306. timeout: 3.0
  307. disabled : True
  308. - name : etools
  309. engine : etools
  310. shortcut : eto
  311. disabled : True
  312. additional_tests:
  313. rosebud: *test_rosebud
  314. - name : etymonline
  315. engine : xpath
  316. paging : True
  317. search_url : https://etymonline.com/search?page={pageno}&q={query}
  318. url_xpath : //a[contains(@class, "word__name--")]/@href
  319. title_xpath : //a[contains(@class, "word__name--")]
  320. content_xpath : //section[contains(@class, "word__defination")]
  321. first_page_num : 1
  322. shortcut : et
  323. disabled : True
  324. about:
  325. website: https://www.etymonline.com/
  326. wikidata_id: Q1188617
  327. official_api_documentation:
  328. use_official_api: false
  329. require_api_key: false
  330. results: HTML
  331. # - name : ebay
  332. # engine : ebay
  333. # shortcut : eb
  334. # disabled : True
  335. # timeout: 5
  336. - name : 1x
  337. engine : www1x
  338. shortcut : 1x
  339. timeout : 3.0
  340. disabled : True
  341. - name : fdroid
  342. engine : fdroid
  343. shortcut : fd
  344. disabled : True
  345. - name : flickr
  346. categories : images
  347. shortcut : fl
  348. # You can use the engine using the official stable API, but you need an API key
  349. # See : https://www.flickr.com/services/apps/create/
  350. # engine : flickr
  351. # api_key: 'apikey' # required!
  352. # Or you can use the html non-stable engine, activated by default
  353. engine : flickr_noapi
  354. - name : free software directory
  355. engine : mediawiki
  356. shortcut : fsd
  357. categories : it
  358. base_url : https://directory.fsf.org/
  359. number_of_results : 5
  360. # what part of a page matches the query string: title, text, nearmatch
  361. # title - query matches title, text - query matches the text of page, nearmatch - nearmatch in title
  362. search_type : title
  363. timeout : 5.0
  364. disabled : True
  365. about:
  366. website: https://directory.fsf.org/
  367. wikidata_id: Q2470288
  368. - name : frinkiac
  369. engine : frinkiac
  370. shortcut : frk
  371. disabled : True
  372. - name : genius
  373. engine : genius
  374. shortcut : gen
  375. - name : gigablast
  376. engine : gigablast
  377. shortcut : gb
  378. timeout : 3.0
  379. disabled: True
  380. additional_tests:
  381. rosebud: *test_rosebud
  382. - name : gentoo
  383. engine : gentoo
  384. shortcut : ge
  385. - name : gitlab
  386. engine : json_engine
  387. paging : True
  388. search_url : https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  389. url_query : web_url
  390. title_query : name_with_namespace
  391. content_query : description
  392. page_size : 20
  393. categories : it
  394. shortcut : gl
  395. timeout : 10.0
  396. disabled : True
  397. about:
  398. website: https://about.gitlab.com/
  399. wikidata_id: Q16639197
  400. official_api_documentation: https://docs.gitlab.com/ee/api/
  401. use_official_api: false
  402. require_api_key: false
  403. results: JSON
  404. - name : github
  405. engine : github
  406. shortcut : gh
  407. # This a Gitea service. If you would like to use a different instance,
  408. # change codeberg.org to URL of the desired Gitea host. Or you can create
  409. # a new engine by copying this and changing the name, shortcut and search_url.
  410. - name : codeberg
  411. engine : json_engine
  412. search_url : https://codeberg.org/api/v1/repos/search?q={query}&limit=10
  413. url_query : html_url
  414. title_query : name
  415. content_query : description
  416. categories : it
  417. shortcut : cb
  418. disabled : True
  419. about:
  420. website: https://codeberg.org/
  421. wikidata_id:
  422. official_api_documentation: https://try.gitea.io/api/swagger
  423. use_official_api: false
  424. require_api_key: false
  425. results: JSON
  426. - name : google
  427. engine : google
  428. shortcut : go
  429. - name : google images
  430. engine : google_images
  431. shortcut : goi
  432. - name : google news
  433. engine : google_news
  434. shortcut : gon
  435. - name : google videos
  436. engine : google_videos
  437. shortcut : gov
  438. - name : google scholar
  439. engine : xpath
  440. paging : True
  441. search_url : https://scholar.google.com/scholar?start={pageno}&q={query}&hl=en&as_sdt=0,5&as_vis=1
  442. results_xpath : //div[contains(@class, "gs_r")]/div[@class="gs_ri"]
  443. url_xpath : .//h3/a/@href
  444. title_xpath : .//h3/a
  445. content_xpath : .//div[@class="gs_rs"]
  446. suggestion_xpath : //div[@id="gs_res_ccl_top"]//a/b
  447. page_size : 10
  448. first_page_num : 0
  449. categories : science
  450. shortcut : gos
  451. about:
  452. website: https://scholar.google.com/
  453. wikidata_id: Q494817
  454. official_api_documentation:
  455. use_official_api: false
  456. require_api_key: false
  457. results: HTML
  458. - name : google play apps
  459. engine : xpath
  460. search_url : https://play.google.com/store/search?q={query}&c=apps
  461. results_xpath : '//div[@class="WHE7ib mpg5gc"]'
  462. title_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a'
  463. url_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a/@href'
  464. content_xpath : './/div[@class="RZEgze"]//a[@class="mnKHRc"]'
  465. thumbnail_xpath : './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  466. categories : files
  467. shortcut : gpa
  468. disabled : True
  469. about:
  470. website: https://play.google.com/
  471. wikidata_id: Q79576
  472. official_api_documentation:
  473. use_official_api: false
  474. require_api_key: false
  475. results: HTML
  476. - name : google play movies
  477. engine : xpath
  478. search_url : https://play.google.com/store/search?q={query}&c=movies
  479. results_xpath : '//div[@class="WHE7ib mpg5gc"]'
  480. title_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a'
  481. url_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a/@href'
  482. content_xpath : './/div[@class="RZEgze"]//a[@class="mnKHRc"]'
  483. thumbnail_xpath : './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  484. categories : videos
  485. shortcut : gpm
  486. disabled : True
  487. about:
  488. website: https://play.google.com/
  489. wikidata_id: Q79576
  490. official_api_documentation:
  491. use_official_api: false
  492. require_api_key: false
  493. results: HTML
  494. - name : google play music
  495. engine : xpath
  496. search_url : https://play.google.com/store/search?q={query}&c=music
  497. results_xpath : '//div[@class="WHE7ib mpg5gc"]'
  498. title_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a'
  499. url_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a/@href'
  500. content_xpath : './/div[@class="RZEgze"]//a[@class="mnKHRc"]'
  501. thumbnail_xpath : './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  502. categories : music
  503. shortcut : gps
  504. disabled : True
  505. about:
  506. website: https://play.google.com/
  507. wikidata_id: Q79576
  508. official_api_documentation:
  509. use_official_api: false
  510. require_api_key: false
  511. results: HTML
  512. - name : geektimes
  513. engine : xpath
  514. paging : True
  515. search_url : https://geektimes.ru/search/page{pageno}/?q={query}
  516. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  517. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  518. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  519. categories : it
  520. timeout : 4.0
  521. disabled : True
  522. shortcut : gt
  523. about:
  524. website: https://geektimes.ru/
  525. wikidata_id: Q50572423
  526. official_api_documentation:
  527. use_official_api: false
  528. require_api_key: false
  529. results: HTML
  530. - name : habrahabr
  531. engine : xpath
  532. paging : True
  533. search_url : https://habrahabr.ru/search/page{pageno}/?q={query}
  534. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  535. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  536. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  537. categories : it
  538. timeout : 4.0
  539. disabled : True
  540. shortcut : habr
  541. about:
  542. website: https://habr.com/
  543. wikidata_id: Q4494434
  544. official_api_documentation: https://habr.com/en/docs/help/api/
  545. use_official_api: false
  546. require_api_key: false
  547. results: HTML
  548. - name : hoogle
  549. engine : json_engine
  550. paging : True
  551. search_url : https://www.haskell.org/hoogle/?mode=json&hoogle={query}&start={pageno}
  552. results_query : results
  553. url_query : location
  554. title_query : self
  555. content_query : docs
  556. page_size : 20
  557. categories : it
  558. shortcut : ho
  559. about:
  560. website: https://www.haskell.org/
  561. wikidata_id: Q34010
  562. official_api_documentation: https://hackage.haskell.org/api
  563. use_official_api: false
  564. require_api_key: false
  565. results: JSON
  566. - name : ina
  567. engine : ina
  568. shortcut : in
  569. timeout : 6.0
  570. disabled : True
  571. - name : invidious
  572. engine : invidious
  573. base_url :
  574. - https://invidious.tube/
  575. - https://invidious.snopyta.org/
  576. shortcut: iv
  577. timeout : 5.0
  578. disabled : True
  579. - name: kickass
  580. engine : kickass
  581. shortcut : kc
  582. timeout : 4.0
  583. disabled : True
  584. - name : library genesis
  585. engine : xpath
  586. search_url : http://libgen.rs/search.php?req={query}
  587. url_xpath : //a[contains(@href,"bookfi.net/md5")]/@href
  588. title_xpath : //a[contains(@href,"book/")]/text()[1]
  589. content_xpath : //td/a[1][contains(@href,"=author")]/text()
  590. categories : general
  591. timeout : 7.0
  592. disabled : True
  593. shortcut : lg
  594. about:
  595. website: http://libgen.rs/
  596. wikidata_id: Q22017206
  597. official_api_documentation:
  598. use_official_api: false
  599. require_api_key: false
  600. results: HTML
  601. - name : lobste.rs
  602. engine : xpath
  603. search_url : https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  604. results_xpath : //li[contains(@class, "story")]
  605. url_xpath : .//a[@class="u-url"]/@href
  606. title_xpath : .//a[@class="u-url"]
  607. content_xpath : .//a[@class="domain"]
  608. categories : it
  609. shortcut : lo
  610. timeout : 3.0
  611. disabled: True
  612. about:
  613. website: https://lobste.rs/
  614. wikidata_id: Q60762874
  615. official_api_documentation:
  616. use_official_api: false
  617. require_api_key: false
  618. results: HTML
  619. - name : metager
  620. engine : xpath
  621. paging : False
  622. search_url : https://metager.org/meta/meta.ger3?eingabe={query}
  623. url_xpath : //div[@class="result-subheadline"]/a/@href
  624. title_xpath : //div[@class="result-headline"]/h2/@title
  625. content_xpath : //div[@class="result-description"]/text()
  626. categories : general
  627. shortcut : mg
  628. disabled : True
  629. about:
  630. website: https://metager.org/
  631. wikidata_id: Q1924645
  632. official_api_documentation:
  633. use_official_api: false
  634. require_api_key: false
  635. results: HTML
  636. - name : microsoft academic
  637. engine : microsoft_academic
  638. categories : science
  639. shortcut : ma
  640. - name : mixcloud
  641. engine : mixcloud
  642. shortcut : mc
  643. - name : npm
  644. engine : json_engine
  645. paging : True
  646. search_url : https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  647. results_query : results
  648. url_query : package/links/npm
  649. title_query : package/name
  650. content_query : package/description
  651. page_size : 25
  652. categories : it
  653. disabled: True
  654. timeout: 5.0
  655. shortcut : npm
  656. about:
  657. website: https://npms.io/
  658. wikidata_id: Q7067518
  659. official_api_documentation: https://api-docs.npms.io/
  660. use_official_api: false
  661. require_api_key: false
  662. results: JSON
  663. # Requires Tor
  664. - name : not evil
  665. engine : not_evil
  666. shortcut : ne
  667. - name : nyaa
  668. engine : nyaa
  669. shortcut : nt
  670. disabled : True
  671. - name : acgsou
  672. engine : acgsou
  673. shortcut : acg
  674. disabled : True
  675. timeout: 5.0
  676. - name : openairedatasets
  677. engine : json_engine
  678. paging : True
  679. search_url : https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  680. results_query : response/results/result
  681. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  682. title_query : metadata/oaf:entity/oaf:result/title/$
  683. content_query : metadata/oaf:entity/oaf:result/description/$
  684. categories : science
  685. shortcut : oad
  686. timeout: 5.0
  687. about:
  688. website: https://www.openaire.eu/
  689. wikidata_id: Q25106053
  690. official_api_documentation: https://api.openaire.eu/
  691. use_official_api: false
  692. require_api_key: false
  693. results: JSON
  694. - name : openairepublications
  695. engine : json_engine
  696. paging : True
  697. search_url : https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  698. results_query : response/results/result
  699. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  700. title_query : metadata/oaf:entity/oaf:result/title/$
  701. content_query : metadata/oaf:entity/oaf:result/description/$
  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 : yandex
  901. engine : yandex
  902. shortcut : yn
  903. disabled : True
  904. - name : yahoo news
  905. engine : yahoo_news
  906. shortcut : yhn
  907. - name : youtube
  908. shortcut : yt
  909. # You can use the engine using the official stable API, but you need an API key
  910. # See : https://console.developers.google.com/project
  911. # engine : youtube_api
  912. # api_key: 'apikey' # required!
  913. # Or you can use the html non-stable engine, activated by default
  914. engine : youtube_noapi
  915. # tmp suspended: Cloudflare CAPTCHA
  916. #- name : yggtorrent
  917. # engine : yggtorrent
  918. # shortcut : ygg
  919. # url: https://www2.yggtorrent.si/
  920. # disabled : True
  921. # timeout : 4.0
  922. - name : dailymotion
  923. engine : dailymotion
  924. shortcut : dm
  925. - name : vimeo
  926. engine : vimeo
  927. shortcut : vm
  928. - name : wiby
  929. engine : json_engine
  930. search_url : https://wiby.me/json/?q={query}
  931. url_query : URL
  932. title_query : Title
  933. content_query : Snippet
  934. categories : general
  935. shortcut : wib
  936. disabled : True
  937. - name : wikibooks
  938. engine : mediawiki
  939. shortcut : wb
  940. categories : general
  941. base_url : "https://{language}.wikibooks.org/"
  942. number_of_results : 5
  943. search_type : text
  944. disabled : True
  945. about:
  946. website: https://www.wikibooks.org/
  947. wikidata_id: Q367
  948. - name : wikinews
  949. engine : mediawiki
  950. shortcut : wn
  951. categories : news
  952. base_url : "https://{language}.wikinews.org/"
  953. number_of_results : 5
  954. search_type : text
  955. disabled : True
  956. about:
  957. website: https://www.wikinews.org/
  958. wikidata_id: Q964
  959. - name : wikiquote
  960. engine : mediawiki
  961. shortcut : wq
  962. categories : general
  963. base_url : "https://{language}.wikiquote.org/"
  964. number_of_results : 5
  965. search_type : text
  966. disabled : True
  967. additional_tests:
  968. rosebud: *test_rosebud
  969. about:
  970. website: https://www.wikiquote.org/
  971. wikidata_id: Q369
  972. - name : wikisource
  973. engine : mediawiki
  974. shortcut : ws
  975. categories : general
  976. base_url : "https://{language}.wikisource.org/"
  977. number_of_results : 5
  978. search_type : text
  979. disabled : True
  980. about:
  981. website: https://www.wikisource.org/
  982. wikidata_id: Q263
  983. - name : wiktionary
  984. engine : mediawiki
  985. shortcut : wt
  986. categories : general
  987. base_url : "https://{language}.wiktionary.org/"
  988. number_of_results : 5
  989. search_type : text
  990. disabled : True
  991. about:
  992. website: https://www.wiktionary.org/
  993. wikidata_id: Q151
  994. - name : wikiversity
  995. engine : mediawiki
  996. shortcut : wv
  997. categories : general
  998. base_url : "https://{language}.wikiversity.org/"
  999. number_of_results : 5
  1000. search_type : text
  1001. disabled : True
  1002. about:
  1003. website: https://www.wikiversity.org/
  1004. wikidata_id: Q370
  1005. - name : wikivoyage
  1006. engine : mediawiki
  1007. shortcut : wy
  1008. categories : general
  1009. base_url : "https://{language}.wikivoyage.org/"
  1010. number_of_results : 5
  1011. search_type : text
  1012. disabled : True
  1013. about:
  1014. website: https://www.wikivoyage.org/
  1015. wikidata_id: Q373
  1016. - name : wolframalpha
  1017. shortcut : wa
  1018. # You can use the engine using the official stable API, but you need an API key
  1019. # See : http://products.wolframalpha.com/api/
  1020. # engine : wolframalpha_api
  1021. # api_key: '' # required!
  1022. engine : wolframalpha_noapi
  1023. timeout: 6.0
  1024. categories : science
  1025. - name : dictzone
  1026. engine : dictzone
  1027. shortcut : dc
  1028. - name : mymemory translated
  1029. engine : translated
  1030. shortcut : tl
  1031. timeout : 5.0
  1032. disabled : True
  1033. # You can use without an API key, but you are limited to 1000 words/day
  1034. # See : http://mymemory.translated.net/doc/usagelimits.php
  1035. # api_key : ''
  1036. - name : 1337x
  1037. engine : 1337x
  1038. shortcut : 1337x
  1039. disabled : True
  1040. - name : duden
  1041. engine : duden
  1042. shortcut : du
  1043. disabled : True
  1044. - name : seznam
  1045. shortcut: szn
  1046. engine: xpath
  1047. paging : True
  1048. search_url : https://search.seznam.cz/?q={query}&count=10&from={pageno}
  1049. results_xpath: //div[@class="Page-content"]//div[contains(@class, "Result ")]
  1050. url_xpath : ./h3/a/@href
  1051. title_xpath : ./h3
  1052. content_xpath : .//p[@class="Result-description"]
  1053. suggestion_xpath: //div[@class="Related-container"]//div[@class="RelatedItem"]/div/span/a
  1054. first_page_num : 0
  1055. page_size : 10
  1056. disabled : True
  1057. about:
  1058. website: https://www.seznam.cz/
  1059. wikidata_id: Q3490485
  1060. official_api_documentation: https://api.sklik.cz/
  1061. use_official_api: false
  1062. require_api_key: false
  1063. results: HTML
  1064. - name : mojeek
  1065. shortcut: mjk
  1066. engine: xpath
  1067. paging : True
  1068. search_url : https://www.mojeek.com/search?q={query}&s={pageno}
  1069. results_xpath: /html/body//div[@class="results"]/ul[@class="results-standard"]/li
  1070. url_xpath : ./h2/a/@href
  1071. title_xpath : ./h2
  1072. content_xpath : ./p[@class="s"]
  1073. suggestion_xpath : /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
  1074. first_page_num : 0
  1075. page_size : 10
  1076. disabled : True
  1077. about:
  1078. website: https://www.mojeek.com/
  1079. wikidata_id: Q60747299
  1080. official_api_documentation: https://www.mojeek.com/services/api.html/
  1081. use_official_api: false
  1082. require_api_key: false
  1083. results: HTML
  1084. - name : naver
  1085. shortcut: nvr
  1086. engine: xpath
  1087. paging : True
  1088. search_url : https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1089. results_xpath: /html/body//ul[@id="elThumbnailResultArea"]/li
  1090. url_xpath : ./dl/dt/a[@class="title_link"]/@href
  1091. title_xpath : ./dl/dt/a[@class="title_link"]
  1092. content_xpath : ./dl/dd[@class="sh_web_passage"]
  1093. suggestion_xpath : /html/body//div[@class="sp_keyword section"]//a
  1094. first_page_num : 1
  1095. page_size : 10
  1096. disabled : True
  1097. about:
  1098. website: https://www.naver.com/
  1099. wikidata_id: Q485639
  1100. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1101. use_official_api: false
  1102. require_api_key: false
  1103. results: HTML
  1104. - name : rubygems
  1105. shortcut: rbg
  1106. engine: xpath
  1107. paging : True
  1108. search_url : https://rubygems.org/search?page={pageno}&query={query}
  1109. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1110. url_xpath : ./@href
  1111. title_xpath : ./span/h2
  1112. content_xpath : ./span/p
  1113. suggestion_xpath : /html/body/main/div/div[@class="search__suggestions"]/p/a
  1114. first_page_num : 1
  1115. categories: it
  1116. disabled : True
  1117. about:
  1118. website: https://rubygems.org/
  1119. wikidata_id: Q1853420
  1120. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1121. use_official_api: false
  1122. require_api_key: false
  1123. results: HTML
  1124. - name : peertube
  1125. engine: peertube
  1126. shortcut: ptb
  1127. paging : True
  1128. base_url : https://peer.tube/
  1129. categories: videos
  1130. disabled : True
  1131. # - name : yacy
  1132. # engine : yacy
  1133. # shortcut : ya
  1134. # base_url : 'http://localhost:8090'
  1135. # number_of_results : 5
  1136. # timeout : 3.0
  1137. # Doku engine lets you access to any Doku wiki instance:
  1138. # A public one or a privete/corporate one.
  1139. # - name : ubuntuwiki
  1140. # engine : doku
  1141. # shortcut : uw
  1142. # base_url : 'http://doc.ubuntu-fr.org'
  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: git grep
  1148. # engine: command
  1149. # command: ['git', 'grep', '{{QUERY}}']
  1150. # shortcut: gg
  1151. # tokens: []
  1152. # disabled: True
  1153. # delimiter:
  1154. # chars: ':'
  1155. # keys: ['filepath', 'code']
  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: locate
  1161. # engine: command
  1162. # command: ['locate', '{{QUERY}}']
  1163. # shortcut: loc
  1164. # tokens: []
  1165. # disabled: True
  1166. # delimiter:
  1167. # chars: ' '
  1168. # keys: ['line']
  1169. # Be careful when enabling this engine if you are
  1170. # running a public instance. Do not expose any sensitive
  1171. # information. You can restrict access by configuring a list
  1172. # of access tokens under tokens.
  1173. # - name: find
  1174. # engine: command
  1175. # command: ['find', '.', '-name', '{{QUERY}}']
  1176. # query_type: path
  1177. # shortcut: fnd
  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: pattern search in files
  1188. # engine: command
  1189. # command: ['fgrep', '{{QUERY}}']
  1190. # shortcut: fgr
  1191. # tokens: []
  1192. # disabled: True
  1193. # delimiter:
  1194. # chars: ' '
  1195. # keys: ['line']
  1196. # Be careful when enabling this engine if you are
  1197. # running a public instance. Do not expose any sensitive
  1198. # information. You can restrict access by configuring a list
  1199. # of access tokens under tokens.
  1200. # - name: regex search in files
  1201. # engine: command
  1202. # command: ['grep', '{{QUERY}}']
  1203. # shortcut: gr
  1204. # tokens: []
  1205. # disabled: True
  1206. # delimiter:
  1207. # chars: ' '
  1208. # keys: ['line']
  1209. locales:
  1210. en : English
  1211. ar : العَرَبِيَّة (Arabic)
  1212. bg : Български (Bulgarian)
  1213. bo : བོད་སྐད་ (Tibetian)
  1214. ca : Català (Catalan)
  1215. cs : Čeština (Czech)
  1216. cy : Cymraeg (Welsh)
  1217. da : Dansk (Danish)
  1218. de : Deutsch (German)
  1219. el_GR : Ελληνικά (Greek_Greece)
  1220. eo : Esperanto (Esperanto)
  1221. es : Español (Spanish)
  1222. et : Eesti (Estonian)
  1223. eu : Euskara (Basque)
  1224. fa_IR : (fārsī) فارسى (Persian)
  1225. fi : Suomi (Finnish)
  1226. fil : Wikang Filipino (Filipino)
  1227. fr : Français (French)
  1228. gl : Galego (Galician)
  1229. he : עברית (Hebrew)
  1230. hr : Hrvatski (Croatian)
  1231. hu : Magyar (Hungarian)
  1232. ia : Interlingua (Interlingua)
  1233. it : Italiano (Italian)
  1234. ja : 日本語 (Japanese)
  1235. lt : Lietuvių (Lithuanian)
  1236. nl : Nederlands (Dutch)
  1237. nl_BE : Vlaams (Dutch_Belgium)
  1238. oc : Lenga D'òc (Occitan)
  1239. pl : Polski (Polish)
  1240. pt : Português (Portuguese)
  1241. pt_BR : Português (Portuguese_Brazil)
  1242. ro : Română (Romanian)
  1243. ru : Русский (Russian)
  1244. sk : Slovenčina (Slovak)
  1245. sl : Slovenski (Slovene)
  1246. sr : српски (Serbian)
  1247. sv : Svenska (Swedish)
  1248. te : తెలుగు (telugu)
  1249. ta : தமிழ் (Tamil)
  1250. tr : Türkçe (Turkish)
  1251. uk : українська мова (Ukrainian)
  1252. vi : tiếng việt (Vietnamese)
  1253. zh : 中文 (Chinese)
  1254. zh_TW : 國語 (Taiwanese Mandarin)
  1255. doi_resolvers :
  1256. oadoi.org : 'https://oadoi.org/'
  1257. doi.org : 'https://doi.org/'
  1258. doai.io : 'https://dissem.in/'
  1259. sci-hub.tw : 'https://sci-hub.tw/'
  1260. default_doi_resolver : 'sci-hub.tw'