import pyautogui
import pyperclip
import time
# 内容准备
def get_msg():
# 想要发送的内容,下一条用空格隔开
contents = "早安~ 晚安mua~"
return contents.split(" ")
# 消息发送
def send(msg):
pyperclip.copy(msg) # 复制需要发送的内容到粘贴板
pyautogui.hotkey('ctrl', 'v') # 模拟键盘 ctrl + v 粘贴内容
pyautogui.press('enter') # 发送消息
# 发送信息给朋友
def send_msg(friend):
pyautogui.hotkey('ctrl', 'alt', 'w') # Ctrl + alt + w 打开微信
pyautogui.hotkey('ctrl', 'f') # 搜索好友
pyperclip.copy(friend) # 复制好友昵称到粘贴板
pyautogui.hotkey('ctrl', 'v') # 模拟键盘 ctrl + v 粘贴
time.sleep(1)
pyautogui.press('enter') # 回车进入好友消息界面
# 一条一条发送消息
for msg in get_msg():
send(msg)
time.sleep(10) # 间隔时间自行设置
# 发送消息对象
if __name__ == '__main__':
friend_name = "思考者" # 对方用户名称
send_msg(friend_name)
注意事项:脚本运行期间,切忌你脚本sleep时间,不要刚好你点别的消息框,会非常尴尬…脚趾抓地…
你能想象我只是查看群消息。。。
但是发了晚安mua~
哭了啊,我只是测试脚本能不能跑起来啊。。。。
血的教训o(╥﹏╥)o