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. theme_args :
  21. oscar_style : logicodev-dark # default style of oscar
  22. # searx supports result proxification using an external service: https://github.com/asciimoo/morty
  23. # uncomment below section if you have running morty proxy
  24. #result_proxy:
  25. # url : http://127.0.0.1:3000/
  26. # key : your_morty_proxy_key
  27. outgoing: # communication with search engines
  28. request_timeout : 2.0 # seconds
  29. useragent_suffix : "" # suffix of searx_useragent, could contain informations like an email address to the administrator
  30. pool_connections : 100 # Number of different hosts
  31. pool_maxsize : 10 # Number of simultaneous requests by host
  32. # uncomment below section if you want to use a proxy
  33. # see http://docs.python-requests.org/en/latest/user/advanced/#proxies
  34. # SOCKS proxies are also supported: see http://docs.python-requests.org/en/master/user/advanced/#socks
  35. # proxies :
  36. # http : http://127.0.0.1:8080
  37. # https: http://127.0.0.1:8080
  38. # uncomment below section only if you have more than one network interface
  39. # which can be the source of outgoing search requests
  40. # source_ips:
  41. # - 1.1.1.1
  42. # - 1.1.1.2
  43. engines:
  44. - name : arch linux wiki
  45. engine : archlinux
  46. shortcut : al
  47. - name : archive is
  48. engine : xpath
  49. search_url : https://archive.is/{query}
  50. url_xpath : (//div[@class="TEXT-BLOCK"]/a)/@href
  51. title_xpath : (//div[@class="TEXT-BLOCK"]/a)
  52. content_xpath : //div[@class="TEXT-BLOCK"]/ul/li
  53. categories : general
  54. timeout : 7.0
  55. disabled : True
  56. shortcut : ai
  57. - name : arxiv
  58. engine : arxiv
  59. shortcut : arx
  60. categories : science
  61. timeout : 4.0
  62. - name : asksteem
  63. engine : asksteem
  64. shortcut : as
  65. - name : base
  66. engine : base
  67. shortcut : bs
  68. - name : wikipedia
  69. engine : wikipedia
  70. shortcut : wp
  71. base_url : 'https://{language}.wikipedia.org/'
  72. - name : bing
  73. engine : bing
  74. shortcut : bi
  75. - name : bing images
  76. engine : bing_images
  77. shortcut : bii
  78. - name : bing news
  79. engine : bing_news
  80. shortcut : bin
  81. - name : bing videos
  82. engine : bing_videos
  83. shortcut : biv
  84. - name : bitbucket
  85. engine : xpath
  86. paging : True
  87. search_url : https://bitbucket.org/repo/all/{pageno}?name={query}
  88. url_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  89. title_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]
  90. content_xpath : //article[@class="repo-summary"]/p
  91. categories : it
  92. timeout : 4.0
  93. disabled : True
  94. shortcut : bb
  95. - name : ccc-tv
  96. engine : xpath
  97. paging : False
  98. search_url : https://media.ccc.de/search/?q={query}
  99. url_xpath : //div[@class="caption"]/h3/a/@href
  100. title_xpath : //div[@class="caption"]/h3/a/text()
  101. content_xpath : //div[@class="caption"]/h4/@title
  102. categories : videos
  103. disabled : True
  104. shortcut : c3tv
  105. - name : crossref
  106. engine : json_engine
  107. paging : True
  108. search_url : http://search.crossref.org/dois?q={query}&page={pageno}
  109. url_query : doi
  110. title_query : title
  111. content_query : fullCitation
  112. categories : science
  113. shortcut : cr
  114. - name : currency
  115. engine : currency_convert
  116. categories : general
  117. shortcut : cc
  118. - name : deezer
  119. engine : deezer
  120. shortcut : dz
  121. - name : deviantart
  122. engine : deviantart
  123. shortcut : da
  124. timeout: 3.0
  125. - name : ddg definitions
  126. engine : duckduckgo_definitions
  127. shortcut : ddd
  128. weight : 2
  129. disabled : True
  130. - name : digbt
  131. engine : digbt
  132. shortcut : dbt
  133. timeout : 6.0
  134. disabled : True
  135. - name : digg
  136. engine : digg
  137. shortcut : dg
  138. - name : erowid
  139. engine : xpath
  140. paging : True
  141. first_page_num : 0
  142. page_size : 30
  143. search_url : https://www.erowid.org/search.php?q={query}&s={pageno}
  144. url_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  145. title_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  146. content_xpath : //dl[@class="results-list"]/dd[@class="result-details"]
  147. categories : general
  148. shortcut : ew
  149. disabled : True
  150. - name : wikidata
  151. engine : wikidata
  152. shortcut : wd
  153. timeout : 3.0
  154. weight : 2
  155. - name : duckduckgo
  156. engine : duckduckgo
  157. shortcut : ddg
  158. disabled : True
  159. - name : duckduckgo images
  160. engine : duckduckgo_images
  161. shortcut : ddi
  162. timeout: 3.0
  163. disabled : True
  164. - name : etymonline
  165. engine : xpath
  166. paging : True
  167. search_url : http://etymonline.com/?search={query}&p={pageno}
  168. url_xpath : //a[contains(@class, "word--")]/@href
  169. title_xpath : //p[contains(@class, "word__name--")]/text()
  170. content_xpath : //section[contains(@class, "word__defination")]/object
  171. first_page_num : 0
  172. shortcut : et
  173. disabled : True
  174. - name : faroo
  175. engine : faroo
  176. shortcut : fa
  177. disabled : True
  178. - name : 1x
  179. engine : www1x
  180. shortcut : 1x
  181. disabled : True
  182. - name : fdroid
  183. engine : fdroid
  184. shortcut : fd
  185. disabled : True
  186. - name : findx
  187. engine : findx
  188. shortcut : fx
  189. categories : general
  190. disabled : True
  191. - name : findx images
  192. engine : findx
  193. shortcut : fxi
  194. categories : images
  195. disabled : True
  196. - name : findx videos
  197. engine : findx
  198. shortcut : fxv
  199. categories : videos
  200. disabled : True
  201. - name : flickr
  202. categories : images
  203. shortcut : fl
  204. # You can use the engine using the official stable API, but you need an API key
  205. # See : https://www.flickr.com/services/apps/create/
  206. # engine : flickr
  207. # api_key: 'apikey' # required!
  208. # Or you can use the html non-stable engine, activated by default
  209. engine : flickr_noapi
  210. - name : free software directory
  211. engine : mediawiki
  212. shortcut : fsd
  213. categories : it
  214. base_url : https://directory.fsf.org/
  215. number_of_results : 5
  216. # what part of a page matches the query string: title, text, nearmatch
  217. # title - query matches title, text - query matches the text of page, nearmatch - nearmatch in title
  218. search_type : title
  219. timeout : 5.0
  220. disabled : True
  221. - name : frinkiac
  222. engine : frinkiac
  223. shortcut : frk
  224. disabled : True
  225. - name : genius
  226. engine : genius
  227. shortcut : gen
  228. - name : gigablast
  229. engine : gigablast
  230. shortcut : gb
  231. timeout : 3.0
  232. disabled: True
  233. - name : gitlab
  234. engine : json_engine
  235. paging : True
  236. search_url : https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  237. url_query : web_url
  238. title_query : name_with_namespace
  239. content_query : description
  240. page_size : 20
  241. categories : it
  242. shortcut : gl
  243. timeout : 10.0
  244. disabled : True
  245. - name : github
  246. engine : github
  247. shortcut : gh
  248. - name : google
  249. engine : google
  250. shortcut : go
  251. - name : google images
  252. engine : google_images
  253. shortcut : goi
  254. - name : google news
  255. engine : google_news
  256. shortcut : gon
  257. - name : google videos
  258. engine : google_videos
  259. shortcut : gov
  260. - name : google scholar
  261. engine : xpath
  262. paging : True
  263. search_url : https://scholar.google.com/scholar?start={pageno}&q={query}&hl=en&as_sdt=0,5&as_vis=1
  264. results_xpath : //div[contains(@class, "gs_r")]/div[@class="gs_ri"]
  265. url_xpath : .//h3/a/@href
  266. title_xpath : .//h3/a
  267. content_xpath : .//div[@class="gs_rs"]
  268. suggestion_xpath : //div[@id="gs_qsuggest"]/ul/li
  269. page_size : 10
  270. first_page_num : 0
  271. categories : science
  272. shortcut : gos
  273. - name : google play apps
  274. engine : xpath
  275. search_url : https://play.google.com/store/search?q={query}&c=apps
  276. url_xpath : //a[@class="title"]/@href
  277. title_xpath : //a[@class="title"]
  278. content_xpath : //a[@class="subtitle"]
  279. categories : files
  280. shortcut : gpa
  281. disabled : True
  282. - name : google play movies
  283. engine : xpath
  284. search_url : https://play.google.com/store/search?q={query}&c=movies
  285. url_xpath : //a[@class="title"]/@href
  286. title_xpath : //a[@class="title"]/@title
  287. content_xpath : //a[contains(@class, "subtitle")]
  288. categories : videos
  289. shortcut : gpm
  290. disabled : True
  291. - name : google play music
  292. engine : xpath
  293. search_url : https://play.google.com/store/search?q={query}&c=music
  294. url_xpath : //a[@class="title"]/@href
  295. title_xpath : //a[@class="title"]
  296. content_xpath : //a[@class="subtitle"]
  297. categories : music
  298. shortcut : gps
  299. disabled : True
  300. - name : geektimes
  301. engine : xpath
  302. paging : True
  303. search_url : https://geektimes.ru/search/page{pageno}/?q={query}
  304. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  305. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  306. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  307. categories : it
  308. timeout : 4.0
  309. disabled : True
  310. shortcut : gt
  311. - name : habrahabr
  312. engine : xpath
  313. paging : True
  314. search_url : https://habrahabr.ru/search/page{pageno}/?q={query}
  315. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  316. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  317. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  318. categories : it
  319. timeout : 4.0
  320. disabled : True
  321. shortcut : habr
  322. - name : hoogle
  323. engine : json_engine
  324. paging : True
  325. search_url : https://www.haskell.org/hoogle/?mode=json&hoogle={query}&start={pageno}
  326. results_query : results
  327. url_query : location
  328. title_query : self
  329. content_query : docs
  330. page_size : 20
  331. categories : it
  332. shortcut : ho
  333. - name : ina
  334. engine : ina
  335. shortcut : in
  336. timeout : 6.0
  337. disabled : True
  338. - name: kickass
  339. engine : kickass
  340. shortcut : kc
  341. timeout : 4.0
  342. disabled : True
  343. - name : library genesis
  344. engine : xpath
  345. search_url : http://libgen.io/search.php?req={query}
  346. url_xpath : //a[contains(@href,"bookfi.net")]/@href
  347. title_xpath : //a[contains(@href,"book/")]/text()[1]
  348. content_xpath : //td/a[1][contains(@href,"=author")]/text()
  349. categories : general
  350. timeout : 7.0
  351. disabled : True
  352. shortcut : lg
  353. - name : lobste.rs
  354. engine : xpath
  355. search_url : https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  356. results_xpath : //li[contains(@class, "story")]
  357. url_xpath : .//span[@class="link"]/a/@href
  358. title_xpath : .//span[@class="link"]/a
  359. content_xpath : .//a[@class="domain"]
  360. categories : it
  361. shortcut : lo
  362. - name : microsoft academic
  363. engine : microsoft_academic
  364. categories : science
  365. shortcut : ma
  366. - name : mixcloud
  367. engine : mixcloud
  368. shortcut : mc
  369. - name : nyaa
  370. engine : nyaa
  371. shortcut : nt
  372. disabled : True
  373. - name : acgsou
  374. engine : acgsou
  375. shortcut : acg
  376. disabled : True
  377. timeout: 5.0
  378. - name : openairedatasets
  379. engine : json_engine
  380. paging : True
  381. search_url : http://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  382. results_query : response/results/result
  383. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  384. title_query : metadata/oaf:entity/oaf:result/title/$
  385. content_query : metadata/oaf:entity/oaf:result/description/$
  386. categories : science
  387. shortcut : oad
  388. timeout: 5.0
  389. - name : openairepublications
  390. engine : json_engine
  391. paging : True
  392. search_url : http://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  393. results_query : response/results/result
  394. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  395. title_query : metadata/oaf:entity/oaf:result/title/$
  396. content_query : metadata/oaf:entity/oaf:result/description/$
  397. categories : science
  398. shortcut : oap
  399. timeout: 5.0
  400. - name : openstreetmap
  401. engine : openstreetmap
  402. shortcut : osm
  403. - name : openrepos
  404. engine : xpath
  405. paging : True
  406. search_url : https://openrepos.net/search/node/{query}?page={pageno}
  407. url_xpath : //li[@class="search-result"]//h3[@class="title"]/a/@href
  408. title_xpath : //li[@class="search-result"]//h3[@class="title"]/a
  409. content_xpath : //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  410. categories : files
  411. timeout : 4.0
  412. disabled : True
  413. shortcut : or
  414. - name : pdbe
  415. engine : pdbe
  416. shortcut : pdb
  417. # Hide obsolete PDB entries.
  418. # Default is not to hide obsolete structures
  419. # hide_obsolete : False
  420. - name : photon
  421. engine : photon
  422. shortcut : ph
  423. - name : piratebay
  424. engine : piratebay
  425. shortcut : tpb
  426. url: https://pirateproxy.red/
  427. timeout : 3.0
  428. - name : pubmed
  429. engine : pubmed
  430. shortcut : pub
  431. categories: science
  432. timeout : 3.0
  433. - name : qwant
  434. engine : qwant
  435. shortcut : qw
  436. categories : general
  437. disabled : True
  438. - name : qwant images
  439. engine : qwant
  440. shortcut : qwi
  441. categories : images
  442. - name : qwant news
  443. engine : qwant
  444. shortcut : qwn
  445. categories : news
  446. - name : qwant social
  447. engine : qwant
  448. shortcut : qws
  449. categories : social media
  450. - name : reddit
  451. engine : reddit
  452. shortcut : re
  453. page_size : 25
  454. timeout : 10.0
  455. disabled : True
  456. - name : scanr structures
  457. shortcut: scs
  458. engine : scanr_structures
  459. disabled : True
  460. - name : soundcloud
  461. engine : soundcloud
  462. shortcut : sc
  463. - name : stackoverflow
  464. engine : stackoverflow
  465. shortcut : st
  466. - name : searchcode doc
  467. engine : searchcode_doc
  468. shortcut : scd
  469. - name : searchcode code
  470. engine : searchcode_code
  471. shortcut : scc
  472. disabled : True
  473. - name : framalibre
  474. engine : framalibre
  475. shortcut : frl
  476. disabled : True
  477. # - name : searx
  478. # engine : searx_engine
  479. # shortcut : se
  480. # instance_urls :
  481. # - http://127.0.0.1:8888/
  482. # - ...
  483. # disabled : True
  484. - name : semantic scholar
  485. engine : xpath
  486. paging : True
  487. search_url : https://www.semanticscholar.org/search?q={query}&sort=relevance&page={pageno}&ae=false
  488. results_xpath : //article
  489. url_xpath : .//div[@class="search-result-title"]/a/@href
  490. title_xpath : .//div[@class="search-result-title"]/a
  491. content_xpath : .//div[@class="search-result-abstract"]
  492. shortcut : se
  493. categories : science
  494. - name : spotify
  495. engine : spotify
  496. shortcut : stf
  497. - name : subtitleseeker
  498. engine : subtitleseeker
  499. shortcut : ss
  500. # The language is an option. You can put any language written in english
  501. # Examples : English, French, German, Hungarian, Chinese...
  502. # language : English
  503. - name : startpage
  504. engine : startpage
  505. shortcut : sp
  506. timeout : 6.0
  507. disabled : True
  508. - name : ixquick
  509. engine : startpage
  510. base_url : 'https://www.ixquick.eu/'
  511. search_url : 'https://www.ixquick.eu/do/search'
  512. shortcut : iq
  513. timeout : 6.0
  514. disabled : True
  515. - name : swisscows
  516. engine : swisscows
  517. shortcut : sw
  518. disabled : True
  519. - name : tokyotoshokan
  520. engine : tokyotoshokan
  521. shortcut : tt
  522. timeout : 6.0
  523. disabled : True
  524. - name : torrentz
  525. engine : torrentz
  526. shortcut : tor
  527. url: https://torrentz2.eu/
  528. timeout : 3.0
  529. - name : twitter
  530. engine : twitter
  531. shortcut : tw
  532. # maybe in a fun category
  533. # - name : uncyclopedia
  534. # engine : mediawiki
  535. # shortcut : unc
  536. # base_url : https://uncyclopedia.wikia.com/
  537. # number_of_results : 5
  538. # tmp suspended - too slow, too many errors
  539. # - name : urbandictionary
  540. # engine : xpath
  541. # search_url : http://www.urbandictionary.com/define.php?term={query}
  542. # url_xpath : //*[@class="word"]/@href
  543. # title_xpath : //*[@class="def-header"]
  544. # content_xpath : //*[@class="meaning"]
  545. # shortcut : ud
  546. - name : yahoo
  547. engine : yahoo
  548. shortcut : yh
  549. disabled : True
  550. - name : yandex
  551. engine : yandex
  552. shortcut : yn
  553. disabled : True
  554. - name : yahoo news
  555. engine : yahoo_news
  556. shortcut : yhn
  557. - name : youtube
  558. shortcut : yt
  559. # You can use the engine using the official stable API, but you need an API key
  560. # See : https://console.developers.google.com/project
  561. # engine : youtube_api
  562. # api_key: 'apikey' # required!
  563. # Or you can use the html non-stable engine, activated by default
  564. engine : youtube_noapi
  565. - name : dailymotion
  566. engine : dailymotion
  567. shortcut : dm
  568. - name : vimeo
  569. engine : vimeo
  570. shortcut : vm
  571. - name : wolframalpha
  572. shortcut : wa
  573. # You can use the engine using the official stable API, but you need an API key
  574. # See : http://products.wolframalpha.com/api/
  575. # engine : wolframalpha_api
  576. # api_key: '' # required!
  577. engine : wolframalpha_noapi
  578. timeout: 6.0
  579. categories : science
  580. - name : seedpeer
  581. engine : seedpeer
  582. shortcut: speu
  583. categories: files, music, videos
  584. disabled: True
  585. - name : dictzone
  586. engine : dictzone
  587. shortcut : dc
  588. - name : mymemory translated
  589. engine : translated
  590. shortcut : tl
  591. timeout : 5.0
  592. disabled : True
  593. # You can use without an API key, but you are limited to 1000 words/day
  594. # See : http://mymemory.translated.net/doc/usagelimits.php
  595. # api_key : ''
  596. - name : voat
  597. engine: xpath
  598. shortcut: vo
  599. categories: social media
  600. search_url : https://searchvoat.co/?t={query}
  601. url_xpath : //div[@class="entry"]/p/a[@class="title"]/@href
  602. title_xpath : //div[@class="entry"]/p/a[@class="title"]
  603. content_xpath : //div[@class="entry"]/p/span[@class="domain"]
  604. timeout : 10.0
  605. disabled : True
  606. - name : 1337x
  607. engine : 1337x
  608. shortcut : 1337x
  609. disabled : True
  610. - name : Duden
  611. engine : duden
  612. shortcut : du
  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 : Polski (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. sci-hub.tw : 'http://sci-hub.tw/'
  663. default_doi_resolver : 'oadoi.org'