wechat mass msg delivery tool, it can send out same message to all of your friend, even more than 200
import itchat
import pandas as pd
# 登录,执行本函数,itchat自动把二维码下载到本地并打开,手机微信扫描即可。
itchat.auto_login()
friendList = itchat.get_friends(update=True)[1:]
len(friendList)
import time SINCERE_WISH = u'*与家人给您拜年!辞旧迎新,感谢过去各位的帮助与支持,新年到,祝大家身体健康,万事如意!'
itchat.send( SINCERE_WISH, 'filehelper')
count = 0
for friend in friendList:
itchat.send( SINCERE_WISH, friend['UserName'])
time.sleep(5)
count += 1
print("----end----")