settings.yml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770
  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 : //dt/a[1]/@href
  167. title_xpath : //dt
  168. content_xpath : //dd
  169. suggestion_xpath : //a[@class="crossreference"]
  170. first_page_num : 0
  171. shortcut : et
  172. disabled : True
  173. - name : faroo
  174. engine : faroo
  175. shortcut : fa
  176. disabled : True
  177. - name : 500px
  178. engine : www500px
  179. shortcut : px
  180. - name : 1x
  181. engine : www1x
  182. shortcut : 1x
  183. disabled : True
  184. - name : fdroid
  185. engine : fdroid
  186. shortcut : fd
  187. disabled : True
  188. - name : findx
  189. engine : findx
  190. shortcut : fx
  191. categories : general
  192. disabled : True
  193. - name : findx images
  194. engine : findx
  195. shortcut : fxi
  196. categories : images
  197. disabled : True
  198. - name : findx videos
  199. engine : findx
  200. shortcut : fxv
  201. categories : videos
  202. disabled : True
  203. - name : flickr
  204. categories : images
  205. shortcut : fl
  206. # You can use the engine using the official stable API, but you need an API key
  207. # See : https://www.flickr.com/services/apps/create/
  208. # engine : flickr
  209. # api_key: 'apikey' # required!
  210. # Or you can use the html non-stable engine, activated by default
  211. engine : flickr_noapi
  212. - name : free software directory
  213. engine : mediawiki
  214. shortcut : fsd
  215. categories : it
  216. base_url : https://directory.fsf.org/
  217. number_of_results : 5
  218. # what part of a page matches the query string: title, text, nearmatch
  219. # title - query matches title, text - query matches the text of page, nearmatch - nearmatch in title
  220. search_type : title
  221. timeout : 5.0
  222. disabled : True
  223. - name : frinkiac
  224. engine : frinkiac
  225. shortcut : frk
  226. disabled : True
  227. - name : genius
  228. engine : genius
  229. shortcut : gen
  230. - name : gigablast
  231. engine : gigablast
  232. shortcut : gb
  233. timeout : 3.0
  234. disabled: True
  235. - name : gitlab
  236. engine : json_engine
  237. paging : True
  238. search_url : https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  239. url_query : web_url
  240. title_query : name_with_namespace
  241. content_query : description
  242. page_size : 20
  243. categories : it
  244. shortcut : gl
  245. timeout : 10.0
  246. disabled : True
  247. - name : github
  248. engine : github
  249. shortcut : gh
  250. - name : google
  251. engine : google
  252. shortcut : go
  253. - name : google images
  254. engine : google_images
  255. shortcut : goi
  256. - name : google news
  257. engine : google_news
  258. shortcut : gon
  259. - name : google videos
  260. engine : google_videos
  261. shortcut : gov
  262. - name : google scholar
  263. engine : xpath
  264. paging : True
  265. search_url : https://scholar.google.com/scholar?start={pageno}&q={query}&hl=en&as_sdt=0,5&as_vis=1
  266. results_xpath : //div[@class="gs_r"]/div[@class="gs_ri"]
  267. url_xpath : .//h3/a/@href
  268. title_xpath : .//h3/a
  269. content_xpath : .//div[@class="gs_rs"]
  270. suggestion_xpath : //div[@id="gs_qsuggest"]/ul/li
  271. page_size : 10
  272. first_page_num : 0
  273. categories : science
  274. shortcut : gos
  275. - name : google play apps
  276. engine : xpath
  277. search_url : https://play.google.com/store/search?q={query}&c=apps
  278. url_xpath : //a[@class="title"]/@href
  279. title_xpath : //a[@class="title"]
  280. content_xpath : //a[@class="subtitle"]
  281. categories : files
  282. shortcut : gpa
  283. disabled : True
  284. - name : google play movies
  285. engine : xpath
  286. search_url : https://play.google.com/store/search?q={query}&c=movies
  287. url_xpath : //a[@class="title"]/@href
  288. title_xpath : //a[@class="title"]/@title
  289. content_xpath : //a[contains(@class, "subtitle")]
  290. categories : videos
  291. shortcut : gpm
  292. disabled : True
  293. - name : google play music
  294. engine : xpath
  295. search_url : https://play.google.com/store/search?q={query}&c=music
  296. url_xpath : //a[@class="title"]/@href
  297. title_xpath : //a[@class="title"]
  298. content_xpath : //a[@class="subtitle"]
  299. categories : music
  300. shortcut : gps
  301. disabled : True
  302. - name : geektimes
  303. engine : xpath
  304. paging : True
  305. search_url : https://geektimes.ru/search/page{pageno}/?q={query}
  306. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  307. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  308. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  309. categories : it
  310. timeout : 4.0
  311. disabled : True
  312. shortcut : gt
  313. - name : habrahabr
  314. engine : xpath
  315. paging : True
  316. search_url : https://habrahabr.ru/search/page{pageno}/?q={query}
  317. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  318. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  319. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  320. categories : it
  321. timeout : 4.0
  322. disabled : True
  323. shortcut : habr
  324. - name : hoogle
  325. engine : json_engine
  326. paging : True
  327. search_url : https://www.haskell.org/hoogle/?mode=json&hoogle={query}&start={pageno}
  328. results_query : results
  329. url_query : location
  330. title_query : self
  331. content_query : docs
  332. page_size : 20
  333. categories : it
  334. shortcut : ho
  335. - name : ina
  336. engine : ina
  337. shortcut : in
  338. timeout : 6.0
  339. disabled : True
  340. - name: kickass
  341. engine : kickass
  342. shortcut : kc
  343. timeout : 4.0
  344. disabled : True
  345. - name : library genesis
  346. engine : xpath
  347. search_url : http://libgen.io/search.php?req={query}
  348. url_xpath : //a[contains(@href,"bookfi.net")]/@href
  349. title_xpath : //a[contains(@href,"book/")]/text()[1]
  350. content_xpath : //td/a[1][contains(@href,"=author")]/text()
  351. categories : general
  352. timeout : 7.0
  353. disabled : True
  354. shortcut : lg
  355. - name : lobste.rs
  356. engine : xpath
  357. search_url : https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  358. results_xpath : //li[contains(@class, "story")]
  359. url_xpath : .//span[@class="link"]/a/@href
  360. title_xpath : .//span[@class="link"]/a
  361. content_xpath : .//a[@class="domain"]
  362. categories : it
  363. shortcut : lo
  364. - name : microsoft academic
  365. engine : microsoft_academic
  366. categories : science
  367. shortcut : ma
  368. - name : mixcloud
  369. engine : mixcloud
  370. shortcut : mc
  371. - name : nyaa
  372. engine : nyaa
  373. shortcut : nt
  374. disabled : True
  375. - name : acgsou
  376. engine : acgsou
  377. shortcut : acg
  378. disabled : True
  379. timeout: 5.0
  380. - name : openairedatasets
  381. engine : json_engine
  382. paging : True
  383. search_url : http://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  384. results_query : response/results/result
  385. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  386. title_query : metadata/oaf:entity/oaf:result/title/$
  387. content_query : metadata/oaf:entity/oaf:result/description/$
  388. categories : science
  389. shortcut : oad
  390. timeout: 5.0
  391. - name : openairepublications
  392. engine : json_engine
  393. paging : True
  394. search_url : http://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  395. results_query : response/results/result
  396. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  397. title_query : metadata/oaf:entity/oaf:result/title/$
  398. content_query : metadata/oaf:entity/oaf:result/description/$
  399. categories : science
  400. shortcut : oap
  401. timeout: 5.0
  402. - name : openstreetmap
  403. engine : openstreetmap
  404. shortcut : osm
  405. - name : openrepos
  406. engine : xpath
  407. paging : True
  408. search_url : https://openrepos.net/search/node/{query}?page={pageno}
  409. url_xpath : //li[@class="search-result"]//h3[@class="title"]/a/@href
  410. title_xpath : //li[@class="search-result"]//h3[@class="title"]/a
  411. content_xpath : //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  412. categories : files
  413. timeout : 4.0
  414. disabled : True
  415. shortcut : or
  416. - name : pdbe
  417. engine : pdbe
  418. shortcut : pdb
  419. # Hide obsolete PDB entries.
  420. # Default is not to hide obsolete structures
  421. # hide_obsolete : False
  422. - name : photon
  423. engine : photon
  424. shortcut : ph
  425. - name : piratebay
  426. engine : piratebay
  427. shortcut : tpb
  428. url: https://pirateproxy.red/
  429. timeout : 3.0
  430. - name : pubmed
  431. engine : pubmed
  432. shortcut : pub
  433. categories: science
  434. timeout : 3.0
  435. - name : qwant
  436. engine : qwant
  437. shortcut : qw
  438. categories : general
  439. disabled : True
  440. - name : qwant images
  441. engine : qwant
  442. shortcut : qwi
  443. categories : images
  444. - name : qwant news
  445. engine : qwant
  446. shortcut : qwn
  447. categories : news
  448. - name : qwant social
  449. engine : qwant
  450. shortcut : qws
  451. categories : social media
  452. - name : reddit
  453. engine : reddit
  454. shortcut : re
  455. page_size : 25
  456. timeout : 10.0
  457. disabled : True
  458. - name : scanr structures
  459. shortcut: scs
  460. engine : scanr_structures
  461. disabled : True
  462. - name : soundcloud
  463. engine : soundcloud
  464. shortcut : sc
  465. - name : stackoverflow
  466. engine : stackoverflow
  467. shortcut : st
  468. - name : searchcode doc
  469. engine : searchcode_doc
  470. shortcut : scd
  471. - name : searchcode code
  472. engine : searchcode_code
  473. shortcut : scc
  474. disabled : True
  475. - name : framalibre
  476. engine : framalibre
  477. shortcut : frl
  478. disabled : True
  479. # - name : searx
  480. # engine : searx_engine
  481. # shortcut : se
  482. # instance_urls :
  483. # - http://127.0.0.1:8888/
  484. # - ...
  485. # disabled : True
  486. - name : semantic scholar
  487. engine : xpath
  488. paging : True
  489. search_url : https://www.semanticscholar.org/search?q={query}&sort=relevance&page={pageno}&ae=false
  490. results_xpath : //article
  491. url_xpath : .//div[@class="search-result-title"]/a/@href
  492. title_xpath : .//div[@class="search-result-title"]/a
  493. content_xpath : .//div[@class="search-result-abstract"]
  494. shortcut : se
  495. categories : science
  496. - name : spotify
  497. engine : spotify
  498. shortcut : stf
  499. - name : subtitleseeker
  500. engine : subtitleseeker
  501. shortcut : ss
  502. # The language is an option. You can put any language written in english
  503. # Examples : English, French, German, Hungarian, Chinese...
  504. # language : English
  505. - name : startpage
  506. engine : startpage
  507. shortcut : sp
  508. timeout : 6.0
  509. disabled : True
  510. - name : ixquick
  511. engine : startpage
  512. base_url : 'https://www.ixquick.eu/'
  513. search_url : 'https://www.ixquick.eu/do/search'
  514. shortcut : iq
  515. timeout : 6.0
  516. disabled : True
  517. - name : swisscows
  518. engine : swisscows
  519. shortcut : sw
  520. disabled : True
  521. - name : tokyotoshokan
  522. engine : tokyotoshokan
  523. shortcut : tt
  524. timeout : 6.0
  525. disabled : True
  526. - name : torrentz
  527. engine : torrentz
  528. shortcut : tor
  529. url: https://torrentz2.eu/
  530. timeout : 3.0
  531. - name : twitter
  532. engine : twitter
  533. shortcut : tw
  534. # maybe in a fun category
  535. # - name : uncyclopedia
  536. # engine : mediawiki
  537. # shortcut : unc
  538. # base_url : https://uncyclopedia.wikia.com/
  539. # number_of_results : 5
  540. # tmp suspended - too slow, too many errors
  541. # - name : urbandictionary
  542. # engine : xpath
  543. # search_url : http://www.urbandictionary.com/define.php?term={query}
  544. # url_xpath : //*[@class="word"]/@href
  545. # title_xpath : //*[@class="def-header"]
  546. # content_xpath : //*[@class="meaning"]
  547. # shortcut : ud
  548. - name : yahoo
  549. engine : yahoo
  550. shortcut : yh
  551. disabled : True
  552. - name : yandex
  553. engine : yandex
  554. shortcut : yn
  555. disabled : True
  556. - name : yahoo news
  557. engine : yahoo_news
  558. shortcut : yhn
  559. - name : youtube
  560. shortcut : yt
  561. # You can use the engine using the official stable API, but you need an API key
  562. # See : https://console.developers.google.com/project
  563. # engine : youtube_api
  564. # api_key: 'apikey' # required!
  565. # Or you can use the html non-stable engine, activated by default
  566. engine : youtube_noapi
  567. - name : dailymotion
  568. engine : dailymotion
  569. shortcut : dm
  570. - name : vimeo
  571. engine : vimeo
  572. shortcut : vm
  573. - name : wolframalpha
  574. shortcut : wa
  575. # You can use the engine using the official stable API, but you need an API key
  576. # See : http://products.wolframalpha.com/api/
  577. # engine : wolframalpha_api
  578. # api_key: '' # required!
  579. engine : wolframalpha_noapi
  580. timeout: 6.0
  581. categories : science
  582. - name : seedpeer
  583. engine : seedpeer
  584. shortcut: speu
  585. categories: files, music, videos
  586. disabled: True
  587. - name : dictzone
  588. engine : dictzone
  589. shortcut : dc
  590. - name : mymemory translated
  591. engine : translated
  592. shortcut : tl
  593. timeout : 5.0
  594. disabled : True
  595. # You can use without an API key, but you are limited to 1000 words/day
  596. # See : http://mymemory.translated.net/doc/usagelimits.php
  597. # api_key : ''
  598. - name : voat
  599. engine: xpath
  600. shortcut: vo
  601. categories: social media
  602. search_url : https://searchvoat.co/?t={query}
  603. url_xpath : //div[@class="entry"]/p/a[@class="title"]/@href
  604. title_xpath : //div[@class="entry"]/p/a[@class="title"]
  605. content_xpath : //div[@class="entry"]/p/span[@class="domain"]
  606. timeout : 10.0
  607. disabled : True
  608. - name : 1337x
  609. engine : 1337x
  610. shortcut : 1337x
  611. disabled : True
  612. # - name : yacy
  613. # engine : yacy
  614. # shortcut : ya
  615. # base_url : 'http://localhost:8090'
  616. # number_of_results : 5
  617. # timeout : 3.0
  618. # Doku engine lets you access to any Doku wiki instance:
  619. # A public one or a privete/corporate one.
  620. # - name : ubuntuwiki
  621. # engine : doku
  622. # shortcut : uw
  623. # base_url : 'http://doc.ubuntu-fr.org'
  624. locales:
  625. en : English
  626. ar : العَرَبِيَّة (Arabic)
  627. bg : Български (Bulgarian)
  628. cs : Čeština (Czech)
  629. da : Dansk (Danish)
  630. de : Deutsch (German)
  631. el_GR : Ελληνικά (Greek_Greece)
  632. eo : Esperanto (Esperanto)
  633. es : Español (Spanish)
  634. fi : Suomi (Finnish)
  635. fil : Wikang Filipino (Filipino)
  636. fr : Français (French)
  637. he : עברית (Hebrew)
  638. hr : Hrvatski (Croatian)
  639. hu : Magyar (Hungarian)
  640. it : Italiano (Italian)
  641. ja : 日本語 (Japanese)
  642. nl : Nederlands (Dutch)
  643. pl : Polszczyzna (Polish)
  644. pt : Português (Portuguese)
  645. pt_BR : Português (Portuguese_Brazil)
  646. ro : Română (Romanian)
  647. ru : Русский (Russian)
  648. sk : Slovenčina (Slovak)
  649. sl : Slovenski (Slovene)
  650. sr : српски (Serbian)
  651. sv : Svenska (Swedish)
  652. tr : Türkçe (Turkish)
  653. uk : українська мова (Ukrainian)
  654. zh : 中文 (Chinese)
  655. zh_TW : 國語 (Taiwanese Mandarin)
  656. doi_resolvers :
  657. oadoi.org : 'https://oadoi.org/'
  658. doi.org : 'https://doi.org/'
  659. doai.io : 'http://doai.io/'
  660. default_doi_resolver : 'oadoi.org'