settings.yml 41 KB

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