From 545dcdf446781c8315a265babbfb3db0907e4362 Mon Sep 17 00:00:00 2001 From: xaoyaoo Date: Fri, 12 Jan 2024 20:25:56 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BD=BF=E7=94=A8=E5=91=BD=E4=BB=A4=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E7=89=88=E6=9C=AC=E6=8F=90=E7=A4=BA=EF=BC=8C=E6=96=B9?= =?UTF-8?q?=E4=BE=BF=E6=8E=92=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pywxdump/cli.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pywxdump/cli.py b/pywxdump/cli.py index b351098..e32d22c 100644 --- a/pywxdump/cli.py +++ b/pywxdump/cli.py @@ -41,6 +41,7 @@ class MainBiasAddr(): return sb_bias_addr def run(self, args): + print(f"[*] PyWxDump v{pywxdump.__version__}") # 从命令行参数获取值 mobile = args.mobile name = args.name @@ -109,6 +110,7 @@ class MainDecrypt(): return sb_decrypt def run(self, args): + print(f"[*] PyWxDump v{pywxdump.__version__}") # 从命令行参数获取值 key = args.key db_path = args.db_path @@ -141,6 +143,7 @@ class MainMerge(): return sb_merge def run(self, args): + print(f"[*] PyWxDump v{pywxdump.__version__}") # 从命令行参数获取值 db_path = args.db_path out_path = args.out_path @@ -194,6 +197,7 @@ class MainShowChatRecords(): return sb_decrypt def run(self, args): + print(f"[*] PyWxDump v{pywxdump.__version__}") # merge和(msg_path,micro_path,media_path) 二选一 if (not args.merge_path) or (not args.msg_path and not args.micro_path and not args.media_path): print("[-] 请输入数据库路径([merge_path] or [msg_path,micro_path,media_path])") @@ -302,6 +306,7 @@ class MainExportChatRecords(): return sb_decrypt def run(self, args): + print(f"[*] PyWxDump v{pywxdump.__version__}") # 从命令行参数获取值 t = args.type @@ -354,6 +359,7 @@ class MainAll(): return sb_all def run(self, args): + print(f"[*] PyWxDump v{pywxdump.__version__}") # 获取微信信息 save_path = args.save_path online = args.online