settings.yml 21 KB

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