From 8dd71c90000cb8198ebe60557648982d958a4504 Mon Sep 17 00:00:00 2001 From: Changhua Date: Sun, 26 Nov 2023 23:14:47 +0800 Subject: [PATCH] Fix host --- clients/python/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/python/test.py b/clients/python/test.py index 94adad3..6587b9c 100644 --- a/clients/python/test.py +++ b/clients/python/test.py @@ -26,7 +26,7 @@ def process_msg(wcf: Wcf): def main(): LOG.info("Start demo...") - wcf = Wcf(host="192.168.1.104", debug=True) # 默认连接本地服务 + wcf = Wcf(debug=True) # 默认连接本地服务 sleep(5) # 等微信加载好,以免信息显示异常 LOG.info(f"已经登录: {True if wcf.is_login() else False}")