• python实现按钮键盘交互发微信消息


    import time
    from pynput.keyboard import Key, Controller as key_cl
    from pynput.mouse import Button, Controller as mouse_cl
    
    
    def keyboard_input(string):
        keyboard = key_cl()
        keyboard.type(string)
    
    
    def mouse_click():
        mouse = mouse_cl()
        mouse.press(Button.left)
        mouse.release(Button.left)
    
    
    def send_message(number, string):
        print("The program will be excuted in 3 seconds")
        time.sleep(3)
        keyboard = key_cl()
        mouse_click()
        for i in range(number):
            print(i)
            keyboard_input(string)
            time.sleep(0.3)
            keyboard.press(Key.ctrl)
            keyboard.press(Key.enter)
            keyboard.release(Key.enter)
            keyboard.release(Key.ctrl)
    
    
    if __name__ == "__main__":
        s = "hello"
        send_message(10, s)  # 10为发送次数,s为所要发送消息
        time.sleep(1)  # 代表三秒后程序开始运行,你需要在限定时间内完成消息框定位单击操作
    
    
  • 相关阅读:
    C语言I博客作业01
    C语言I博客作业09
    C语言I博客作业08
    C语言I博客作业07
    C语言I博客作业06
    C语言I博客作业05
    C语言II博客作业04
    C语言II博客作业03
    C语言II—作业02
    C语言II博客作业01
  • 原文地址:https://www.cnblogs.com/ezhar/p/16411158.html
Copyright © 2020-2023  润新知