docs(example.py): 更新二次开发示例代码

This commit is contained in:
2025-02-15 14:50:59 +08:00
parent 459e9b54f5
commit cd036582c0
6 changed files with 124 additions and 86 deletions

View File

@@ -1,11 +1,11 @@
from pathlib import Path
VERSION_MAJOR = 2
VERSION_MINOR = 4
VERSION_BETA = False
VERSION_MINOR = 5
VERSION_BETA = True
ROOT = Path(__file__).resolve().parent.parent.parent
PROJECT = f"XHS-Downloader V{VERSION_MAJOR}.{
VERSION_MINOR}{" Beta" if VERSION_BETA else ""}"
VERSION_MINOR} {"Beta" if VERSION_BETA else "Stable"}"
REPOSITORY = "https://github.com/JoeanAmier/XHS-Downloader"
LICENCE = "GNU General Public License v3.0"