diff --git a/Util/Command.py b/Util/Command.py index 3c2dca7..f7c0422 100644 --- a/Util/Command.py +++ b/Util/Command.py @@ -20,46 +20,11 @@ class Command: def __init__(self): - # 打印logo - self.showLogo() - self.showNote() # 初始化配置文件 self.cfgs = Util.Config() # 检查配置文件是否存在 self.cfg = self.cfgs.check() - def showLogo(self): - print(''' - ████████╗██╗██╗ ██╗████████╗ ██████╗ ██╗ ██╗██████╗ ██████╗ ██╗ ██╗███╗ ██╗██╗ ██████╗ █████╗ ██████╗ - ╚══██╔══╝██║██║ ██╔╝╚══██╔══╝██╔═══██╗██║ ██╔╝██╔══██╗██╔═══██╗██║ ██║████╗ ██║██║ ██╔═══██╗██╔══██╗██╔══██╗ - ██║ ██║█████╔╝ ██║ ██║ ██║█████╔╝ ██║ ██║██║ ██║██║ █╗ ██║██╔██╗ ██║██║ ██║ ██║███████║██║ ██║ - ██║ ██║██╔═██╗ ██║ ██║ ██║██╔═██╗ ██║ ██║██║ ██║██║███╗██║██║╚██╗██║██║ ██║ ██║██╔══██║██║ ██║ - ██║ ██║██║ ██╗ ██║ ╚██████╔╝██║ ██╗██████╔╝╚██████╔╝╚███╔███╔╝██║ ╚████║███████╗╚██████╔╝██║ ██║██████╔╝ - ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚══╝╚══╝ ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚═════╝ - ''') - - def showNote(self): - print("#" * 120) - print( - """ - TikTokDownload V1.3.0 - 使用说明: - 1、本程序目前支持命令行调用和配置文件操作,GUI预览版本已经发布 - 2、命令行操作方法:1)将本程序路径添加到环境变量 - 2)控制台输入 TikTokMulti -u https://v.douyin.com/jqwLHjF/ - - 3、配置文件操作方法:1)运行软件前先打开目录下 conf.ini 文件配置用户主页和音乐下载模式 - 2)按照控制台输出信息操作 - - 4、如有您有任何bug或者意见反馈请在 https://github.com/Johnserf-Seed/TikTokDownload/issues 发起 - 5、GUI预览版本现已发布,操作更简单 https://github.com/Johnserf-Seed/TikTokDownload/tags 下载 - - 注意: 目前已经支持app内分享短链和web端长链识别。 - """ - ) - print("#" * 120) - print('\r') - def argument(self): """获取命令行参数 diff --git a/Util/__init__.py b/Util/__init__.py index 321b886..0d0b04d 100644 --- a/Util/__init__.py +++ b/Util/__init__.py @@ -72,6 +72,36 @@ def replaceT(obj): # new = re.sub(reSub, "_", obj, 0, re.MULTILINE) return new +print(''' + ████████╗██╗██╗ ██╗████████╗ ██████╗ ██╗ ██╗██████╗ ██████╗ ██╗ ██╗███╗ ██╗██╗ ██████╗ █████╗ ██████╗ + ╚══██╔══╝██║██║ ██╔╝╚══██╔══╝██╔═══██╗██║ ██╔╝██╔══██╗██╔═══██╗██║ ██║████╗ ██║██║ ██╔═══██╗██╔══██╗██╔══██╗ + ██║ ██║█████╔╝ ██║ ██║ ██║█████╔╝ ██║ ██║██║ ██║██║ █╗ ██║██╔██╗ ██║██║ ██║ ██║███████║██║ ██║ + ██║ ██║██╔═██╗ ██║ ██║ ██║██╔═██╗ ██║ ██║██║ ██║██║███╗██║██║╚██╗██║██║ ██║ ██║██╔══██║██║ ██║ + ██║ ██║██║ ██╗ ██║ ╚██████╔╝██║ ██╗██████╔╝╚██████╔╝╚███╔███╔╝██║ ╚████║███████╗╚██████╔╝██║ ██║██████╔╝ + ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚══╝╚══╝ ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚═════╝ + ''') + +print("#" * 120) +print( + """ + TikTokDownload V1.3.0 + 使用说明: + 1、本程序目前支持命令行调用和配置文件操作,GUI预览版本已经发布 + 2、命令行操作方法:1)将本程序路径添加到环境变量 + 2)控制台输入 TikTokMulti -u https://v.douyin.com/jqwLHjF/ + + 3、配置文件操作方法:1)运行软件前先打开目录下 conf.ini 文件配置用户主页和音乐下载模式 + 2)按照控制台输出信息操作 + + 4、如有您有任何bug或者意见反馈请在 https://github.com/Johnserf-Seed/TikTokDownload/issues 发起 + 5、GUI预览版本现已发布,操作更简单 https://github.com/Johnserf-Seed/TikTokDownload/tags 下载 + + 注意: 目前已经支持app内分享短链和web端长链识别。 + """ + ) +print("#" * 120) +print('\r') + if (platform.system() == 'Windows'): sprit = '\\' # 💻