- 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) # 代表三秒后程序开始运行,你需要在限定时间内完成消息框定位单击操作
复制代码 免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作! |