File size: 21,112 Bytes
9ebb268 3068ad4 9ebb268 3068ad4 9ebb268 3068ad4 9ebb268 3068ad4 9ebb268 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 |
#!/usr/bin/env python3
import os
import re
from pathlib import Path
from typing import List
BASE_URL = "https://huggingface.co/csukuangfj/sherpa-onnx-flutter/resolve/main/"
from dataclasses import dataclass
@dataclass
class APP:
major: int
minor: int
patch: int
arch: str
name1: str
name2: str
def __init__(self, _s):
# android
# sherpa-onnx-1.10.11-x86_64-zh-tts-vits-zh-hf-fanchen-wnj.apk
# sherpa-onnx-1.10.11-armeabi-v7a-zh-tts-vits-zh-hf-keqing.apk
# sherpa-onnx-1.10.11-x86_64-zh-tts-vits-zh-hf-fanchen-ZhiHuiLaoZhe_new.apk
# macos
# sherpa-onnx-1.10.11-osx-arm64-bn-tts-vits-mimic3-bn-multi_low.app.tar.bz2
# sherpa-onnx-1.10.11-osx-arm64-zh-tts-vits-zh-hf-theresa.app.tar.bz2
# Linux
# sherpa-onnx-1.10.11-linux-x86_64-zh-tts-vits-zh-hf-zenyatta.tar.bz2
# Windows
# sherpa-onnx-1.10.11-win-x64-zh-tts-vits-zh-hf-zenyatta.tar.bz2
s = _s.split('/')[-1]
split = s.split("-")
self.major, self.minor, self.patch = list(map(int, split[2].split(".")))
if 'android' in _s:
self.os = 'android'
self.arch = split[3]
self.lang = split[4]
self.name1 = split[-1]
if 'arm' in _s:
self.arch = split[3] + '-' + split[4]
self.lang = split[5]
else:
self.os = split[3]
self.arch = split[4]
self.lang = split[5]
self.name1 = split[-1]
def sort_by_app(x):
x = APP(x)
return (x.major, x.minor, x.patch, x.os, x.arch, x.lang, x.name1)
def get_all_files(d: str, suffix: str) -> List[str]:
ss = []
for root, d, files in os.walk(d):
for f in files:
if f.endswith('.tar.bz2') or f.endswith('.apk'):
ss.append(os.path.join(root, f))
return list(map(lambda x: BASE_URL + x, ss))
def to_file_android(filename: str, files: List[str]):
content = r"""
<h1> Flutter Android APKs for text-to-speech </h1>
This page lists the <strong>text-to-speech</strong> APKs created with <a href="https://flutter.dev/">Flutter</a>
for <a href="http://github.com/k2-fsa/sherpa-onnx">sherpa-onnx</a>,
one of the deployment frameworks of <a href="https://github.com/k2-fsa">the Next-gen Kaldi project</a>.
<br/>
The name of an APK has the following rule:
<ul>
<li> sherpa-onnx-{version}-{arch}-{lang}-tts-{model}.apk
</ul>
where
<ul>
<li> version: It specifies the current version, e.g., 1.10.11
<li> arch: The architecture targeted by this APK, e.g., arm64-v8a, armeabi-v7a, x86_64, x86
<li> lang: The language supported by this APK, e.g., en for English, zh for Chinese, fr for French, de for German, es for Spanish
<li> model: The name of the model used in the APK, e.g., vits-ljs, vits-piper-de_DE-thorsten-low, vits-piper-de_DE-thorsten-medium
</ul>
<br/>
<span style="color:red;">Note:</span> For text-to-speech engine APKs, please see
<a href="https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html">https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html</a>
<br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/rhasspy/piper">piper</a> have their names prefixed
with <strong>vits-piper-</strong>. For instance, for the model
<strong>vits-piper-en_US-lessac-medium.apk</strong>, its original name
in <a href="https://github.com/rhasspy/piper">piper</a> is
<strong>en_US-lessac-medium.apk</strong>, which is available at
<a href="https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx">
https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx
</a><br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/MycroftAI/mimic3-voices">MycroftAI/mimic3-voices</a> have their names prefixed
with <strong>mimic3-</strong>.
<br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/coqui-ai/TTS">coqui-ai/TTS</a> have their names prefixed
with <strong>coqui-</strong>.
<br/><br/>
You can find many more models that have not been converted to <strong>sherpa-onnx</strong>
at
<a href="https://huggingface.co/rhasspy/piper-voices">https://huggingface.co/rhasspy/piper-voices</a>
<br/>
<br/>
<strong>Note about the license</strong> The code of Next-gen Kaldi is using
<a href="https://www.apache.org/licenses/LICENSE-2.0">Apache-2.0 license</a>. However,
we support models from different frameworks. Please check the license of your selected model.
<br/>
<br/>
<div/>
"""
if "-cn" not in filename:
print('filename', filename)
print(filename.split('/')[-1].split('.'))
cn_filename = filename.split('/')[-1].split('.')[0] + '-cn.html'
content += f"""
For Chinese users, please <a href="./{cn_filename}">visit this address</a>,
which replaces <a href="huggingface.co">huggingface.co</a> with <a href="hf-mirror.com">hf-mirror.com</a>
<br/>
<br/>
中国用户, 请访问<a href="./{cn_filename}">这个地址</a>
<br/>
<br/>
"""
with open(filename, "w") as f:
print(content, file=f)
for x in files:
x = x.replace("huggingface.co", "hf-mirror.com")
x = x.replace("resolve", "blob")
name = x.rsplit("/", maxsplit=1)[-1]
print(f'<a href="{x}" />{name}<br/>', file=f)
def to_file_linux(filename: str, files: List[str]):
content = r"""
<h1> Flutter Linux APPs for text-to-speech </h1>
This page lists the <strong>text-to-speech</strong> Linux APPs created with <a href="https://flutter.dev/">Flutter</a>
for <a href="http://github.com/k2-fsa/sherpa-onnx">sherpa-onnx</a>,
one of the deployment frameworks of <a href="https://github.com/k2-fsa">the Next-gen Kaldi project</a>.
<br/>
The name of an APP has the following rule:
<ul>
<li> sherpa-onnx-{version}-linux-{arch}-{lang}-tts-{model}.tar.bz2
</ul>
where
<ul>
<li> version: It specifies the current version, e.g., 1.10.11
<li> arch: Only x86_64 is supported for Linux at present.
<li> lang: The language supported by this APK, e.g., en for English, zh for Chinese, fr for French, de for German, es for Spanish
<li> model: The name of the model used in the APK, e.g., vits-ljs, vits-piper-de_DE-thorsten-low, vits-piper-de_DE-thorsten-medium
</ul>
<br/>
<span style="color:red;">Note:</span> For text-to-speech engine APKs, please see
<a href="https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html">https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html</a>
<br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/rhasspy/piper">piper</a> have their names prefixed
with <strong>vits-piper-</strong>. For instance, for the model
<strong>vits-piper-en_US-lessac-medium.apk</strong>, its original name
in <a href="https://github.com/rhasspy/piper">piper</a> is
<strong>en_US-lessac-medium.apk</strong>, which is available at
<a href="https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx">
https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx
</a><br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/MycroftAI/mimic3-voices">MycroftAI/mimic3-voices</a> have their names prefixed
with <strong>mimic3-</strong>.
<br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/coqui-ai/TTS">coqui-ai/TTS</a> have their names prefixed
with <strong>coqui-</strong>.
<br/><br/>
You can find many more models that have not been converted to <strong>sherpa-onnx</strong>
at
<a href="https://huggingface.co/rhasspy/piper-voices">https://huggingface.co/rhasspy/piper-voices</a>
<br/>
<br/>
<strong>Note about the license</strong> The code of Next-gen Kaldi is using
<a href="https://www.apache.org/licenses/LICENSE-2.0">Apache-2.0 license</a>. However,
we support models from different frameworks. Please check the license of your selected model.
<br/>
<br/>
<div/>
"""
if "-cn" not in filename:
print('filename', filename)
print(filename.split('/')[-1].split('.'))
cn_filename = filename.split('/')[-1].split('.')[0] + '-cn.html'
content += f"""
For Chinese users, please <a href="./{cn_filename}">visit this address</a>,
which replaces <a href="huggingface.co">huggingface.co</a> with <a href="hf-mirror.com">hf-mirror.com</a>
<br/>
<br/>
中国用户, 请访问<a href="./{cn_filename}">这个地址</a>
<br/>
<br/>
"""
with open(filename, "w") as f:
print(content, file=f)
for x in files:
x = x.replace("huggingface.co", "hf-mirror.com")
x = x.replace("resolve", "blob")
name = x.rsplit("/", maxsplit=1)[-1]
print(f'<a href="{x}" />{name}<br/>', file=f)
def to_file_macos_x64(filename: str, files: List[str]):
content = r"""
<h1> Flutter macoOS x86_64 APPs for text-to-speech </h1>
This page lists the <strong>text-to-speech</strong> macOS x86_64 APPs created with <a href="https://flutter.dev/">Flutter</a>
for <a href="http://github.com/k2-fsa/sherpa-onnx">sherpa-onnx</a>,
one of the deployment frameworks of <a href="https://github.com/k2-fsa">the Next-gen Kaldi project</a>.
<br/>
The name of an APP has the following rule:
<ul>
<li> sherpa-onnx-{version}-osx-{arch}-{lang}-tts-{model}.tar.bz2
</ul>
where
<ul>
<li> version: It specifies the current version, e.g., 1.10.11
<li> arch: This page is for x86_64. If you need arm64, please see <a href="./tts-macos-arm64.html">./tts-macos-arm64.html</a>
<li> lang: The language supported by this APK, e.g., en for English, zh for Chinese, fr for French, de for German, es for Spanish
<li> model: The name of the model used in the APK, e.g., vits-ljs, vits-piper-de_DE-thorsten-low, vits-piper-de_DE-thorsten-medium
</ul>
<br/>
<span style="color:red;">Note:</span> For text-to-speech engine APKs, please see
<a href="https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html">https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html</a>
<br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/rhasspy/piper">piper</a> have their names prefixed
with <strong>vits-piper-</strong>. For instance, for the model
<strong>vits-piper-en_US-lessac-medium.apk</strong>, its original name
in <a href="https://github.com/rhasspy/piper">piper</a> is
<strong>en_US-lessac-medium.apk</strong>, which is available at
<a href="https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx">
https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx
</a><br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/MycroftAI/mimic3-voices">MycroftAI/mimic3-voices</a> have their names prefixed
with <strong>mimic3-</strong>.
<br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/coqui-ai/TTS">coqui-ai/TTS</a> have their names prefixed
with <strong>coqui-</strong>.
<br/><br/>
You can find many more models that have not been converted to <strong>sherpa-onnx</strong>
at
<a href="https://huggingface.co/rhasspy/piper-voices">https://huggingface.co/rhasspy/piper-voices</a>
<br/>
<br/>
<strong>Note about the license</strong> The code of Next-gen Kaldi is using
<a href="https://www.apache.org/licenses/LICENSE-2.0">Apache-2.0 license</a>. However,
we support models from different frameworks. Please check the license of your selected model.
<br/>
<br/>
<div/>
"""
if "-cn" not in filename:
print('filename', filename)
print(filename.split('/')[-1].split('.'))
cn_filename = filename.split('/')[-1].split('.')[0] + '-cn.html'
content += f"""
For Chinese users, please <a href="./{cn_filename}">visit this address</a>,
which replaces <a href="huggingface.co">huggingface.co</a> with <a href="hf-mirror.com">hf-mirror.com</a>
<br/>
<br/>
中国用户, 请访问<a href="./{cn_filename}">这个地址</a>
<br/>
<br/>
"""
with open(filename, "w") as f:
print(content, file=f)
for x in files:
x = x.replace("huggingface.co", "hf-mirror.com")
x = x.replace("resolve", "blob")
name = x.rsplit("/", maxsplit=1)[-1]
print(f'<a href="{x}" />{name}<br/>', file=f)
def to_file_macos_arm64(filename: str, files: List[str]):
content = r"""
<h1> Flutter macoOS arm64 APPs for text-to-speech </h1>
This page lists the <strong>text-to-speech</strong> macOS arm64 APPs created with <a href="https://flutter.dev/">Flutter</a>
for <a href="http://github.com/k2-fsa/sherpa-onnx">sherpa-onnx</a>,
one of the deployment frameworks of <a href="https://github.com/k2-fsa">the Next-gen Kaldi project</a>.
<br/>
The name of an APP has the following rule:
<ul>
<li> sherpa-onnx-{version}-osx-{arch}-{lang}-tts-{model}.tar.bz2
</ul>
where
<ul>
<li> version: It specifies the current version, e.g., 1.10.11
<li> arch: This page is for arm64. If you need x86_64, please see <a href="./tts-macos-x64.html">./tts-macos-x64.html</a>
<li> lang: The language supported by this APK, e.g., en for English, zh for Chinese, fr for French, de for German, es for Spanish
<li> model: The name of the model used in the APK, e.g., vits-ljs, vits-piper-de_DE-thorsten-low, vits-piper-de_DE-thorsten-medium
</ul>
<br/>
<span style="color:red;">Note:</span> For text-to-speech engine APKs, please see
<a href="https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html">https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html</a>
<br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/rhasspy/piper">piper</a> have their names prefixed
with <strong>vits-piper-</strong>. For instance, for the model
<strong>vits-piper-en_US-lessac-medium.apk</strong>, its original name
in <a href="https://github.com/rhasspy/piper">piper</a> is
<strong>en_US-lessac-medium.apk</strong>, which is available at
<a href="https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx">
https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx
</a><br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/MycroftAI/mimic3-voices">MycroftAI/mimic3-voices</a> have their names prefixed
with <strong>mimic3-</strong>.
<br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/coqui-ai/TTS">coqui-ai/TTS</a> have their names prefixed
with <strong>coqui-</strong>.
<br/><br/>
You can find many more models that have not been converted to <strong>sherpa-onnx</strong>
at
<a href="https://huggingface.co/rhasspy/piper-voices">https://huggingface.co/rhasspy/piper-voices</a>
<br/>
<br/>
<strong>Note about the license</strong> The code of Next-gen Kaldi is using
<a href="https://www.apache.org/licenses/LICENSE-2.0">Apache-2.0 license</a>. However,
we support models from different frameworks. Please check the license of your selected model.
<br/>
<br/>
<div/>
"""
if "-cn" not in filename:
print('filename', filename)
print(filename.split('/')[-1].split('.'))
cn_filename = filename.split('/')[-1].split('.')[0] + '-cn.html'
content += f"""
For Chinese users, please <a href="./{cn_filename}">visit this address</a>,
which replaces <a href="huggingface.co">huggingface.co</a> with <a href="hf-mirror.com">hf-mirror.com</a>
<br/>
<br/>
中国用户, 请访问<a href="./{cn_filename}">这个地址</a>
<br/>
<br/>
"""
with open(filename, "w") as f:
print(content, file=f)
for x in files:
x = x.replace("huggingface.co", "hf-mirror.com")
x = x.replace("resolve", "blob")
name = x.rsplit("/", maxsplit=1)[-1]
print(f'<a href="{x}" />{name}<br/>', file=f)
def to_file_windows(filename: str, files: List[str]):
content = r"""
<h1> Flutter Windows APPs for text-to-speech </h1>
This page lists the <strong>text-to-speech</strong> Windows APPs created with <a href="https://flutter.dev/">Flutter</a>
for <a href="http://github.com/k2-fsa/sherpa-onnx">sherpa-onnx</a>,
one of the deployment frameworks of <a href="https://github.com/k2-fsa">the Next-gen Kaldi project</a>.
<br/>
The name of an APP has the following rule:
<ul>
<li> sherpa-onnx-{version}-win-{arch}-{lang}-tts-{model}.tar.bz2
</ul>
where
<ul>
<li> version: It specifies the current version, e.g., 1.10.11
<li> arch: Only x64 is supported for Windows at present.
<li> lang: The language supported by this APK, e.g., en for English, zh for Chinese, fr for French, de for German, es for Spanish
<li> model: The name of the model used in the APK, e.g., vits-ljs, vits-piper-de_DE-thorsten-low, vits-piper-de_DE-thorsten-medium
</ul>
<br/>
<span style="color:red;">Note:</span> For text-to-speech engine APKs, please see
<a href="https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html">https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html</a>
<br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/rhasspy/piper">piper</a> have their names prefixed
with <strong>vits-piper-</strong>. For instance, for the model
<strong>vits-piper-en_US-lessac-medium.apk</strong>, its original name
in <a href="https://github.com/rhasspy/piper">piper</a> is
<strong>en_US-lessac-medium.apk</strong>, which is available at
<a href="https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx">
https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx
</a><br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/MycroftAI/mimic3-voices">MycroftAI/mimic3-voices</a> have their names prefixed
with <strong>mimic3-</strong>.
<br/><br/>
<span style="color:red;">Note:</span> Models from
<a href="https://github.com/coqui-ai/TTS">coqui-ai/TTS</a> have their names prefixed
with <strong>coqui-</strong>.
<br/><br/>
You can find many more models that have not been converted to <strong>sherpa-onnx</strong>
at
<a href="https://huggingface.co/rhasspy/piper-voices">https://huggingface.co/rhasspy/piper-voices</a>
<br/>
<br/>
<strong>Note about the license</strong> The code of Next-gen Kaldi is using
<a href="https://www.apache.org/licenses/LICENSE-2.0">Apache-2.0 license</a>. However,
we support models from different frameworks. Please check the license of your selected model.
<br/>
<br/>
<div/>
"""
if "-cn" not in filename:
print('filename', filename)
print(filename.split('/')[-1].split('.'))
cn_filename = filename.split('/')[-1].split('.')[0] + '-cn.html'
content += f"""
For Chinese users, please <a href="./{cn_filename}">visit this address</a>,
which replaces <a href="huggingface.co">huggingface.co</a> with <a href="hf-mirror.com">hf-mirror.com</a>
<br/>
<br/>
中国用户, 请访问<a href="./{cn_filename}">这个地址</a>
<br/>
<br/>
"""
with open(filename, "w") as f:
print(content, file=f)
for x in files:
x = x.replace("huggingface.co", "hf-mirror.com")
x = x.replace("resolve", "blob")
name = x.rsplit("/", maxsplit=1)[-1]
print(f'<a href="{x}" />{name}<br/>', file=f)
def get_platform(allFiles: List[str], pattern: str):
ans = []
for f in allFiles:
if pattern in f:
ans.append(f)
return ans
def main():
app = get_all_files("flutter/tts", suffix="*.tar.bz2")
macos = get_platform(app, 'macos')
macos_x64 = get_platform(macos, 'x86_64')
macos_arm64 = get_platform(macos, 'arm64')
windows = get_platform(app, 'windows')
linux = get_platform(app, 'linux')
android = get_platform(app, 'android')
android = sorted(android, key=sort_by_app, reverse=False)
to_file_android("./tts-android.html", android)
to_file_android("./tts-android-cn.html", android)
linux = sorted(linux, key=sort_by_app, reverse=False)
to_file_linux("./tts-linux.html", linux)
to_file_linux("./tts-linux-cn.html", linux)
macos_x64 = sorted(macos_x64, key=sort_by_app, reverse=False)
to_file_macos_x64("./tts-macos-x64.html", macos_x64)
to_file_macos_x64("./tts-macos-x64-cn.html", macos_x64)
macos_arm64 = sorted(macos_arm64, key=sort_by_app, reverse=False)
to_file_macos_arm64("./tts-macos-arm64.html", macos_arm64)
to_file_macos_arm64("./tts-macos-arm64-cn.html", macos_arm64)
windows = sorted(windows, key=sort_by_app, reverse=False)
to_file_windows("./tts-win.html", windows)
to_file_windows("./tts-win-cn.html", windows)
if __name__ == "__main__":
main()
|