# -*- coding: utf-8 -*- import sys import time import ntchat wechat = ntchat.WeChat() # 打开pc微信, smart: 是否管理已经登录的微信 wechat.open(smart=True) # 等待登录 wechat.wait_login() # 向文件助手发送一条消息 wechat.send_text(to_wxid="filehelper", content="hello, filehelper") # 以下是为了让程序不结束,如果有用于PyQt等有主循环消息的框架,可以去除下面代码 try: while True: time.sleep(0.5) except KeyboardInterrupt: ntchat.exit_() sys.exit()