settings.yml 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401
  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 : freesound
  384. # engine : freesound
  385. # shortcut : fnd
  386. # disabled : True
  387. # timeout : 15.0
  388. # api_key : MyAPIkey
  389. # API key required, see : https://freesound.org/docs/api/overview.html
  390. - name : frinkiac
  391. engine : frinkiac
  392. shortcut : frk
  393. disabled : True
  394. - name : genius
  395. engine : genius
  396. shortcut : gen
  397. - name : gigablast
  398. engine : gigablast
  399. shortcut : gb
  400. timeout : 3.0
  401. disabled: True
  402. additional_tests:
  403. rosebud: *test_rosebud
  404. - name : gentoo
  405. engine : gentoo
  406. shortcut : ge
  407. - name : gitlab
  408. engine : json_engine
  409. paging : True
  410. search_url : https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  411. url_query : web_url
  412. title_query : name_with_namespace
  413. content_query : description
  414. page_size : 20
  415. categories : it
  416. shortcut : gl
  417. timeout : 10.0
  418. disabled : True
  419. about:
  420. website: https://about.gitlab.com/
  421. wikidata_id: Q16639197
  422. official_api_documentation: https://docs.gitlab.com/ee/api/
  423. use_official_api: false
  424. require_api_key: false
  425. results: JSON
  426. - name : github
  427. engine : github
  428. shortcut : gh
  429. # This a Gitea service. If you would like to use a different instance,
  430. # change codeberg.org to URL of the desired Gitea host. Or you can create
  431. # a new engine by copying this and changing the name, shortcut and search_url.
  432. - name : codeberg
  433. engine : json_engine
  434. search_url : https://codeberg.org/api/v1/repos/search?q={query}&limit=10
  435. url_query : html_url
  436. title_query : name
  437. content_query : description
  438. categories : it
  439. shortcut : cb
  440. disabled : True
  441. about:
  442. website: https://codeberg.org/
  443. wikidata_id:
  444. official_api_documentation: https://try.gitea.io/api/swagger
  445. use_official_api: false
  446. require_api_key: false
  447. results: JSON
  448. - name : google
  449. engine : google
  450. shortcut : go
  451. # additional_tests:
  452. # android: *test_android
  453. - name : google images
  454. engine : google_images
  455. shortcut : goi
  456. # additional_tests:
  457. # android: *test_android
  458. # dali:
  459. # matrix:
  460. # query: ['Dali Christ']
  461. # lang: ['en', 'de', 'fr', 'zh-CN']
  462. # result_container:
  463. # - ['one_title_contains', 'Salvador']
  464. - name : google news
  465. engine : google_news
  466. shortcut : gon
  467. # additional_tests:
  468. # android: *test_android
  469. - name : google videos
  470. engine : google_videos
  471. shortcut : gov
  472. # additional_tests:
  473. # android: *test_android
  474. - name : google scholar
  475. engine : xpath
  476. paging : True
  477. search_url : https://scholar.google.com/scholar?start={pageno}&q={query}&hl=en&as_sdt=0,5&as_vis=1
  478. results_xpath : //div[contains(@class, "gs_r")]/div[@class="gs_ri"]
  479. url_xpath : .//h3/a/@href
  480. title_xpath : .//h3/a
  481. content_xpath : .//div[@class="gs_rs"]
  482. suggestion_xpath : //div[@id="gs_res_ccl_top"]//a/b
  483. page_size : 10
  484. first_page_num : 0
  485. categories : science
  486. shortcut : gos
  487. about:
  488. website: https://scholar.google.com/
  489. wikidata_id: Q494817
  490. official_api_documentation:
  491. use_official_api: false
  492. require_api_key: false
  493. results: HTML
  494. - name : google play apps
  495. engine : xpath
  496. search_url : https://play.google.com/store/search?q={query}&c=apps
  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 : files
  503. shortcut : gpa
  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 : google play movies
  513. engine : xpath
  514. search_url : https://play.google.com/store/search?q={query}&c=movies
  515. results_xpath : '//div[@class="WHE7ib mpg5gc"]'
  516. title_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a'
  517. url_xpath : './/div[@class="RZEgze"]//div[@title and not(@title="")]/a/@href'
  518. content_xpath : './/div[@class="RZEgze"]//a[@class="mnKHRc"]'
  519. thumbnail_xpath : './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  520. categories : videos
  521. shortcut : gpm
  522. disabled : True
  523. about:
  524. website: https://play.google.com/
  525. wikidata_id: Q79576
  526. official_api_documentation:
  527. use_official_api: false
  528. require_api_key: false
  529. results: HTML
  530. - name : geektimes
  531. engine : xpath
  532. paging : True
  533. search_url : https://geektimes.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 : gt
  541. about:
  542. website: https://geektimes.ru/
  543. wikidata_id: Q50572423
  544. official_api_documentation:
  545. use_official_api: false
  546. require_api_key: false
  547. results: HTML
  548. - name : habrahabr
  549. engine : xpath
  550. paging : True
  551. search_url : https://habrahabr.ru/search/page{pageno}/?q={query}
  552. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  553. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  554. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  555. categories : it
  556. timeout : 4.0
  557. disabled : True
  558. shortcut : habr
  559. about:
  560. website: https://habr.com/
  561. wikidata_id: Q4494434
  562. official_api_documentation: https://habr.com/en/docs/help/api/
  563. use_official_api: false
  564. require_api_key: false
  565. results: HTML
  566. - name : hoogle
  567. engine : json_engine
  568. paging : True
  569. search_url : https://www.haskell.org/hoogle/?mode=json&hoogle={query}&start={pageno}
  570. results_query : results
  571. url_query : location
  572. title_query : self
  573. content_query : docs
  574. page_size : 20
  575. categories : it
  576. shortcut : ho
  577. about:
  578. website: https://www.haskell.org/
  579. wikidata_id: Q34010
  580. official_api_documentation: https://hackage.haskell.org/api
  581. use_official_api: false
  582. require_api_key: false
  583. results: JSON
  584. - name : ina
  585. engine : ina
  586. shortcut : in
  587. timeout : 6.0
  588. disabled : True
  589. - name : invidious
  590. engine : invidious
  591. base_url :
  592. - https://invidious.tube/
  593. - https://invidious.snopyta.org/
  594. shortcut: iv
  595. timeout : 5.0
  596. disabled : True
  597. - name: kickass
  598. engine : kickass
  599. shortcut : kc
  600. timeout : 4.0
  601. disabled : True
  602. - name : library genesis
  603. engine : xpath
  604. search_url : http://libgen.rs/search.php?req={query}
  605. url_xpath : //a[contains(@href,"bookfi.net/md5")]/@href
  606. title_xpath : //a[contains(@href,"book/")]/text()[1]
  607. content_xpath : //td/a[1][contains(@href,"=author")]/text()
  608. categories : general
  609. timeout : 7.0
  610. disabled : True
  611. shortcut : lg
  612. about:
  613. website: http://libgen.rs/
  614. wikidata_id: Q22017206
  615. official_api_documentation:
  616. use_official_api: false
  617. require_api_key: false
  618. results: HTML
  619. - name : library of congress
  620. engine : loc
  621. shortcut : loc
  622. categories : images
  623. - name : lobste.rs
  624. engine : xpath
  625. search_url : https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  626. results_xpath : //li[contains(@class, "story")]
  627. url_xpath : .//a[@class="u-url"]/@href
  628. title_xpath : .//a[@class="u-url"]
  629. content_xpath : .//a[@class="domain"]
  630. categories : it
  631. shortcut : lo
  632. timeout : 3.0
  633. disabled: True
  634. about:
  635. website: https://lobste.rs/
  636. wikidata_id: Q60762874
  637. official_api_documentation:
  638. use_official_api: false
  639. require_api_key: false
  640. results: HTML
  641. - name : microsoft academic
  642. engine : microsoft_academic
  643. categories : science
  644. shortcut : ma
  645. - name : mixcloud
  646. engine : mixcloud
  647. shortcut : mc
  648. - name : npm
  649. engine : json_engine
  650. paging : True
  651. search_url : https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  652. results_query : results
  653. url_query : package/links/npm
  654. title_query : package/name
  655. content_query : package/description
  656. page_size : 25
  657. categories : it
  658. disabled: True
  659. timeout: 5.0
  660. shortcut : npm
  661. about:
  662. website: https://npms.io/
  663. wikidata_id: Q7067518
  664. official_api_documentation: https://api-docs.npms.io/
  665. use_official_api: false
  666. require_api_key: false
  667. results: JSON
  668. # Requires Tor
  669. - name : not evil
  670. engine : not_evil
  671. shortcut : ne
  672. - name : nyaa
  673. engine : nyaa
  674. shortcut : nt
  675. disabled : True
  676. - name : acgsou
  677. engine : acgsou
  678. shortcut : acg
  679. disabled : True
  680. timeout: 5.0
  681. - name : openairedatasets
  682. engine : json_engine
  683. paging : True
  684. search_url : https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  685. results_query : response/results/result
  686. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  687. title_query : metadata/oaf:entity/oaf:result/title/$
  688. content_query : metadata/oaf:entity/oaf:result/description/$
  689. content_html_to_text: True
  690. categories : science
  691. shortcut : oad
  692. timeout: 5.0
  693. about:
  694. website: https://www.openaire.eu/
  695. wikidata_id: Q25106053
  696. official_api_documentation: https://api.openaire.eu/
  697. use_official_api: false
  698. require_api_key: false
  699. results: JSON
  700. - name : openairepublications
  701. engine : json_engine
  702. paging : True
  703. search_url : https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  704. results_query : response/results/result
  705. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  706. title_query : metadata/oaf:entity/oaf:result/title/$
  707. content_query : metadata/oaf:entity/oaf:result/description/$
  708. content_html_to_text: True
  709. categories : science
  710. shortcut : oap
  711. timeout: 5.0
  712. about:
  713. website: https://www.openaire.eu/
  714. wikidata_id: Q25106053
  715. official_api_documentation: https://api.openaire.eu/
  716. use_official_api: false
  717. require_api_key: false
  718. results: JSON
  719. # - name : opensemanticsearch
  720. # engine : opensemantic
  721. # shortcut : oss
  722. # base_url : 'http://localhost:8983/solr/opensemanticsearch/'
  723. - name : openstreetmap
  724. engine : openstreetmap
  725. shortcut : osm
  726. - name : openrepos
  727. engine : xpath
  728. paging : True
  729. search_url : https://openrepos.net/search/node/{query}?page={pageno}
  730. url_xpath : //li[@class="search-result"]//h3[@class="title"]/a/@href
  731. title_xpath : //li[@class="search-result"]//h3[@class="title"]/a
  732. content_xpath : //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  733. categories : files
  734. timeout : 4.0
  735. disabled : True
  736. shortcut : or
  737. about:
  738. website: https://openrepos.net/
  739. wikidata_id:
  740. official_api_documentation:
  741. use_official_api: false
  742. require_api_key: false
  743. results: HTML
  744. - name : pdbe
  745. engine : pdbe
  746. shortcut : pdb
  747. # Hide obsolete PDB entries.
  748. # Default is not to hide obsolete structures
  749. # hide_obsolete : False
  750. - name : photon
  751. engine : photon
  752. shortcut : ph
  753. - name : piratebay
  754. engine : piratebay
  755. shortcut : tpb
  756. # You may need to change this URL to a proxy if piratebay is blocked in your country
  757. url: https://thepiratebay.org/
  758. timeout : 3.0
  759. - name : pubmed
  760. engine : pubmed
  761. shortcut : pub
  762. categories: science
  763. timeout : 3.0
  764. - name : qwant
  765. engine : qwant
  766. shortcut : qw
  767. categories : general
  768. disabled : True
  769. additional_tests:
  770. rosebud: *test_rosebud
  771. - name : qwant images
  772. engine : qwant
  773. shortcut : qwi
  774. categories : images
  775. - name : qwant news
  776. engine : qwant
  777. shortcut : qwn
  778. categories : news
  779. # - name: library
  780. # engine: recoll
  781. # shortcut: lib
  782. # base_url: 'https://recoll.example.org/'
  783. # search_dir: ''
  784. # mount_prefix: /export
  785. # dl_prefix: 'https://download.example.org'
  786. # timeout: 30.0
  787. # categories: files
  788. # disabled: True
  789. # - name: recoll library reference
  790. # engine: recoll
  791. # base_url: 'https://recoll.example.org/'
  792. # search_dir: reference
  793. # mount_prefix: /export
  794. # dl_prefix: 'https://download.example.org'
  795. # shortcut: libr
  796. # timeout: 30.0
  797. # categories: files
  798. # disabled: True
  799. - name : reddit
  800. engine : reddit
  801. shortcut : re
  802. page_size : 25
  803. timeout : 10.0
  804. disabled : True
  805. # tmp suspended: bad certificate
  806. # - name : scanr structures
  807. # shortcut: scs
  808. # engine : scanr_structures
  809. # disabled : True
  810. - name: sepiasearch
  811. engine: sepiasearch
  812. shortcut: sep
  813. - name : soundcloud
  814. engine : soundcloud
  815. shortcut : sc
  816. - name : stackoverflow
  817. engine : stackoverflow
  818. shortcut : st
  819. - name : searchcode code
  820. engine : searchcode_code
  821. shortcut : scc
  822. disabled : True
  823. - name : framalibre
  824. engine : framalibre
  825. shortcut : frl
  826. disabled : True
  827. # - name : searx
  828. # engine : searx_engine
  829. # shortcut : se
  830. # instance_urls :
  831. # - http://127.0.0.1:8888/
  832. # - ...
  833. # disabled : True
  834. - name : semantic scholar
  835. engine : xpath
  836. paging : True
  837. search_url : https://www.semanticscholar.org/search?q={query}&sort=relevance&page={pageno}&ae=false
  838. results_xpath : //article
  839. url_xpath : .//div[@class="search-result-title"]/a/@href
  840. title_xpath : .//div[@class="search-result-title"]/a
  841. content_xpath : .//div[@class="search-result-abstract"]
  842. shortcut : se
  843. categories : science
  844. about:
  845. website: https://www.semanticscholar.org/
  846. wikidata_id: Q22908627
  847. official_api_documentation: https://api.semanticscholar.org/
  848. use_official_api: false
  849. require_api_key: false
  850. results: HTML
  851. # Spotify needs API credentials
  852. # - name : spotify
  853. # engine : spotify
  854. # shortcut : stf
  855. # api_client_id : *******
  856. # api_client_secret : *******
  857. - name : startpage
  858. engine : startpage
  859. shortcut : sp
  860. timeout : 6.0
  861. disabled : True
  862. additional_tests:
  863. rosebud: *test_rosebud
  864. - name : tokyotoshokan
  865. engine : tokyotoshokan
  866. shortcut : tt
  867. timeout : 6.0
  868. disabled : True
  869. - name : torrentz
  870. engine : torrentz
  871. shortcut : tor
  872. url: https://torrentz2.eu/
  873. timeout : 3.0
  874. # Requires Tor
  875. - name : torch
  876. engine : xpath
  877. paging : True
  878. search_url : http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  879. results_xpath : //table//tr
  880. url_xpath : ./td[2]/a
  881. title_xpath : ./td[2]/b
  882. content_xpath : ./td[2]/small
  883. categories : onions
  884. shortcut : tch
  885. # maybe in a fun category
  886. # - name : uncyclopedia
  887. # engine : mediawiki
  888. # shortcut : unc
  889. # base_url : https://uncyclopedia.wikia.com/
  890. # number_of_results : 5
  891. # tmp suspended - too slow, too many errors
  892. # - name : urbandictionary
  893. # engine : xpath
  894. # search_url : http://www.urbandictionary.com/define.php?term={query}
  895. # url_xpath : //*[@class="word"]/@href
  896. # title_xpath : //*[@class="def-header"]
  897. # content_xpath : //*[@class="meaning"]
  898. # shortcut : ud
  899. - name : unsplash
  900. engine : unsplash
  901. disabled: True
  902. shortcut : us
  903. - name : yahoo
  904. engine : yahoo
  905. shortcut : yh
  906. disabled : True
  907. - name : yahoo news
  908. engine : yahoo_news
  909. shortcut : yhn
  910. - name : youtube
  911. shortcut : yt
  912. # You can use the engine using the official stable API, but you need an API key
  913. # See : https://console.developers.google.com/project
  914. # engine : youtube_api
  915. # api_key: 'apikey' # required!
  916. # Or you can use the html non-stable engine, activated by default
  917. engine : youtube_noapi
  918. - name : yggtorrent
  919. engine : yggtorrent
  920. shortcut : ygg
  921. url: https://www4.yggtorrent.li/
  922. disabled : True
  923. timeout : 4.0
  924. - name : dailymotion
  925. engine : dailymotion
  926. shortcut : dm
  927. - name : vimeo
  928. engine : vimeo
  929. shortcut : vm
  930. - name : wiby
  931. engine : json_engine
  932. search_url : https://wiby.me/json/?q={query}
  933. url_query : URL
  934. title_query : Title
  935. content_query : Snippet
  936. categories : general
  937. shortcut : wib
  938. disabled : True
  939. - name : wikibooks
  940. engine : mediawiki
  941. shortcut : wb
  942. categories : general
  943. base_url : "https://{language}.wikibooks.org/"
  944. number_of_results : 5
  945. search_type : text
  946. disabled : True
  947. about:
  948. website: https://www.wikibooks.org/
  949. wikidata_id: Q367
  950. - name : wikinews
  951. engine : mediawiki
  952. shortcut : wn
  953. categories : news
  954. base_url : "https://{language}.wikinews.org/"
  955. number_of_results : 5
  956. search_type : text
  957. disabled : True
  958. about:
  959. website: https://www.wikinews.org/
  960. wikidata_id: Q964
  961. - name : wikiquote
  962. engine : mediawiki
  963. shortcut : wq
  964. categories : general
  965. base_url : "https://{language}.wikiquote.org/"
  966. number_of_results : 5
  967. search_type : text
  968. disabled : True
  969. additional_tests:
  970. rosebud: *test_rosebud
  971. about:
  972. website: https://www.wikiquote.org/
  973. wikidata_id: Q369
  974. - name : wikisource
  975. engine : mediawiki
  976. shortcut : ws
  977. categories : general
  978. base_url : "https://{language}.wikisource.org/"
  979. number_of_results : 5
  980. search_type : text
  981. disabled : True
  982. about:
  983. website: https://www.wikisource.org/
  984. wikidata_id: Q263
  985. - name : wiktionary
  986. engine : mediawiki
  987. shortcut : wt
  988. categories : general
  989. base_url : "https://{language}.wiktionary.org/"
  990. number_of_results : 5
  991. search_type : text
  992. disabled : True
  993. about:
  994. website: https://www.wiktionary.org/
  995. wikidata_id: Q151
  996. - name : wikiversity
  997. engine : mediawiki
  998. shortcut : wv
  999. categories : general
  1000. base_url : "https://{language}.wikiversity.org/"
  1001. number_of_results : 5
  1002. search_type : text
  1003. disabled : True
  1004. about:
  1005. website: https://www.wikiversity.org/
  1006. wikidata_id: Q370
  1007. - name : wikivoyage
  1008. engine : mediawiki
  1009. shortcut : wy
  1010. categories : general
  1011. base_url : "https://{language}.wikivoyage.org/"
  1012. number_of_results : 5
  1013. search_type : text
  1014. disabled : True
  1015. about:
  1016. website: https://www.wikivoyage.org/
  1017. wikidata_id: Q373
  1018. - name : wolframalpha
  1019. shortcut : wa
  1020. # You can use the engine using the official stable API, but you need an API key
  1021. # See : http://products.wolframalpha.com/api/
  1022. # engine : wolframalpha_api
  1023. # api_key: '' # required!
  1024. engine : wolframalpha_noapi
  1025. timeout: 6.0
  1026. categories : science
  1027. - name : dictzone
  1028. engine : dictzone
  1029. shortcut : dc
  1030. - name : mymemory translated
  1031. engine : translated
  1032. shortcut : tl
  1033. timeout : 5.0
  1034. disabled : True
  1035. # You can use without an API key, but you are limited to 1000 words/day
  1036. # See : http://mymemory.translated.net/doc/usagelimits.php
  1037. # api_key : ''
  1038. - name : 1337x
  1039. engine : 1337x
  1040. shortcut : 1337x
  1041. disabled : True
  1042. - name : duden
  1043. engine : duden
  1044. shortcut : du
  1045. disabled : True
  1046. - name : seznam
  1047. shortcut: szn
  1048. engine: seznam
  1049. disabled : True
  1050. - name : mojeek
  1051. shortcut: mjk
  1052. engine: xpath
  1053. paging : True
  1054. search_url : https://www.mojeek.com/search?q={query}&s={pageno}
  1055. results_xpath: /html/body//div[@class="results"]/ul[@class="results-standard"]/li
  1056. url_xpath : ./h2/a/@href
  1057. title_xpath : ./h2
  1058. content_xpath : ./p[@class="s"]
  1059. suggestion_xpath : /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
  1060. first_page_num : 0
  1061. page_size : 10
  1062. disabled : True
  1063. about:
  1064. website: https://www.mojeek.com/
  1065. wikidata_id: Q60747299
  1066. official_api_documentation: https://www.mojeek.com/services/api.html/
  1067. use_official_api: false
  1068. require_api_key: false
  1069. results: HTML
  1070. - name : naver
  1071. shortcut: nvr
  1072. engine: xpath
  1073. paging : True
  1074. search_url : https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1075. url_xpath : //a[@class="link_tit"]/@href
  1076. title_xpath : //a[@class="link_tit"]
  1077. content_xpath : //a[@class="total_dsc"]/div
  1078. first_page_num : 1
  1079. page_size : 10
  1080. disabled : True
  1081. about:
  1082. website: https://www.naver.com/
  1083. wikidata_id: Q485639
  1084. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1085. use_official_api: false
  1086. require_api_key: false
  1087. results: HTML
  1088. - name : rubygems
  1089. shortcut: rbg
  1090. engine: xpath
  1091. paging : True
  1092. search_url : https://rubygems.org/search?page={pageno}&query={query}
  1093. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1094. url_xpath : ./@href
  1095. title_xpath : ./span/h2
  1096. content_xpath : ./span/p
  1097. suggestion_xpath : /html/body/main/div/div[@class="search__suggestions"]/p/a
  1098. first_page_num : 1
  1099. categories: it
  1100. disabled : True
  1101. about:
  1102. website: https://rubygems.org/
  1103. wikidata_id: Q1853420
  1104. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1105. use_official_api: false
  1106. require_api_key: false
  1107. results: HTML
  1108. - name : peertube
  1109. engine: peertube
  1110. shortcut: ptb
  1111. paging : True
  1112. base_url : https://peer.tube/
  1113. categories: videos
  1114. disabled : True
  1115. - name : mediathekviewweb
  1116. engine : mediathekviewweb
  1117. shortcut : mvw
  1118. # - name : yacy
  1119. # engine : yacy
  1120. # shortcut : ya
  1121. # base_url : 'http://localhost:8090'
  1122. # number_of_results : 5
  1123. # timeout : 3.0
  1124. - name : rumble
  1125. engine : rumble
  1126. shortcut : ru
  1127. base_url : https://rumble.com/
  1128. paging : True
  1129. categories: videos
  1130. disabled : True
  1131. # Doku engine lets you access to any Doku wiki instance:
  1132. # A public one or a privete/corporate one.
  1133. # - name : ubuntuwiki
  1134. # engine : doku
  1135. # shortcut : uw
  1136. # base_url : 'http://doc.ubuntu-fr.org'
  1137. # Be careful when enabling this engine if you are
  1138. # running a public instance. Do not expose any sensitive
  1139. # information. You can restrict access by configuring a list
  1140. # of access tokens under tokens.
  1141. # - name: git grep
  1142. # engine: command
  1143. # command: ['git', 'grep', '{{QUERY}}']
  1144. # shortcut: gg
  1145. # tokens: []
  1146. # disabled: True
  1147. # delimiter:
  1148. # chars: ':'
  1149. # keys: ['filepath', 'code']
  1150. # Be careful when enabling this engine if you are
  1151. # running a public instance. Do not expose any sensitive
  1152. # information. You can restrict access by configuring a list
  1153. # of access tokens under tokens.
  1154. # - name: locate
  1155. # engine: command
  1156. # command: ['locate', '{{QUERY}}']
  1157. # shortcut: loc
  1158. # tokens: []
  1159. # disabled: True
  1160. # delimiter:
  1161. # chars: ' '
  1162. # keys: ['line']
  1163. # Be careful when enabling this engine if you are
  1164. # running a public instance. Do not expose any sensitive
  1165. # information. You can restrict access by configuring a list
  1166. # of access tokens under tokens.
  1167. # - name: find
  1168. # engine: command
  1169. # command: ['find', '.', '-name', '{{QUERY}}']
  1170. # query_type: path
  1171. # shortcut: fnd
  1172. # tokens: []
  1173. # disabled: True
  1174. # delimiter:
  1175. # chars: ' '
  1176. # keys: ['line']
  1177. # Be careful when enabling this engine if you are
  1178. # running a public instance. Do not expose any sensitive
  1179. # information. You can restrict access by configuring a list
  1180. # of access tokens under tokens.
  1181. # - name: pattern search in files
  1182. # engine: command
  1183. # command: ['fgrep', '{{QUERY}}']
  1184. # shortcut: fgr
  1185. # tokens: []
  1186. # disabled: True
  1187. # delimiter:
  1188. # chars: ' '
  1189. # keys: ['line']
  1190. # Be careful when enabling this engine if you are
  1191. # running a public instance. Do not expose any sensitive
  1192. # information. You can restrict access by configuring a list
  1193. # of access tokens under tokens.
  1194. # - name: regex search in files
  1195. # engine: command
  1196. # command: ['grep', '{{QUERY}}']
  1197. # shortcut: gr
  1198. # tokens: []
  1199. # disabled: True
  1200. # delimiter:
  1201. # chars: ' '
  1202. # keys: ['line']
  1203. locales:
  1204. en : English
  1205. ar : العَرَبِيَّة (Arabic)
  1206. bg : Български (Bulgarian)
  1207. bo : བོད་སྐད་ (Tibetian)
  1208. ca : Català (Catalan)
  1209. cs : Čeština (Czech)
  1210. cy : Cymraeg (Welsh)
  1211. da : Dansk (Danish)
  1212. de : Deutsch (German)
  1213. el_GR : Ελληνικά (Greek_Greece)
  1214. eo : Esperanto (Esperanto)
  1215. es : Español (Spanish)
  1216. et : Eesti (Estonian)
  1217. eu : Euskara (Basque)
  1218. fa_IR : (fārsī) فارسى (Persian)
  1219. fi : Suomi (Finnish)
  1220. fil : Wikang Filipino (Filipino)
  1221. fr : Français (French)
  1222. gl : Galego (Galician)
  1223. he : עברית (Hebrew)
  1224. hr : Hrvatski (Croatian)
  1225. hu : Magyar (Hungarian)
  1226. ia : Interlingua (Interlingua)
  1227. it : Italiano (Italian)
  1228. ja : 日本語 (Japanese)
  1229. lt : Lietuvių (Lithuanian)
  1230. nl : Nederlands (Dutch)
  1231. nl_BE : Vlaams (Dutch_Belgium)
  1232. oc : Lenga D'òc (Occitan)
  1233. pl : Polski (Polish)
  1234. pt : Português (Portuguese)
  1235. pt_BR : Português (Portuguese_Brazil)
  1236. ro : Română (Romanian)
  1237. ru : Русский (Russian)
  1238. sk : Slovenčina (Slovak)
  1239. sl : Slovenski (Slovene)
  1240. sr : српски (Serbian)
  1241. sv : Svenska (Swedish)
  1242. te : తెలుగు (telugu)
  1243. ta : தமிழ் (Tamil)
  1244. tr : Türkçe (Turkish)
  1245. uk : українська мова (Ukrainian)
  1246. vi : tiếng việt (Vietnamese)
  1247. zh : 中文 (Chinese)
  1248. zh_TW : 國語 (Taiwanese Mandarin)
  1249. doi_resolvers :
  1250. oadoi.org : 'https://oadoi.org/'
  1251. doi.org : 'https://doi.org/'
  1252. doai.io : 'https://dissem.in/'
  1253. sci-hub.tw : 'https://sci-hub.tw/'
  1254. default_doi_resolver : 'sci-hub.tw'