微信的一个库 可以拿到微信的所有好友信息,利用UserName的信息给指定的用户发信息,在利用时间模块可以在指定的间隔时间给用户发送信息,运行的时候需要用微信扫码下二维码登录
import itchat
# 登录微信
itchat.auto_login(hotReload=True)
# 获取好友信息
friends = itchat.get_friends()
print(list)
for items in friends:
firend = dict(items)
print(firend)
# 群发
# itchat.send('哈喽,我在用python给你发信息呢',firend[UserName])
import time
while True:
# time.sleep(1)
# itchat.send('哈喽,我在用python给你发信息呢~要不要试一下轰炸呼死你',friends[1]['UserName'])
print(friends['UserName'])
# itchat.send('哈哈哈哈成功!', "@c1902561fdea246959d52f8d128553b625675c857d69da2242229fa611399f0e")
itchat.send('轰炸信息来啦!', "")
网友评论