settings.yml 39 KB

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