这样做,有点不太好,只是交流。我用的是python3,这里需要安装wxpy库
from wxpy import *
bot = Bot(console_qr=True, cache_path=True) #创建wx对象
my_friend = my_friend = bot.friends() #查找所有好友
for i in my_friend: #遍历好友,发送短信
name = i.name #获取好友名字,保证每个人发送的都不一样。要注意有备注的,要不然发出去的是被人的网名,就不好了
i.send(name+'祝福短信的内容')
print("执行完成")