Python自动化实现微信自动回复(关键词自动回复)
本帖最后由 yuupuu 于 2022-9-9 15:09 编辑微信自动回复其实有很多实现的办法,例如ipad协议、Hook微信是比较常见的,ipad协议价格昂贵不适合个人使用,Hook微信因为是拦截内存,具有封号的风险,虽然风险比较小,但这个问题仍然存在,而且Hook微信依赖版本,一旦版本上升级又得重新去写,除非你自己一直保持这个版本的使用。
最近在学习自动化,于是想拿微信来练练手,所以这边就做了一个自动回复的小功能,不过这个还是有一定的问题的:
1、需要windows保持开机
2、需要微信保持在前台显示
代码
import pandas as pd
import numpy as np
from uiautomation import WindowControl, MenuControl
import win32gui
import win32con
import pyautogui
# 获取窗口句柄并打开窗口
def getHwnd():
hwnd = win32gui.FindWindow('WeChatMainWndForPC','微信')
win32gui.ShowWindow(hwnd, win32con.SW_SHOWMINIMIZED)
win32gui.ShowWindow(hwnd, win32con.SW_SHOWNORMAL)
win32gui.ShowWindow(hwnd, win32con.SW_SHOW)
win32gui.SetForegroundWindow(hwnd)
return hwnd
# 复位(自动回复之后自动点击消息列表第二个聊天窗口)
def fuwei(hwnd):
left, top, right, bottom = win32gui.GetWindowRect(hwnd)
leftpoint = left+155
toppoint = top+150
pyautogui.moveTo(leftpoint, toppoint)
pyautogui.click()
return '已复位'
getHwnd()
wx = WindowControl(Name="微信")
wx.SwitchToThisWindow()
hw = wx.ListControl(Name="会话")
# 持续循环监听未读消息
while True:
we = hw.TextControl(searchDepth=4)
# 如果存在未读消息
if we.Name:
we.Click(simulateMove=False)
# 获取当前最后一条消息
last_msg = wx.ListControl(Name='消息').GetChildren()[-1].Name
if last_msg == '你好':
wx.SendKeys('你好,才是真的好{ENTER}')
fuwei(getHwnd())
elif last_msg == '123':
wx.SendKeys('456{ENTER}')
fuwei(getHwnd())
elif last_msg == '测试':
wx.SendKeys('测试成功{ENTER}')
fuwei(getHwnd())
else:
wx.SendKeys('无法匹配{ENTER}')
fuwei(getHwnd())
实现思路
实现起来也是极其容易的,使用uiautomation这个库来识别微信电脑版的控件内容,通过持续循环来检测消息列表是否存在未读消息,如果存在未读消息,那么就自动点击进入这个消息的窗口,然后检索窗口最后一条消息,检索自动回复的关键词库是否有这个关键词,如果存在此关键词,则直接回复。
视频演示
https://share.weiyun.com/A3lxVd8B
比较粗糙,主要是分享一下实现原理,以后在自动化学习这一块熟练了我再做个有界面的比较稳定的工具出来~ leonis777 发表于 2022-9-12 14:17
测试了一下可用,但有问题运行一会儿就出错退出,出错信息如下:
那是因为这个代码并不完善,对查找元素未进行异常抛出处理, 且窗口最小化或不在前置的情况下,怎么复位也没有进行处理 。 测试了一下可用,但有问题运行一会儿就出错退出,出错信息如下:
2022-09-12 14:13:08.116 main.py <module> -> Find Control Timeout(10s): {ControlType: TextControl}
Traceback (most recent call last):
File "main.py", line 35, in <module>
if we.Name:
File "C:\Users\Administrator\AppData\Local\Programs\Python\Python37-32\lib\site-packages\uiautomation\uiautomation.py", line 6087, in Name
return self.Element.CurrentName or '' # CurrentName may be None
File "C:\Users\Administrator\AppData\Local\Programs\Python\Python37-32\lib\site-packages\uiautomation\uiautomation.py", line 6223, in Element
self.Refind(maxSearchSeconds=TIME_OUT_SECOND, searchIntervalSeconds=self.searchInterval)
File "C:\Users\Administrator\AppData\Local\Programs\Python\Python37-32\lib\site-packages\uiautomation\uiautomation.py", line 6474, in Refind
raise LookupError('Find Control Timeout({}s): {}'.format(maxSearchSeconds, self.GetSearchPropertiesStr()))
LookupError: Find Control Timeout(10s): {ControlType: TextControl} 大佬能不能加一个能发送图片的功能啊 我最近也在考虑如何用uiautomation做微信自动化回复,您的思路可以借鉴,感谢分享! 会不会被官方检测到封号? 可以啊,这个不容易被微信检测到 操作软件,不拦截,不要操作过快,安全 谢谢分享 看着很好玩的样子
sgw1970 发表于 2022-9-9 15:37
会不会被官方检测到封号?
不会,因为是模拟点击,解析UI控件内容。 牛,可惜不会PY {:301_977:} 厉害…谢谢大佬分享