1 importos2 importwin32gui, win32api, win32con, win32com3 from win32com.client importDispatch4 from PIL importImageGrab,Image5 from time importsleep6 importpyperclip7
8 #调用win32api的模拟点击功能实现ctrl+v粘贴快捷键
9 defctrlV():10 win32api.keybd_event(17,0,0,0) #ctrl键位码是17
11 win32api.keybd_event(86,0,0,0) #v键位码是86
12 win32api.keybd_event(86,0,win32con.KEYEVENTF_KEYUP,0) #释放按键
13 win32api.keybd_event(17,0,win32con.KEYEVENTF_KEYUP,0)14
15 #调用win32api的模拟点击功能实现alt+s微信发送快捷键 (可以根据自己微信发送快捷键是什么来进行调整)
16 defaltS():17 win32api.keybd_event(18, 0, 0, 0) #Alt
18 win32api.keybd_event(83,0,0,0) #s
19 win32api.keybd_event(83,0,win32con.KEYEVENTF_KEYUP,0) #释放按键
20 win32api.keybd_event(18,0,win32con.KEYEVENTF_KEYUP,0)21
22 #调用win32gui调用桌面窗口,获取指定窗口句柄id,激活窗口 ,向函数传递窗口名称to_weixin
23 defwx_send(to_weixin):24 for i inrange(0,len(to_weixin)):25 hw = win32gu