settings.yml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773
  1. general:
  2. debug : False # Debug mode, only for development
  3. instance_name : "searx" # displayed name
  4. search:
  5. safe_search : 0 # Filter results. 0: None, 1: Moderate, 2: Strict
  6. autocomplete : "" # Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "startpage", "wikipedia" - leave blank to turn it off by default
  7. language : "en-US"
  8. server:
  9. port : 8888
  10. bind_address : "127.0.0.1" # address to listen on
  11. secret_key : "ultrasecretkey" # change this!
  12. base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/"
  13. image_proxy : False # Proxying image results through searx
  14. http_protocol_version : "1.0" # 1.0 and 1.1 are supported
  15. ui:
  16. static_path : "" # Custom static path - leave it blank if you didn't change
  17. templates_path : "" # Custom templates path - leave it blank if you didn't change
  18. default_theme : oscar # ui theme
  19. default_locale : "" # Default interface locale - leave blank to detect from browser information or use codes from the 'locales' config section
  20. # searx supports result proxification using an external service: https://github.com/asciimoo/morty
  21. # uncomment below section if you have running morty proxy
  22. #result_proxy:
  23. # url : http://127.0.0.1:3000/
  24. # key : your_morty_proxy_key
  25. outgoing: # communication with search engines
  26. request_timeout : 2.0 # seconds
  27. useragent_suffix : "" # suffix of searx_useragent, could contain informations like an email address to the administrator
  28. pool_connections : 100 # Number of different hosts
  29. pool_maxsize : 10 # Number of simultaneous requests by host
  30. # uncomment below section if you want to use a proxy
  31. # see http://docs.python-requests.org/en/latest/user/advanced/#proxies
  32. # SOCKS proxies are also supported: see http://docs.python-requests.org/en/master/user/advanced/#socks
  33. # proxies :
  34. # http : http://127.0.0.1:8080
  35. # https: http://127.0.0.1:8080
  36. # uncomment below section only if you have more than one network interface
  37. # which can be the source of outgoing search requests
  38. # source_ips:
  39. # - 1.1.1.1
  40. # - 1.1.1.2
  41. engines:
  42. - name : arch linux wiki
  43. engine : archlinux
  44. shortcut : al
  45. - name : archive is
  46. engine : xpath
  47. search_url : https://archive.is/{query}
  48. url_xpath : (//div[@class="TEXT-BLOCK"]/a)/@href
  49. title_xpath : (//div[@class="TEXT-BLOCK"]/a)
  50. content_xpath : //div[@class="TEXT-BLOCK"]/ul/li
  51. categories : general
  52. timeout : 7.0
  53. disabled : True
  54. shortcut : ai
  55. - name : arxiv
  56. engine : arxiv
  57. shortcut : arx
  58. categories : science
  59. timeout : 4.0
  60. - name : asksteem
  61. engine : asksteem
  62. shortcut : as
  63. - name : base
  64. engine : base
  65. shortcut : bs
  66. - name : wikipedia
  67. engine : wikipedia
  68. shortcut : wp
  69. base_url : 'https://{language}.wikipedia.org/'
  70. - name : bing
  71. engine : bing
  72. shortcut : bi
  73. - name : bing images
  74. engine : bing_images
  75. shortcut : bii
  76. - name : bing news
  77. engine : bing_news
  78. shortcut : bin
  79. - name : bing videos
  80. engine : bing_videos
  81. shortcut : biv
  82. - name : bitbucket
  83. engine : xpath
  84. paging : True
  85. search_url : https://bitbucket.org/repo/all/{pageno}?name={query}
  86. url_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  87. title_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]
  88. content_xpath : //article[@class="repo-summary"]/p
  89. categories : it
  90. timeout : 4.0
  91. disabled : True
  92. shortcut : bb
  93. - name : ccc-tv
  94. engine : xpath
  95. paging : False
  96. search_url : https://media.ccc.de/search/?q={query}
  97. url_xpath : //div[@class="caption"]/h3/a/@href
  98. title_xpath : //div[@class="caption"]/h3/a/text()
  99. content_xpath : //div[@class="caption"]/h4/@title
  100. categories : videos
  101. disabled : True
  102. shortcut : c3tv
  103. - name : crossref
  104. engine : json_engine
  105. paging : True
  106. search_url : http://search.crossref.org/dois?q={query}&page={pageno}
  107. url_query : doi
  108. title_query : title
  109. content_query : fullCitation
  110. categories : science
  111. shortcut : cr
  112. - name : currency
  113. engine : currency_convert
  114. categories : general
  115. shortcut : cc
  116. - name : deezer
  117. engine : deezer
  118. shortcut : dz
  119. - name : deviantart
  120. engine : deviantart
  121. shortcut : da
  122. timeout: 3.0
  123. - name : ddg definitions
  124. engine : duckduckgo_definitions
  125. shortcut : ddd
  126. weight : 2
  127. disabled : True
  128. - name : digbt
  129. engine : digbt
  130. shortcut : dbt
  131. timeout : 6.0
  132. disabled : True
  133. - name : digg
  134. engine : digg
  135. shortcut : dg
  136. - name : erowid
  137. engine : xpath
  138. paging : True
  139. first_page_num : 0
  140. page_size : 30
  141. search_url : https://www.erowid.org/search.php?q={query}&s={pageno}
  142. url_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  143. title_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  144. content_xpath : //dl[@class="results-list"]/dd[@class="result-details"]
  145. categories : general
  146. shortcut : ew
  147. disabled : True
  148. - name : wikidata
  149. engine : wikidata
  150. shortcut : wd
  151. timeout : 3.0
  152. weight : 2
  153. - name : duckduckgo
  154. engine : duckduckgo
  155. shortcut : ddg
  156. disabled : True
  157. - name : duckduckgo images
  158. engine : duckduckgo_images
  159. shortcut : ddi
  160. timeout: 3.0
  161. disabled : True
  162. - name : etymonline
  163. engine : xpath
  164. paging : True
  165. search_url : http://etymonline.com/?search={query}&p={pageno}
  166. url_xpath : //a[contains(@class, "word--")]/@href
  167. title_xpath : //p[contains(@class, "word__name--")]/text()
  168. content_xpath : //section[contains(@class, "word__defination")]/object
  169. first_page_num : 0
  170. shortcut : et
  171. disabled : True
  172. - name : faroo
  173. engine : faroo
  174. shortcut : fa
  175. disabled : True
  176. - name : 500px
  177. engine : www500px
  178. shortcut : px
  179. - name : 1x
  180. engine : www1x
  181. shortcut : 1x
  182. disabled : True
  183. - name : fdroid
  184. engine : fdroid
  185. shortcut : fd
  186. disabled : True
  187. - name : findx
  188. engine : findx
  189. shortcut : fx
  190. categories : general
  191. disabled : True
  192. - name : findx images
  193. engine : findx
  194. shortcut : fxi
  195. categories : images
  196. disabled : True
  197. - name : findx videos
  198. engine : findx
  199. shortcut : fxv
  200. categories : videos
  201. disabled : True
  202. - name : flickr
  203. categories : images
  204. shortcut : fl
  205. # You can use the engine using the official stable API, but you need an API key
  206. # See : https://www.flickr.com/services/apps/create/
  207. # engine : flickr
  208. # api_key: 'apikey' # required!
  209. # Or you can use the html non-stable engine, activated by default
  210. engine : flickr_noapi
  211. - name : free software directory
  212. engine : mediawiki
  213. shortcut : fsd
  214. categories : it
  215. base_url : https://directory.fsf.org/
  216. number_of_results : 5
  217. # what part of a page matches the query string: title, text, nearmatch
  218. # title - query matches title, text - query matches the text of page, nearmatch - nearmatch in title
  219. search_type : title
  220. timeout : 5.0
  221. disabled : True
  222. - name : frinkiac
  223. engine : frinkiac
  224. shortcut : frk
  225. disabled : True
  226. - name : genius
  227. engine : genius
  228. shortcut : gen
  229. - name : gigablast
  230. engine : gigablast
  231. shortcut : gb
  232. timeout : 3.0
  233. disabled: True
  234. - name : gentoo
  235. engine : gentoo
  236. shortcut : ge
  237. - name : gitlab
  238. engine : json_engine
  239. paging : True
  240. search_url : https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  241. url_query : web_url
  242. title_query : name_with_namespace
  243. content_query : description
  244. page_size : 20
  245. categories : it
  246. shortcut : gl
  247. timeout : 10.0
  248. disabled : True
  249. - name : github
  250. engine : github
  251. shortcut : gh
  252. - name : google
  253. engine : google
  254. shortcut : go
  255. - name : google images
  256. engine : google_images
  257. shortcut : goi
  258. - name : google news
  259. engine : google_news
  260. shortcut : gon
  261. - name : google videos
  262. engine : google_videos
  263. shortcut : gov
  264. - name : google scholar
  265. engine : xpath
  266. paging : True
  267. search_url : https://scholar.google.com/scholar?start={pageno}&q={query}&hl=en&as_sdt=0,5&as_vis=1
  268. results_xpath : //div[contains(@class, "gs_r")]/div[@class="gs_ri"]
  269. url_xpath : .//h3/a/@href
  270. title_xpath : .//h3/a
  271. content_xpath : .//div[@class="gs_rs"]
  272. suggestion_xpath : //div[@id="gs_qsuggest"]/ul/li
  273. page_size : 10
  274. first_page_num : 0
  275. categories : science
  276. shortcut : gos
  277. - name : google play apps
  278. engine : xpath
  279. search_url : https://play.google.com/store/search?q={query}&c=apps
  280. url_xpath : //a[@class="title"]/@href
  281. title_xpath : //a[@class="title"]
  282. content_xpath : //a[@class="subtitle"]
  283. categories : files
  284. shortcut : gpa
  285. disabled : True
  286. - name : google play movies
  287. engine : xpath
  288. search_url : https://play.google.com/store/search?q={query}&c=movies
  289. url_xpath : //a[@class="title"]/@href
  290. title_xpath : //a[@class="title"]/@title
  291. content_xpath : //a[contains(@class, "subtitle")]
  292. categories : videos
  293. shortcut : gpm
  294. disabled : True
  295. - name : google play music
  296. engine : xpath
  297. search_url : https://play.google.com/store/search?q={query}&c=music
  298. url_xpath : //a[@class="title"]/@href
  299. title_xpath : //a[@class="title"]
  300. content_xpath : //a[@class="subtitle"]
  301. categories : music
  302. shortcut : gps
  303. disabled : True
  304. - name : geektimes
  305. engine : xpath
  306. paging : True
  307. search_url : https://geektimes.ru/search/page{pageno}/?q={query}
  308. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  309. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  310. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  311. categories : it
  312. timeout : 4.0
  313. disabled : True
  314. shortcut : gt
  315. - name : habrahabr
  316. engine : xpath
  317. paging : True
  318. search_url : https://habrahabr.ru/search/page{pageno}/?q={query}
  319. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  320. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  321. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  322. categories : it
  323. timeout : 4.0
  324. disabled : True
  325. shortcut : habr
  326. - name : hoogle
  327. engine : json_engine
  328. paging : True
  329. search_url : https://www.haskell.org/hoogle/?mode=json&hoogle={query}&start={pageno}
  330. results_query : results
  331. url_query : location
  332. title_query : self
  333. content_query : docs
  334. page_size : 20
  335. categories : it
  336. shortcut : ho
  337. - name : ina
  338. engine : ina
  339. shortcut : in
  340. timeout : 6.0
  341. disabled : True
  342. - name: kickass
  343. engine : kickass
  344. shortcut : kc
  345. timeout : 4.0
  346. disabled : True
  347. - name : library genesis
  348. engine : xpath
  349. search_url : http://libgen.io/search.php?req={query}
  350. url_xpath : //a[contains(@href,"bookfi.net")]/@href
  351. title_xpath : //a[contains(@href,"book/")]/text()[1]
  352. content_xpath : //td/a[1][contains(@href,"=author")]/text()
  353. categories : general
  354. timeout : 7.0
  355. disabled : True
  356. shortcut : lg
  357. - name : lobste.rs
  358. engine : xpath
  359. search_url : https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  360. results_xpath : //li[contains(@class, "story")]
  361. url_xpath : .//span[@class="link"]/a/@href
  362. title_xpath : .//span[@class="link"]/a
  363. content_xpath : .//a[@class="domain"]
  364. categories : it
  365. shortcut : lo
  366. - name : microsoft academic
  367. engine : microsoft_academic
  368. categories : science
  369. shortcut : ma
  370. - name : mixcloud
  371. engine : mixcloud
  372. shortcut : mc
  373. - name : nyaa
  374. engine : nyaa
  375. shortcut : nt
  376. disabled : True
  377. - name : acgsou
  378. engine : acgsou
  379. shortcut : acg
  380. disabled : True
  381. timeout: 5.0
  382. - name : openairedatasets
  383. engine : json_engine
  384. paging : True
  385. search_url : http://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  386. results_query : response/results/result
  387. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  388. title_query : metadata/oaf:entity/oaf:result/title/$
  389. content_query : metadata/oaf:entity/oaf:result/description/$
  390. categories : science
  391. shortcut : oad
  392. timeout: 5.0
  393. - name : openairepublications
  394. engine : json_engine
  395. paging : True
  396. search_url : http://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  397. results_query : response/results/result
  398. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  399. title_query : metadata/oaf:entity/oaf:result/title/$
  400. content_query : metadata/oaf:entity/oaf:result/description/$
  401. categories : science
  402. shortcut : oap
  403. timeout: 5.0
  404. - name : openstreetmap
  405. engine : openstreetmap
  406. shortcut : osm
  407. - name : openrepos
  408. engine : xpath
  409. paging : True
  410. search_url : https://openrepos.net/search/node/{query}?page={pageno}
  411. url_xpath : //li[@class="search-result"]//h3[@class="title"]/a/@href
  412. title_xpath : //li[@class="search-result"]//h3[@class="title"]/a
  413. content_xpath : //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  414. categories : files
  415. timeout : 4.0
  416. disabled : True
  417. shortcut : or
  418. - name : pdbe
  419. engine : pdbe
  420. shortcut : pdb
  421. # Hide obsolete PDB entries.
  422. # Default is not to hide obsolete structures
  423. # hide_obsolete : False
  424. - name : photon
  425. engine : photon
  426. shortcut : ph
  427. - name : piratebay
  428. engine : piratebay
  429. shortcut : tpb
  430. url: https://pirateproxy.red/
  431. timeout : 3.0
  432. - name : pubmed
  433. engine : pubmed
  434. shortcut : pub
  435. categories: science
  436. timeout : 3.0
  437. - name : qwant
  438. engine : qwant
  439. shortcut : qw
  440. categories : general
  441. disabled : True
  442. - name : qwant images
  443. engine : qwant
  444. shortcut : qwi
  445. categories : images
  446. - name : qwant news
  447. engine : qwant
  448. shortcut : qwn
  449. categories : news
  450. - name : qwant social
  451. engine : qwant
  452. shortcut : qws
  453. categories : social media
  454. - name : reddit
  455. engine : reddit
  456. shortcut : re
  457. page_size : 25
  458. timeout : 10.0
  459. disabled : True
  460. - name : scanr structures
  461. shortcut: scs
  462. engine : scanr_structures
  463. disabled : True
  464. - name : soundcloud
  465. engine : soundcloud
  466. shortcut : sc
  467. - name : stackoverflow
  468. engine : stackoverflow
  469. shortcut : st
  470. - name : searchcode doc
  471. engine : searchcode_doc
  472. shortcut : scd
  473. - name : searchcode code
  474. engine : searchcode_code
  475. shortcut : scc
  476. disabled : True
  477. - name : framalibre
  478. engine : framalibre
  479. shortcut : frl
  480. disabled : True
  481. # - name : searx
  482. # engine : searx_engine
  483. # shortcut : se
  484. # instance_urls :
  485. # - http://127.0.0.1:8888/
  486. # - ...
  487. # disabled : True
  488. - name : semantic scholar
  489. engine : xpath
  490. paging : True
  491. search_url : https://www.semanticscholar.org/search?q={query}&sort=relevance&page={pageno}&ae=false
  492. results_xpath : //article
  493. url_xpath : .//div[@class="search-result-title"]/a/@href
  494. title_xpath : .//div[@class="search-result-title"]/a
  495. content_xpath : .//div[@class="search-result-abstract"]
  496. shortcut : se
  497. categories : science
  498. - name : spotify
  499. engine : spotify
  500. shortcut : stf
  501. - name : subtitleseeker
  502. engine : subtitleseeker
  503. shortcut : ss
  504. # The language is an option. You can put any language written in english
  505. # Examples : English, French, German, Hungarian, Chinese...
  506. # language : English
  507. - name : startpage
  508. engine : startpage
  509. shortcut : sp
  510. timeout : 6.0
  511. disabled : True
  512. - name : ixquick
  513. engine : startpage
  514. base_url : 'https://www.ixquick.eu/'
  515. search_url : 'https://www.ixquick.eu/do/search'
  516. shortcut : iq
  517. timeout : 6.0
  518. disabled : True
  519. - name : swisscows
  520. engine : swisscows
  521. shortcut : sw
  522. disabled : True
  523. - name : tokyotoshokan
  524. engine : tokyotoshokan
  525. shortcut : tt
  526. timeout : 6.0
  527. disabled : True
  528. - name : torrentz
  529. engine : torrentz
  530. shortcut : tor
  531. url: https://torrentz2.eu/
  532. timeout : 3.0
  533. - name : twitter
  534. engine : twitter
  535. shortcut : tw
  536. # maybe in a fun category
  537. # - name : uncyclopedia
  538. # engine : mediawiki
  539. # shortcut : unc
  540. # base_url : https://uncyclopedia.wikia.com/
  541. # number_of_results : 5
  542. # tmp suspended - too slow, too many errors
  543. # - name : urbandictionary
  544. # engine : xpath
  545. # search_url : http://www.urbandictionary.com/define.php?term={query}
  546. # url_xpath : //*[@class="word"]/@href
  547. # title_xpath : //*[@class="def-header"]
  548. # content_xpath : //*[@class="meaning"]
  549. # shortcut : ud
  550. - name : yahoo
  551. engine : yahoo
  552. shortcut : yh
  553. disabled : True
  554. - name : yandex
  555. engine : yandex
  556. shortcut : yn
  557. disabled : True
  558. - name : yahoo news
  559. engine : yahoo_news
  560. shortcut : yhn
  561. - name : youtube
  562. shortcut : yt
  563. # You can use the engine using the official stable API, but you need an API key
  564. # See : https://console.developers.google.com/project
  565. # engine : youtube_api
  566. # api_key: 'apikey' # required!
  567. # Or you can use the html non-stable engine, activated by default
  568. engine : youtube_noapi
  569. - name : dailymotion
  570. engine : dailymotion
  571. shortcut : dm
  572. - name : vimeo
  573. engine : vimeo
  574. shortcut : vm
  575. - name : wolframalpha
  576. shortcut : wa
  577. # You can use the engine using the official stable API, but you need an API key
  578. # See : http://products.wolframalpha.com/api/
  579. # engine : wolframalpha_api
  580. # api_key: '' # required!
  581. engine : wolframalpha_noapi
  582. timeout: 6.0
  583. categories : science
  584. - name : seedpeer
  585. engine : seedpeer
  586. shortcut: speu
  587. categories: files, music, videos
  588. disabled: True
  589. - name : dictzone
  590. engine : dictzone
  591. shortcut : dc
  592. - name : mymemory translated
  593. engine : translated
  594. shortcut : tl
  595. timeout : 5.0
  596. disabled : True
  597. # You can use without an API key, but you are limited to 1000 words/day
  598. # See : http://mymemory.translated.net/doc/usagelimits.php
  599. # api_key : ''
  600. - name : voat
  601. engine: xpath
  602. shortcut: vo
  603. categories: social media
  604. search_url : https://searchvoat.co/?t={query}
  605. url_xpath : //div[@class="entry"]/p/a[@class="title"]/@href
  606. title_xpath : //div[@class="entry"]/p/a[@class="title"]
  607. content_xpath : //div[@class="entry"]/p/span[@class="domain"]
  608. timeout : 10.0
  609. disabled : True
  610. - name : 1337x
  611. engine : 1337x
  612. shortcut : 1337x
  613. disabled : True
  614. # - name : yacy
  615. # engine : yacy
  616. # shortcut : ya
  617. # base_url : 'http://localhost:8090'
  618. # number_of_results : 5
  619. # timeout : 3.0
  620. # Doku engine lets you access to any Doku wiki instance:
  621. # A public one or a privete/corporate one.
  622. # - name : ubuntuwiki
  623. # engine : doku
  624. # shortcut : uw
  625. # base_url : 'http://doc.ubuntu-fr.org'
  626. locales:
  627. en : English
  628. ar : العَرَبِيَّة (Arabic)
  629. bg : Български (Bulgarian)
  630. cs : Čeština (Czech)
  631. da : Dansk (Danish)
  632. de : Deutsch (German)
  633. el_GR : Ελληνικά (Greek_Greece)
  634. eo : Esperanto (Esperanto)
  635. es : Español (Spanish)
  636. fi : Suomi (Finnish)
  637. fil : Wikang Filipino (Filipino)
  638. fr : Français (French)
  639. he : עברית (Hebrew)
  640. hr : Hrvatski (Croatian)
  641. hu : Magyar (Hungarian)
  642. it : Italiano (Italian)
  643. ja : 日本語 (Japanese)
  644. nl : Nederlands (Dutch)
  645. pl : Polszczyzna (Polish)
  646. pt : Português (Portuguese)
  647. pt_BR : Português (Portuguese_Brazil)
  648. ro : Română (Romanian)
  649. ru : Русский (Russian)
  650. sk : Slovenčina (Slovak)
  651. sl : Slovenski (Slovene)
  652. sr : српски (Serbian)
  653. sv : Svenska (Swedish)
  654. tr : Türkçe (Turkish)
  655. uk : українська мова (Ukrainian)
  656. zh : 中文 (Chinese)
  657. zh_TW : 國語 (Taiwanese Mandarin)
  658. doi_resolvers :
  659. oadoi.org : 'https://oadoi.org/'
  660. doi.org : 'https://doi.org/'
  661. doai.io : 'http://doai.io/'
  662. default_doi_resolver : 'oadoi.org'