一.安装itchat
1.运行cmd,输入pip install itchat
2.输入 pip list ,看是否存在itchat
二.本地导入
1.File>Setting
2.Project untitled>project Interpreter>点击 +
3.输入 itchat>点击Install Package>完成
三.编写代码
# -*- coding: utf-8 -*-
import itchat
import time# 登录
itchat.auto_login()
# 消息循环次数
i = 1
friends_list = itchat.get_friends(update=True)
# 把AAAA替换为 好友在你微信列表的名称(在通讯录找到并查看)
name = itchat.search_friends(name=u'AAAA')
sendName = name[0]["UserName"]message_concent = "生日快乐!"
while i<=19:itchat.send(message_concent,sendName)time.sleep(0.5)print('成功发送 %s 条消息' % i)i+=1
可能存在微信Web限制登录的情况,请自行承担此后果。