settings.yml 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473
  1. general:
  2. debug : False # Debug mode, only for development
  3. instance_name : "searxng" # displayed name
  4. contact_url: False # mailto:contact@example.com
  5. brand:
  6. git_url: https://github.com/searxng/searxng
  7. git_branch: master
  8. issue_url: https://github.com/searxng/searxng/issues
  9. new_issue_url: https://github.com/searxng/searxng/issues/new
  10. docs_url: https://searxng.github.io/searxng
  11. public_instances: https://searx.space
  12. wiki_url: https://github.com/searxng/searxng/wiki
  13. search:
  14. safe_search : 0 # Filter results. 0: None, 1: Moderate, 2: Strict
  15. autocomplete : "" # Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "startpage", "swisscows", "qwant", "wikipedia" - leave blank to turn it off by default
  16. default_lang : "" # Default search language - leave blank to detect from browser information or use codes from 'languages.py'
  17. ban_time_on_fail : 5 # ban time in seconds after engine errors
  18. max_ban_time_on_fail : 120 # max ban time in seconds after engine errors
  19. server:
  20. port : 8888
  21. bind_address : "127.0.0.1" # address to listen on
  22. secret_key : "ultrasecretkey" # change this!
  23. base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/"
  24. image_proxy : False # Proxying image results through searx
  25. http_protocol_version : "1.0" # 1.0 and 1.1 are supported
  26. method: "POST" # POST queries are more secure as they don't show up in history but may cause problems when using Firefox containers
  27. default_http_headers:
  28. X-Content-Type-Options : nosniff
  29. X-XSS-Protection : 1; mode=block
  30. X-Download-Options : noopen
  31. X-Robots-Tag : noindex, nofollow
  32. Referrer-Policy : no-referrer
  33. ui:
  34. static_path : "" # Custom static path - leave it blank if you didn't change
  35. templates_path : "" # Custom templates path - leave it blank if you didn't change
  36. default_theme : oscar # ui theme
  37. default_locale : "" # Default interface locale - leave blank to detect from browser information or use codes from the 'locales' config section
  38. theme_args :
  39. oscar_style : logicodev # default style of oscar
  40. # results_on_new_tab: False # Open result links in a new tab by default
  41. # categories_order :
  42. # - general
  43. # - files
  44. # - map
  45. # - it
  46. # - science
  47. # Lock arbitrary settings on the preferences page.
  48. # To find the ID of the user setting you want to lock, check
  49. # the ID of the form on the page "preferences".
  50. #preferences:
  51. # lock:
  52. # - language
  53. # - autocomplete
  54. # - method
  55. # searx supports result proxification using an external service: https://github.com/asciimoo/morty
  56. # uncomment below section if you have running morty proxy
  57. # the key is base64 encoded (keep the !!binary notation)
  58. # Note: since commit af77ec3, morty accepts a base64 encoded key.
  59. #result_proxy:
  60. # url : http://127.0.0.1:3000/
  61. # key : !!binary "your_morty_proxy_key"
  62. # proxify_results : True # [True|False] enable the "proxy" button next to each result
  63. outgoing: # communication with search engines
  64. request_timeout : 3.0 # default timeout in seconds, can be override by engine
  65. # max_request_timeout: 10.0 # the maximum timeout in seconds
  66. useragent_suffix : "" # suffix of searx_useragent, could contain informations like an email address to the administrator
  67. pool_connections : 100 # The maximum number of concurrent connections that may be established.
  68. pool_maxsize : 20 # Allow the connection pool to maintain keep-alive connections below this point.
  69. enable_http2: True # See https://www.python-httpx.org/http2/
  70. # uncomment below section if you want to use a proxy
  71. # see https://2.python-requests.org/en/latest/user/advanced/#proxies
  72. # SOCKS proxies are also supported: see https://2.python-requests.org/en/latest/user/advanced/#socks
  73. # proxies:
  74. # all://:
  75. # - http://proxy1:8080
  76. # - http://proxy2:8080
  77. # using_tor_proxy : True
  78. # extra_proxy_timeout : 10.0 # Extra seconds to add in order to account for the time taken by the proxy
  79. # uncomment below section only if you have more than one network interface
  80. # which can be the source of outgoing search requests
  81. # source_ips:
  82. # - 1.1.1.1
  83. # - 1.1.1.2
  84. # - fe80::/126
  85. # External plugin configuration
  86. # See https://searxng.github.io/searxng/dev/plugins.html for more details
  87. #
  88. # plugins:
  89. # - plugin1
  90. # - plugin2
  91. # - ...
  92. # uncomment below section if you want to configure which plugin is enabled by default
  93. #
  94. # enabled_plugins:
  95. # - "HTTPS rewrite"
  96. # - ...
  97. checker:
  98. # disable checker when in debug mode
  99. off_when_debug: True
  100. # scheduling: interval or int
  101. # use "scheduling: False" to disable scheduling
  102. # to activate the scheduler:
  103. # * uncomment "scheduling" section
  104. # * add "cache2 = name=searxcache,items=2000,blocks=2000,blocksize=4096,bitmap=1" to your uwsgi.ini
  105. # scheduling:
  106. # start_after: [300, 1800] # delay to start the first run of the checker
  107. # every: [86400, 90000] # how often the checker runs
  108. # additional tests: only for the YAML anchors (see the engines section)
  109. additional_tests:
  110. rosebud: &test_rosebud
  111. matrix:
  112. query: rosebud
  113. lang: en
  114. result_container:
  115. - not_empty
  116. - ['one_title_contains', 'citizen kane']
  117. test:
  118. - unique_results
  119. android: &test_android
  120. matrix:
  121. query: ['android']
  122. lang: ['en', 'de', 'fr', 'zh-CN']
  123. result_container:
  124. - not_empty
  125. - ['one_title_contains', 'google']
  126. test:
  127. - unique_results
  128. # tests: only for the YAML anchors (see the engines section)
  129. tests:
  130. infobox: &tests_infobox
  131. infobox:
  132. matrix:
  133. query: ["linux", "new york", "bbc"]
  134. result_container:
  135. - has_infobox
  136. engines:
  137. - name: apk mirror
  138. engine: apkmirror
  139. timeout: 4.0
  140. shortcut: apkm
  141. disabled: True
  142. # Requires Tor
  143. - name : ahmia
  144. engine : ahmia
  145. categories : onions
  146. enable_http : True
  147. shortcut : ah
  148. - name : arch linux wiki
  149. engine : archlinux
  150. shortcut : al
  151. - name : archive is
  152. engine : xpath
  153. search_url : https://archive.is/search/?q={query}
  154. url_xpath : (//div[@class="TEXT-BLOCK"]/a)/@href
  155. title_xpath : (//div[@class="TEXT-BLOCK"]/a)
  156. content_xpath : //div[@class="TEXT-BLOCK"]/ul/li
  157. categories : general
  158. timeout : 7.0
  159. disabled : True
  160. shortcut : ai
  161. soft_max_redirects: 1
  162. about:
  163. website: https://archive.is/
  164. wikidata_id: Q13515725
  165. official_api_documentation: http://mementoweb.org/depot/native/archiveis/
  166. use_official_api: false
  167. require_api_key: false
  168. results: HTML
  169. - name : artic
  170. engine : artic
  171. shortcut : arc
  172. timeout : 4.0
  173. - name : arxiv
  174. engine : arxiv
  175. shortcut : arx
  176. categories : science
  177. timeout : 4.0
  178. # tmp suspended: dh key too small
  179. # - name : base
  180. # engine : base
  181. # shortcut : bs
  182. - name: bandcamp
  183. engine: bandcamp
  184. shortcut: bc
  185. categories: music
  186. - name : wikipedia
  187. engine : wikipedia
  188. shortcut : wp
  189. base_url : 'https://{language}.wikipedia.org/'
  190. - name : bing
  191. engine : bing
  192. shortcut : bi
  193. - name : bing images
  194. engine : bing_images
  195. shortcut : bii
  196. - name : bing news
  197. engine : bing_news
  198. shortcut : bin
  199. - name : bing videos
  200. engine : bing_videos
  201. shortcut : biv
  202. - name : bitbucket
  203. engine : xpath
  204. paging : True
  205. search_url : https://bitbucket.org/repo/all/{pageno}?name={query}
  206. url_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  207. title_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]
  208. content_xpath : //article[@class="repo-summary"]/p
  209. categories : it
  210. timeout : 4.0
  211. disabled : True
  212. shortcut : bb
  213. about:
  214. website: https://bitbucket.org/
  215. wikidata_id: Q2493781
  216. official_api_documentation: https://developer.atlassian.com/bitbucket
  217. use_official_api: false
  218. require_api_key: false
  219. results: HTML
  220. - name : btdigg
  221. engine : btdigg
  222. shortcut : bt
  223. - name : ccc-tv
  224. engine : xpath
  225. paging : False
  226. search_url : https://media.ccc.de/search/?q={query}
  227. url_xpath : //div[@class="caption"]/h3/a/@href
  228. title_xpath : //div[@class="caption"]/h3/a/text()
  229. content_xpath : //div[@class="caption"]/h4/@title
  230. categories : videos
  231. disabled : True
  232. shortcut : c3tv
  233. about:
  234. website: https://media.ccc.de/
  235. wikidata_id: Q80729951
  236. official_api_documentation: https://github.com/voc/voctoweb
  237. use_official_api: false
  238. require_api_key: false
  239. results: HTML
  240. - name : ccengine
  241. engine : ccengine
  242. categories : images
  243. shortcut : cce
  244. # - name : core.ac.uk
  245. # engine : core
  246. # categories : science
  247. # shortcut : cor
  248. # # get your API key from: https://core.ac.uk/api-keys/register/
  249. # api_key : 'unset'
  250. - name : crossref
  251. engine : json_engine
  252. paging : True
  253. search_url : https://search.crossref.org/dois?q={query}&page={pageno}
  254. url_query : doi
  255. title_query : title
  256. title_html_to_text: True
  257. content_query : fullCitation
  258. content_html_to_text: True
  259. categories : science
  260. shortcut : cr
  261. about:
  262. website: https://www.crossref.org/
  263. wikidata_id: Q5188229
  264. official_api_documentation: https://github.com/CrossRef/rest-api-doc
  265. use_official_api: false
  266. require_api_key: false
  267. results: JSON
  268. - name : currency
  269. engine : currency_convert
  270. categories : general
  271. shortcut : cc
  272. - name : deezer
  273. engine : deezer
  274. shortcut : dz
  275. - name : deviantart
  276. engine : deviantart
  277. shortcut : da
  278. timeout : 3.0
  279. - name : ddg definitions
  280. engine : duckduckgo_definitions
  281. shortcut : ddd
  282. weight : 2
  283. disabled : True
  284. tests: *tests_infobox
  285. # cloudflare protected
  286. # - name : digbt
  287. # engine : digbt
  288. # shortcut : dbt
  289. # timeout : 6.0
  290. # disabled : True
  291. - name : digg
  292. engine : digg
  293. shortcut : dg
  294. - name : erowid
  295. engine : xpath
  296. paging : True
  297. first_page_num : 0
  298. page_size : 30
  299. search_url : https://www.erowid.org/search.php?q={query}&s={pageno}
  300. url_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  301. title_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  302. content_xpath : //dl[@class="results-list"]/dd[@class="result-details"]
  303. categories : general
  304. shortcut : ew
  305. disabled : True
  306. about:
  307. website: https://www.erowid.org/
  308. wikidata_id: Q1430691
  309. official_api_documentation:
  310. use_official_api: false
  311. require_api_key: false
  312. results: HTML
  313. # - name : elasticsearch
  314. # shortcut : es
  315. # engine : elasticsearch
  316. # base_url : http://localhost:9200
  317. # username : elastic
  318. # password : changeme
  319. # index : my-index
  320. # # available options: match, simple_query_string, term, terms, custom
  321. # query_type : match
  322. # # if query_type is set to custom, provide your query here
  323. # #custom_query_json: {"query":{"match_all": {}}}
  324. # #show_metadata: False
  325. # disabled : True
  326. - name : wikidata
  327. engine : wikidata
  328. shortcut : wd
  329. timeout : 3.0
  330. weight : 2
  331. tests: *tests_infobox
  332. - name : duckduckgo
  333. engine : duckduckgo
  334. shortcut : ddg
  335. disabled : True
  336. - name : duckduckgo images
  337. engine : duckduckgo_images
  338. shortcut : ddi
  339. timeout: 3.0
  340. disabled : True
  341. - name : etools
  342. engine : etools
  343. shortcut : eto
  344. disabled : True
  345. additional_tests:
  346. rosebud: *test_rosebud
  347. - name : etymonline
  348. engine : xpath
  349. paging : True
  350. search_url : https://etymonline.com/search?page={pageno}&q={query}
  351. url_xpath : //a[contains(@class, "word__name--")]/@href
  352. title_xpath : //a[contains(@class, "word__name--")]
  353. content_xpath : //section[contains(@class, "word__defination")]
  354. first_page_num : 1
  355. shortcut : et
  356. disabled : True
  357. about:
  358. website: https://www.etymonline.com/
  359. wikidata_id: Q1188617
  360. official_api_documentation:
  361. use_official_api: false
  362. require_api_key: false
  363. results: HTML
  364. # - name : ebay
  365. # engine : ebay
  366. # shortcut : eb
  367. # disabled : True
  368. # timeout: 5
  369. - name : 1x
  370. engine : www1x
  371. shortcut : 1x
  372. timeout : 3.0
  373. disabled : True
  374. - name : fdroid
  375. engine : fdroid
  376. shortcut : fd
  377. disabled : True
  378. - name : flickr
  379. categories : images
  380. shortcut : fl
  381. # You can use the engine using the official stable API, but you need an API key
  382. # See : https://www.flickr.com/services/apps/create/
  383. # engine : flickr
  384. # api_key: 'apikey' # required!
  385. # Or you can use the html non-stable engine, activated by default
  386. engine : flickr_noapi
  387. - name : free software directory
  388. engine : mediawiki
  389. shortcut : fsd
  390. categories : it
  391. base_url : https://directory.fsf.org/
  392. number_of_results : 5
  393. # what part of a page matches the query string: title, text, nearmatch
  394. # title - query matches title, text - query matches the text of page, nearmatch - nearmatch in title
  395. search_type : title
  396. timeout : 5.0
  397. disabled : True
  398. about:
  399. website: https://directory.fsf.org/
  400. wikidata_id: Q2470288
  401. # - name : freesound
  402. # engine : freesound
  403. # shortcut : fnd
  404. # disabled : True
  405. # timeout : 15.0
  406. # api_key : MyAPIkey
  407. # API key required, see : https://freesound.org/docs/api/overview.html
  408. - name : frinkiac
  409. engine : frinkiac
  410. shortcut : frk
  411. disabled : True
  412. - name : genius
  413. engine : genius
  414. shortcut : gen
  415. - name : gigablast
  416. engine : gigablast
  417. shortcut : gb
  418. timeout : 3.0
  419. disabled: True
  420. additional_tests:
  421. rosebud: *test_rosebud
  422. - name : gentoo
  423. engine : gentoo
  424. shortcut : ge
  425. - name : gitlab
  426. engine : json_engine
  427. paging : True
  428. search_url : https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  429. url_query : web_url
  430. title_query : name_with_namespace
  431. content_query : description
  432. page_size : 20
  433. categories : it
  434. shortcut : gl
  435. timeout : 10.0
  436. disabled : True
  437. about:
  438. website: https://about.gitlab.com/
  439. wikidata_id: Q16639197
  440. official_api_documentation: https://docs.gitlab.com/ee/api/
  441. use_official_api: false
  442. require_api_key: false
  443. results: JSON
  444. - name : github
  445. engine : github
  446. shortcut : gh
  447. # This a Gitea service. If you would like to use a different instance,
  448. # change codeberg.org to URL of the desired Gitea host. Or you can create
  449. # a new engine by copying this and changing the name, shortcut and search_url.
  450. - name : codeberg
  451. engine : json_engine
  452. search_url : https://codeberg.org/api/v1/repos/search?q={query}&limit=10
  453. url_query : html_url
  454. title_query : name
  455. content_query : description
  456. categories : it
  457. shortcut : cb
  458. disabled : True
  459. about:
  460. website: https://codeberg.org/
  461. wikidata_id:
  462. official_api_documentation: https://try.gitea.io/api/swagger
  463. use_official_api: false
  464. require_api_key: false
  465. results: JSON
  466. - name : google
  467. engine : google
  468. shortcut : go
  469. # additional_tests:
  470. # android: *test_android
  471. - name : google images
  472. engine : google_images
  473. shortcut : goi
  474. # additional_tests:
  475. # android: *test_android
  476. # dali:
  477. # matrix:
  478. # query: ['Dali Christ']
  479. # lang: ['en', 'de', 'fr', 'zh-CN']
  480. # result_container:
  481. # - ['one_title_contains', 'Salvador']
  482. - name : google news
  483. engine : google_news
  484. shortcut : gon
  485. # additional_tests:
  486. # android: *test_android
  487. - name : google videos
  488. engine : google_videos
  489. shortcut : gov
  490. # additional_tests:
  491. # android: *test_android
  492. - name : google scholar
  493. engine : google_scholar
  494. shortcut : gos
  495. - name : google play apps
  496. engine : xpath
  497. search_url : https://play.google.com/store/search?q={query}&c=apps
  498. results_xpath : '//div[@class="ImZGtf mpg5gc"]'
  499. title_xpath : './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a'
  500. url_xpath : './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a/@href'
  501. content_xpath : './/div[@class="RZEgze"]//a[@class="mnKHRc"]'
  502. thumbnail_xpath : './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  503. categories : files
  504. shortcut : gpa
  505. disabled : True
  506. about:
  507. website: https://play.google.com/
  508. wikidata_id: Q79576
  509. official_api_documentation:
  510. use_official_api: false
  511. require_api_key: false
  512. results: HTML
  513. - name : google play movies
  514. engine : xpath
  515. search_url : https://play.google.com/store/search?q={query}&c=movies
  516. results_xpath : '//div[@class="ImZGtf mpg5gc"]'
  517. title_xpath : './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a'
  518. url_xpath : './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a/@href'
  519. content_xpath : './/div[@class="kCSSQe"]'
  520. thumbnail_xpath : './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  521. categories : videos
  522. shortcut : gpm
  523. disabled : True
  524. about:
  525. website: https://play.google.com/
  526. wikidata_id: Q79576
  527. official_api_documentation:
  528. use_official_api: false
  529. require_api_key: false
  530. results: HTML
  531. - name : geektimes
  532. engine : xpath
  533. paging : True
  534. search_url : https://habr.com/en/search/page{pageno}/?q={query}
  535. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  536. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  537. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  538. categories : it
  539. timeout : 4.0
  540. disabled : True
  541. shortcut : gt
  542. about:
  543. website: https://geektimes.ru/
  544. wikidata_id: Q50572423
  545. official_api_documentation:
  546. use_official_api: false
  547. require_api_key: false
  548. results: HTML
  549. - name : habrahabr
  550. engine : xpath
  551. paging : True
  552. search_url : https://habrahabr.ru/search/page{pageno}/?q={query}
  553. url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  554. title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
  555. content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  556. categories : it
  557. timeout : 4.0
  558. disabled : True
  559. shortcut : habr
  560. about:
  561. website: https://habr.com/
  562. wikidata_id: Q4494434
  563. official_api_documentation: https://habr.com/en/docs/help/api/
  564. use_official_api: false
  565. require_api_key: false
  566. results: HTML
  567. - name : hoogle
  568. engine : xpath
  569. paging : True
  570. search_url : https://hoogle.haskell.org/?hoogle={query}&start={pageno}
  571. results_xpath : '//div[@class="result"]'
  572. title_xpath : './/div[@class="ans"]//a'
  573. url_xpath : './/div[@class="ans"]//a/@href'
  574. content_xpath : './/div[@class="from"]'
  575. page_size : 20
  576. categories : it
  577. shortcut : ho
  578. about:
  579. website: https://www.haskell.org/
  580. wikidata_id: Q34010
  581. official_api_documentation: https://hackage.haskell.org/api
  582. use_official_api: false
  583. require_api_key: false
  584. results: JSON
  585. - name : ina
  586. engine : ina
  587. shortcut : in
  588. timeout : 6.0
  589. disabled : True
  590. - name : invidious
  591. engine : invidious
  592. base_url :
  593. - https://invidious.tube/
  594. - https://invidious.snopyta.org/
  595. shortcut: iv
  596. timeout : 5.0
  597. disabled : True
  598. - name: kickass
  599. engine : kickass
  600. shortcut : kc
  601. timeout : 4.0
  602. disabled : True
  603. - name : library genesis
  604. engine : xpath
  605. enable_http: True
  606. search_url : http://libgen.rs/search.php?req={query}
  607. url_xpath : //a[contains(@href,"bookfi.net/md5")]/@href
  608. title_xpath : //a[contains(@href,"book/")]/text()[1]
  609. content_xpath : //td/a[1][contains(@href,"=author")]/text()
  610. categories : general
  611. timeout : 7.0
  612. disabled : True
  613. shortcut : lg
  614. about:
  615. website: http://libgen.rs/
  616. wikidata_id: Q22017206
  617. official_api_documentation:
  618. use_official_api: false
  619. require_api_key: false
  620. results: HTML
  621. - name : library of congress
  622. engine : loc
  623. shortcut : loc
  624. categories : images
  625. - name : lobste.rs
  626. engine : xpath
  627. search_url : https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  628. results_xpath : //li[contains(@class, "story")]
  629. url_xpath : .//a[@class="u-url"]/@href
  630. title_xpath : .//a[@class="u-url"]
  631. content_xpath : .//a[@class="domain"]
  632. categories : it
  633. shortcut : lo
  634. timeout : 5.0
  635. disabled: True
  636. about:
  637. website: https://lobste.rs/
  638. wikidata_id: Q60762874
  639. official_api_documentation:
  640. use_official_api: false
  641. require_api_key: false
  642. results: HTML
  643. # - name : meilisearch
  644. # engine : meilisearch
  645. # shortcut: mes
  646. # enable_http: True
  647. # base_url : http://localhost:7700
  648. # index : my-index
  649. - name : microsoft academic
  650. engine : microsoft_academic
  651. categories : science
  652. shortcut : ma
  653. - name : mixcloud
  654. engine : mixcloud
  655. shortcut : mc
  656. - name : npm
  657. engine : json_engine
  658. paging : True
  659. search_url : https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  660. results_query : results
  661. url_query : package/links/npm
  662. title_query : package/name
  663. content_query : package/description
  664. page_size : 25
  665. categories : it
  666. disabled: True
  667. timeout: 5.0
  668. shortcut : npm
  669. about:
  670. website: https://npms.io/
  671. wikidata_id: Q7067518
  672. official_api_documentation: https://api-docs.npms.io/
  673. use_official_api: false
  674. require_api_key: false
  675. results: JSON
  676. # Requires Tor
  677. - name : not evil
  678. engine : not_evil
  679. categories : onions
  680. enable_http : True
  681. shortcut : ne
  682. - name : nyaa
  683. engine : nyaa
  684. shortcut : nt
  685. disabled : True
  686. - name : openairedatasets
  687. engine : json_engine
  688. paging : True
  689. search_url : https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  690. results_query : response/results/result
  691. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  692. title_query : metadata/oaf:entity/oaf:result/title/$
  693. content_query : metadata/oaf:entity/oaf:result/description/$
  694. content_html_to_text: True
  695. categories : science
  696. shortcut : oad
  697. timeout: 5.0
  698. about:
  699. website: https://www.openaire.eu/
  700. wikidata_id: Q25106053
  701. official_api_documentation: https://api.openaire.eu/
  702. use_official_api: false
  703. require_api_key: false
  704. results: JSON
  705. - name : openairepublications
  706. engine : json_engine
  707. paging : True
  708. search_url : https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  709. results_query : response/results/result
  710. url_query : metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  711. title_query : metadata/oaf:entity/oaf:result/title/$
  712. content_query : metadata/oaf:entity/oaf:result/description/$
  713. content_html_to_text: True
  714. categories : science
  715. shortcut : oap
  716. timeout: 5.0
  717. about:
  718. website: https://www.openaire.eu/
  719. wikidata_id: Q25106053
  720. official_api_documentation: https://api.openaire.eu/
  721. use_official_api: false
  722. require_api_key: false
  723. results: JSON
  724. # - name : opensemanticsearch
  725. # engine : opensemantic
  726. # shortcut : oss
  727. # base_url : 'http://localhost:8983/solr/opensemanticsearch/'
  728. - name : openstreetmap
  729. engine : openstreetmap
  730. shortcut : osm
  731. - name : openrepos
  732. engine : xpath
  733. paging : True
  734. search_url : https://openrepos.net/search/node/{query}?page={pageno}
  735. url_xpath : //li[@class="search-result"]//h3[@class="title"]/a/@href
  736. title_xpath : //li[@class="search-result"]//h3[@class="title"]/a
  737. content_xpath : //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  738. categories : files
  739. timeout : 4.0
  740. disabled : True
  741. shortcut : or
  742. about:
  743. website: https://openrepos.net/
  744. wikidata_id:
  745. official_api_documentation:
  746. use_official_api: false
  747. require_api_key: false
  748. results: HTML
  749. - name : pdbe
  750. engine : pdbe
  751. shortcut : pdb
  752. # Hide obsolete PDB entries.
  753. # Default is not to hide obsolete structures
  754. # hide_obsolete : False
  755. - name : photon
  756. engine : photon
  757. shortcut : ph
  758. - name : piratebay
  759. engine : piratebay
  760. shortcut : tpb
  761. # You may need to change this URL to a proxy if piratebay is blocked in your country
  762. url: https://thepiratebay.org/
  763. timeout : 3.0
  764. - name : pubmed
  765. engine : pubmed
  766. shortcut : pub
  767. categories: science
  768. timeout : 3.0
  769. - name : qwant
  770. engine : qwant
  771. shortcut : qw
  772. categories : general
  773. disabled : True
  774. additional_tests:
  775. rosebud: *test_rosebud
  776. - name : qwant images
  777. engine : qwant
  778. shortcut : qwi
  779. categories : images
  780. network: qwant
  781. - name : qwant news
  782. engine : qwant
  783. shortcut : qwn
  784. categories : news
  785. network: qwant
  786. # - name: library
  787. # engine: recoll
  788. # shortcut: lib
  789. # base_url: 'https://recoll.example.org/'
  790. # search_dir: ''
  791. # mount_prefix: /export
  792. # dl_prefix: 'https://download.example.org'
  793. # timeout: 30.0
  794. # categories: files
  795. # disabled: True
  796. # - name: recoll library reference
  797. # engine: recoll
  798. # base_url: 'https://recoll.example.org/'
  799. # search_dir: reference
  800. # mount_prefix: /export
  801. # dl_prefix: 'https://download.example.org'
  802. # shortcut: libr
  803. # timeout: 30.0
  804. # categories: files
  805. # disabled: True
  806. - name : reddit
  807. engine : reddit
  808. shortcut : re
  809. page_size : 25
  810. timeout : 10.0
  811. disabled : True
  812. # tmp suspended: bad certificate
  813. # - name : scanr structures
  814. # shortcut: scs
  815. # engine : scanr_structures
  816. # disabled : True
  817. - name: sepiasearch
  818. engine: sepiasearch
  819. shortcut: sep
  820. - name : soundcloud
  821. engine : soundcloud
  822. shortcut : sc
  823. - name : stackoverflow
  824. engine : stackoverflow
  825. shortcut : st
  826. - name : searchcode code
  827. engine : searchcode_code
  828. shortcut : scc
  829. disabled : True
  830. - name : framalibre
  831. engine : framalibre
  832. shortcut : frl
  833. disabled : True
  834. # - name : searx
  835. # engine : searx_engine
  836. # shortcut : se
  837. # instance_urls :
  838. # - http://127.0.0.1:8888/
  839. # - ...
  840. # disabled : True
  841. - name : semantic scholar
  842. engine : semantic_scholar
  843. disabled : True
  844. shortcut : se
  845. categories : science
  846. about:
  847. website: https://www.semanticscholar.org/
  848. wikidata_id: Q22908627
  849. official_api_documentation: https://api.semanticscholar.org/
  850. use_official_api: false
  851. require_api_key: false
  852. results: JSON
  853. # Spotify needs API credentials
  854. # - name : spotify
  855. # engine : spotify
  856. # shortcut : stf
  857. # api_client_id : *******
  858. # api_client_secret : *******
  859. # - name : solr
  860. # engine : solr
  861. # shortcut : slr
  862. # base_url : http://localhost:8983
  863. # collection : collection_name
  864. # sort : '' # sorting: asc or desc
  865. # field_list : '' # comma separated list of field names to display on the UI
  866. # default_fields : '' # default field to query
  867. # query_fields : '' # query fields
  868. # enable_http : True
  869. # - name : springer nature
  870. # engine : springer
  871. # # get your API key from: https://dev.springernature.com/signup
  872. # api_key : 'unset' # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  873. # shortcut : springer
  874. # categories : science
  875. # timeout : 6.0
  876. - name : startpage
  877. engine : startpage
  878. shortcut : sp
  879. timeout : 6.0
  880. disabled : True
  881. additional_tests:
  882. rosebud: *test_rosebud
  883. - name : tokyotoshokan
  884. engine : tokyotoshokan
  885. shortcut : tt
  886. timeout : 6.0
  887. disabled : True
  888. - name : solidtorrents
  889. engine : solidtorrents
  890. shortcut : solid
  891. timeout : 3.0
  892. disabled : True
  893. # For this demo of the sqlite engine download:
  894. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  895. # and unpack into searx/data/filmliste-v2.db
  896. # Query to test: "!demo concert"
  897. #
  898. # - name : demo
  899. # engine : sqlite
  900. # shortcut: demo
  901. # categories: general
  902. # result_template: default.html
  903. # database : searx/data/filmliste-v2.db
  904. # query_str : >-
  905. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  906. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  907. # description AS content
  908. # FROM film
  909. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  910. # ORDER BY duration DESC
  911. # disabled : False
  912. - name : torrentz
  913. engine : torrentz
  914. shortcut : tor
  915. url: https://torrentz2.eu/
  916. timeout : 3.0
  917. # Requires Tor
  918. - name : torch
  919. engine : xpath
  920. paging : True
  921. search_url : http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  922. results_xpath : //table//tr
  923. url_xpath : ./td[2]/a
  924. title_xpath : ./td[2]/b
  925. content_xpath : ./td[2]/small
  926. categories : onions
  927. enable_http : True
  928. shortcut : tch
  929. # maybe in a fun category
  930. # - name : uncyclopedia
  931. # engine : mediawiki
  932. # shortcut : unc
  933. # base_url : https://uncyclopedia.wikia.com/
  934. # number_of_results : 5
  935. # tmp suspended - too slow, too many errors
  936. # - name : urbandictionary
  937. # engine : xpath
  938. # search_url : http://www.urbandictionary.com/define.php?term={query}
  939. # url_xpath : //*[@class="word"]/@href
  940. # title_xpath : //*[@class="def-header"]
  941. # content_xpath : //*[@class="meaning"]
  942. # shortcut : ud
  943. - name : unsplash
  944. engine : unsplash
  945. shortcut : us
  946. - name : yahoo
  947. engine : yahoo
  948. shortcut : yh
  949. disabled : True
  950. - name : yahoo news
  951. engine : yahoo_news
  952. shortcut : yhn
  953. - name : youtube
  954. shortcut : yt
  955. # You can use the engine using the official stable API, but you need an API key
  956. # See : https://console.developers.google.com/project
  957. # engine : youtube_api
  958. # api_key: 'apikey' # required!
  959. # Or you can use the html non-stable engine, activated by default
  960. engine : youtube_noapi
  961. - name : yggtorrent
  962. engine : yggtorrent
  963. shortcut : ygg
  964. url: https://www4.yggtorrent.li/
  965. disabled : True
  966. timeout : 4.0
  967. - name : dailymotion
  968. engine : dailymotion
  969. shortcut : dm
  970. - name : vimeo
  971. engine : vimeo
  972. shortcut : vm
  973. - name : wiby
  974. engine : json_engine
  975. search_url : https://wiby.me/json/?q={query}
  976. url_query : URL
  977. title_query : Title
  978. content_query : Snippet
  979. categories : general
  980. shortcut : wib
  981. disabled : True
  982. - name : wikibooks
  983. engine : mediawiki
  984. shortcut : wb
  985. categories : general
  986. base_url : "https://{language}.wikibooks.org/"
  987. number_of_results : 5
  988. search_type : text
  989. disabled : True
  990. about:
  991. website: https://www.wikibooks.org/
  992. wikidata_id: Q367
  993. - name : wikinews
  994. engine : mediawiki
  995. shortcut : wn
  996. categories : news
  997. base_url : "https://{language}.wikinews.org/"
  998. number_of_results : 5
  999. search_type : text
  1000. disabled : True
  1001. about:
  1002. website: https://www.wikinews.org/
  1003. wikidata_id: Q964
  1004. - name : wikiquote
  1005. engine : mediawiki
  1006. shortcut : wq
  1007. categories : general
  1008. base_url : "https://{language}.wikiquote.org/"
  1009. number_of_results : 5
  1010. search_type : text
  1011. disabled : True
  1012. additional_tests:
  1013. rosebud: *test_rosebud
  1014. about:
  1015. website: https://www.wikiquote.org/
  1016. wikidata_id: Q369
  1017. - name : wikisource
  1018. engine : mediawiki
  1019. shortcut : ws
  1020. categories : general
  1021. base_url : "https://{language}.wikisource.org/"
  1022. number_of_results : 5
  1023. search_type : text
  1024. disabled : True
  1025. about:
  1026. website: https://www.wikisource.org/
  1027. wikidata_id: Q263
  1028. - name : wiktionary
  1029. engine : mediawiki
  1030. shortcut : wt
  1031. categories : general
  1032. base_url : "https://{language}.wiktionary.org/"
  1033. number_of_results : 5
  1034. search_type : text
  1035. disabled : True
  1036. about:
  1037. website: https://www.wiktionary.org/
  1038. wikidata_id: Q151
  1039. - name : wikiversity
  1040. engine : mediawiki
  1041. shortcut : wv
  1042. categories : general
  1043. base_url : "https://{language}.wikiversity.org/"
  1044. number_of_results : 5
  1045. search_type : text
  1046. disabled : True
  1047. about:
  1048. website: https://www.wikiversity.org/
  1049. wikidata_id: Q370
  1050. - name : wikivoyage
  1051. engine : mediawiki
  1052. shortcut : wy
  1053. categories : general
  1054. base_url : "https://{language}.wikivoyage.org/"
  1055. number_of_results : 5
  1056. search_type : text
  1057. disabled : True
  1058. about:
  1059. website: https://www.wikivoyage.org/
  1060. wikidata_id: Q373
  1061. - name : wolframalpha
  1062. shortcut : wa
  1063. # You can use the engine using the official stable API, but you need an API key
  1064. # See : http://products.wolframalpha.com/api/
  1065. # engine : wolframalpha_api
  1066. # api_key: '' # required!
  1067. engine : wolframalpha_noapi
  1068. timeout: 6.0
  1069. categories : science
  1070. - name : dictzone
  1071. engine : dictzone
  1072. shortcut : dc
  1073. - name : mymemory translated
  1074. engine : translated
  1075. shortcut : tl
  1076. timeout : 5.0
  1077. disabled : True
  1078. # You can use without an API key, but you are limited to 1000 words/day
  1079. # See : http://mymemory.translated.net/doc/usagelimits.php
  1080. # api_key : ''
  1081. - name : 1337x
  1082. engine : 1337x
  1083. shortcut : 1337x
  1084. disabled : True
  1085. - name : duden
  1086. engine : duden
  1087. shortcut : du
  1088. disabled : True
  1089. - name : seznam
  1090. shortcut: szn
  1091. engine: seznam
  1092. disabled : True
  1093. - name : mojeek
  1094. shortcut: mjk
  1095. engine: xpath
  1096. paging : True
  1097. search_url : https://www.mojeek.com/search?q={query}&s={pageno}
  1098. results_xpath: /html/body//div[@class="results"]/ul[@class="results-standard"]/li
  1099. url_xpath : ./h2/a/@href
  1100. title_xpath : ./h2
  1101. content_xpath : ./p[@class="s"]
  1102. suggestion_xpath : /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
  1103. first_page_num : 0
  1104. page_size : 10
  1105. disabled : True
  1106. about:
  1107. website: https://www.mojeek.com/
  1108. wikidata_id: Q60747299
  1109. official_api_documentation: https://www.mojeek.com/services/api.html/
  1110. use_official_api: false
  1111. require_api_key: false
  1112. results: HTML
  1113. - name : naver
  1114. shortcut: nvr
  1115. engine: xpath
  1116. paging : True
  1117. search_url : https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1118. url_xpath : //a[@class="link_tit"]/@href
  1119. title_xpath : //a[@class="link_tit"]
  1120. content_xpath : //a[@class="total_dsc"]/div
  1121. first_page_num : 1
  1122. page_size : 10
  1123. disabled : True
  1124. about:
  1125. website: https://www.naver.com/
  1126. wikidata_id: Q485639
  1127. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1128. use_official_api: false
  1129. require_api_key: false
  1130. results: HTML
  1131. - name : rubygems
  1132. shortcut: rbg
  1133. engine: xpath
  1134. paging : True
  1135. search_url : https://rubygems.org/search?page={pageno}&query={query}
  1136. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1137. url_xpath : ./@href
  1138. title_xpath : ./span/h2
  1139. content_xpath : ./span/p
  1140. suggestion_xpath : /html/body/main/div/div[@class="search__suggestions"]/p/a
  1141. first_page_num : 1
  1142. categories: it
  1143. disabled : True
  1144. about:
  1145. website: https://rubygems.org/
  1146. wikidata_id: Q1853420
  1147. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1148. use_official_api: false
  1149. require_api_key: false
  1150. results: HTML
  1151. - name : peertube
  1152. engine: peertube
  1153. shortcut: ptb
  1154. paging : True
  1155. base_url : https://peer.tube/
  1156. categories: videos
  1157. disabled : True
  1158. - name : mediathekviewweb
  1159. engine : mediathekviewweb
  1160. shortcut : mvw
  1161. # - name : yacy
  1162. # engine : yacy
  1163. # shortcut : ya
  1164. # base_url : 'http://localhost:8090'
  1165. # enable_http: True # required if you aren't using HTTPS for your local yacy instance
  1166. # number_of_results : 5
  1167. # timeout : 3.0
  1168. - name : rumble
  1169. engine : rumble
  1170. shortcut : ru
  1171. base_url : https://rumble.com/
  1172. paging : True
  1173. categories: videos
  1174. disabled : True
  1175. - name: wordnik
  1176. engine: wordnik
  1177. shortcut: def
  1178. base_url: https://www.wordnik.com/
  1179. categories: general
  1180. timeout: 5.0
  1181. disabled: True
  1182. - name: słownik języka polskiego
  1183. engine: sjp
  1184. shortcut: sjp
  1185. base_url: https://sjp.pwn.pl/
  1186. categories: general
  1187. timeout: 5.0
  1188. disabled: True
  1189. # Doku engine lets you access to any Doku wiki instance:
  1190. # A public one or a privete/corporate one.
  1191. # - name : ubuntuwiki
  1192. # engine : doku
  1193. # shortcut : uw
  1194. # base_url : 'http://doc.ubuntu-fr.org'
  1195. # Be careful when enabling this engine if you are
  1196. # running a public instance. Do not expose any sensitive
  1197. # information. You can restrict access by configuring a list
  1198. # of access tokens under tokens.
  1199. # - name: git grep
  1200. # engine: command
  1201. # command: ['git', 'grep', '{{QUERY}}']
  1202. # shortcut: gg
  1203. # tokens: []
  1204. # disabled: True
  1205. # delimiter:
  1206. # chars: ':'
  1207. # keys: ['filepath', 'code']
  1208. # Be careful when enabling this engine if you are
  1209. # running a public instance. Do not expose any sensitive
  1210. # information. You can restrict access by configuring a list
  1211. # of access tokens under tokens.
  1212. # - name: locate
  1213. # engine: command
  1214. # command: ['locate', '{{QUERY}}']
  1215. # shortcut: loc
  1216. # tokens: []
  1217. # disabled: True
  1218. # delimiter:
  1219. # chars: ' '
  1220. # keys: ['line']
  1221. # Be careful when enabling this engine if you are
  1222. # running a public instance. Do not expose any sensitive
  1223. # information. You can restrict access by configuring a list
  1224. # of access tokens under tokens.
  1225. # - name: find
  1226. # engine: command
  1227. # command: ['find', '.', '-name', '{{QUERY}}']
  1228. # query_type: path
  1229. # shortcut: fnd
  1230. # tokens: []
  1231. # disabled: True
  1232. # delimiter:
  1233. # chars: ' '
  1234. # keys: ['line']
  1235. # Be careful when enabling this engine if you are
  1236. # running a public instance. Do not expose any sensitive
  1237. # information. You can restrict access by configuring a list
  1238. # of access tokens under tokens.
  1239. # - name: pattern search in files
  1240. # engine: command
  1241. # command: ['fgrep', '{{QUERY}}']
  1242. # shortcut: fgr
  1243. # tokens: []
  1244. # disabled: True
  1245. # delimiter:
  1246. # chars: ' '
  1247. # keys: ['line']
  1248. # Be careful when enabling this engine if you are
  1249. # running a public instance. Do not expose any sensitive
  1250. # information. You can restrict access by configuring a list
  1251. # of access tokens under tokens.
  1252. # - name: regex search in files
  1253. # engine: command
  1254. # command: ['grep', '{{QUERY}}']
  1255. # shortcut: gr
  1256. # tokens: []
  1257. # disabled: True
  1258. # delimiter:
  1259. # chars: ' '
  1260. # keys: ['line']
  1261. locales:
  1262. en : English
  1263. ar : العَرَبِيَّة (Arabic)
  1264. bg : Български (Bulgarian)
  1265. bo : བོད་སྐད་ (Tibetian)
  1266. ca : Català (Catalan)
  1267. cs : Čeština (Czech)
  1268. cy : Cymraeg (Welsh)
  1269. da : Dansk (Danish)
  1270. de : Deutsch (German)
  1271. el_GR : Ελληνικά (Greek_Greece)
  1272. eo : Esperanto (Esperanto)
  1273. es : Español (Spanish)
  1274. et : Eesti (Estonian)
  1275. eu : Euskara (Basque)
  1276. fa_IR : (fārsī) فارسى (Persian)
  1277. fi : Suomi (Finnish)
  1278. fil : Wikang Filipino (Filipino)
  1279. fr : Français (French)
  1280. gl : Galego (Galician)
  1281. he : עברית (Hebrew)
  1282. hr : Hrvatski (Croatian)
  1283. hu : Magyar (Hungarian)
  1284. ia : Interlingua (Interlingua)
  1285. it : Italiano (Italian)
  1286. ja : 日本語 (Japanese)
  1287. lt : Lietuvių (Lithuanian)
  1288. nl : Nederlands (Dutch)
  1289. nl_BE : Vlaams (Dutch_Belgium)
  1290. oc : Lenga D'òc (Occitan)
  1291. pl : Polski (Polish)
  1292. pt : Português (Portuguese)
  1293. pt_BR : Português (Portuguese_Brazil)
  1294. ro : Română (Romanian)
  1295. ru : Русский (Russian)
  1296. sk : Slovenčina (Slovak)
  1297. sl : Slovenski (Slovene)
  1298. sr : српски (Serbian)
  1299. sv : Svenska (Swedish)
  1300. te : తెలుగు (telugu)
  1301. ta : தமிழ் (Tamil)
  1302. tr : Türkçe (Turkish)
  1303. uk : українська мова (Ukrainian)
  1304. vi : tiếng việt (Vietnamese)
  1305. zh : 中文 (Chinese)
  1306. zh_TW : 國語 (Taiwanese Mandarin)
  1307. doi_resolvers :
  1308. oadoi.org : 'https://oadoi.org/'
  1309. doi.org : 'https://doi.org/'
  1310. doai.io : 'https://dissem.in/'
  1311. sci-hub.se : 'https://sci-hub.se/'
  1312. sci-hub.do : 'https://sci-hub.do/'
  1313. scihubtw.tw : 'https://scihubtw.tw/'
  1314. sci-hub.st : 'https://sci-hub.st/'
  1315. sci-hub.bar : 'https://sci-hub.bar/'
  1316. sci-hub.it.nf : 'https://sci-hub.it.nf/'
  1317. default_doi_resolver : 'oadoi.org'