Track bundled vendor runtime sources
Some checks failed
CI / main (push) Has been cancelled
CI / release-e2e (push) Has been cancelled

This commit is contained in:
2026-07-07 10:05:50 +08:00
parent fbe179ab53
commit 52636c91ae
2111 changed files with 1850012 additions and 14 deletions

View File

@@ -0,0 +1,24 @@
from __future__ import annotations
import subprocess
import sys
from pathlib import Path
from conf import BASE_DIR
if __name__ == "__main__":
# 建议直接在本地真实终端里运行这个脚本。
# 如果终端里的二维码显示不完整,可以打开当前目录下的 qrcode.png 扫码。
cli_path = Path(BASE_DIR) / "sau_cli.py"
subprocess.run(
[
sys.executable,
str(cli_path),
"bilibili",
"login",
"--account",
"creator",
],
check=True,
)