编程语言
首页 > 编程语言> > python 调用widows 微信快捷键,进行自动发送微信消息

python 调用widows 微信快捷键,进行自动发送微信消息

作者:互联网

原理说明

可以代码执行windows按键,然后调用微信程序的快捷键,然后进行发送相关消息,不失于一个批处理程序

扩展

可以对程序里面的一些数据进行维护后变更,比如需要批量发送的微信彭勇,用户名,需要发送的内容,可以用表格进行维护后,执行程序取值发送

import time
import pyautogui as pg
import pyperclip as pc


class SendMsg(object):

    def __init__(self):
        self.name = 'admin'
        self.msg = '发送语句'

    def send_msg(self):
        # 操作间隔为1秒
        pg.PAUSE = 1.5
        pg.hotkey('ctrl', 'alt', 'c')
        pg.hotkey('ctrl', 'f')

        # 找到好友
        pc.copy(self.name)
        pg.hotkey('ctrl', 'v')
        pg.press('enter')

        # 发送消息
        pc.copy(self.msg)
        pg.hotkey('ctrl', 'v')
        pg.press('enter')

        # 隐藏微信
        time.sleep(1)
        pg.hotkey('ctrl', 'alt', 'c')


if __name__ == '__main__':

    s = SendMsg()
    for i in range(3):
        # time.sleep(1)
        s.send_msg()

标签:__,ctrl,python,微信,self,快捷键,pg,hotkey
来源: https://www.cnblogs.com/darling331/p/16309038.html