赞
踩
time.sleep(5)
itchat.send(“小助手,你好呀”, toUserName=“filehelper”)
itchat.run()
效果如下:
比如要自动给张三发送消息,代码如下:
#码登录个人微信账号
import itchat
itchat.auto_login(hotReload=True)#hotReload= True可以暂存登录状态,退出后一定时间内重启不用再次扫码登录。
#发送消息给特定好友
itchat.auto_login(hotReload=True)
friends_list =itchat.get_friends(update=True)
users =itchat.search_friends(name=u’张三’)
userName = users[0][“UserName”]
itchat.send(‘正在测试微信机器人…’ ,toUserName = userName)
效果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。