settings.yml 21 KB

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