settings.yml 41 KB

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