欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python实现微信小程序自动回复

程序员文章站 2022-12-24 07:59:14
本文是使用python的itchat模块进行微信私聊消息以及群消息的自动回复功能,必须在自己的微信中添加微信号xiaoice-ms(微软的微信机器人)才能实现,直接复制代码...

本文是使用python的itchat模块进行微信私聊消息以及群消息的自动回复功能,必须在自己的微信中添加微信号xiaoice-ms(微软的微信机器人)才能实现,直接复制代码运行之后扫一扫二维码即可,经过测试,该程序能够保持几小时的时间。

实现原理,将别人发送给你的消息转发给ai小冰,然后再将ai的回复转回给那个人。

群消息也是如此,此外还添加了新年问候语,是否与他人进行ai聊天等功能。不过只能实现文本消息以及微信自带表情的转发,不能转发表情、语音等。

# -*-coding:utf-8-*-
import itchat
import itchat.content as itcontent

# 登录网页微信,hotreload=true 能让登录时间加长
itchat.auto_login(hotreload=true)

# 记录公众号机器人小冰的username
mps = itchat.search_mps(name='小冰')
ai = mps[0]['username']
# print(ai)

# 记录自己的username,不然发送消息会发两遍
username = itchat.get_friends()
user = username[0]['username']
# print(username)

# 记录好友列表里好友的 username
friendsname = [friend['username'] for friend in username if friend['username'] != user]
# print(friendsname)

groupname = itchat.get_chatrooms()
groups = [group['username'] for group in groupname]


# 这个说来话长~~,有兴趣的可以去上网查查
@itchat.msg_register(itcontent.text, isfriendchat=true, ismpchat=true, isgroupchat=true)
def simple_reply(msg, friendlist=[]):
  fromuser = msg['fromusername']

  # 如果是ai而且列表不为空,就将ai发给自己的消息转发给发送消息者
  if msg['fromusername'] == ai and friendlist:
    # print(msg['fromusername'])
    itchat.send(msg['text'], tousername=friendlist[-1])

  elif fromuser in friendsname:
    if '新年' in msg['text']:
      return '新年快乐,祝您身体健康,万事胜意。'

    # 记录发送消息者入friendlist中
    elif fromuser not in friendlist and msg['text'] == '小小冰真漂亮':
      friendlist.append(fromuser)
      return '通信建立成功'

    # 第一次发送消息过来,回复以下内容
    elif fromuser in friendlist:
      if msg['text'] in ['小小冰再见', '小小冰晚安', '小小冰下次聊']:
        friendlist.remove(fromuser)
        return '再见,和您聊天十分开心,希望您今天过得愉快!'
      else:
        friendlist.append(fromuser)
        itchat.send(msg['text'], tousername=ai)

    else:
      text = '''mr.d先生现在不在,我是助手ai,有要事请拨打号码:xxxxxxxxxxx。如果想和我聊天,那就大声地说"小小冰真漂亮
            (回复‘小小冰再见/小小冰晚安/小小冰下次聊'可结束此次聊天。)"'''
      return text

  elif fromuser in groups:
    if msg.isat:
      if '新年' in msg['content']:
        return '新年快乐,祝您身体健康,万事胜意。'
      elif fromuser not in friendlist and msg['content'] == '小小冰真漂亮':
        friendlist.append(fromuser)
        return '通信建立成功'
      elif fromuser in friendlist:
        if msg['content'] in ['小小冰再见', '小小冰晚安', '小小冰下次聊']:
          friendlist.remove(fromuser)
          return '再见,和您聊天十分开心,希望您今天过得愉快!'
        else:
          friendlist.append(fromuser)
          itchat.send(msg['content'], tousername=ai)
      else:
        text = '''mr.d先生现在不在,我是助手ai,有要事请拨打号码:xxxxxxxxxxx。如果想和我聊天,那就大声地说"小小冰真漂亮
            (回复‘小小冰再见/小小冰晚安/小小冰下次聊'可结束此次聊天。)"'''
        return text

    elif msg['text'] == '小小冰真漂亮':
      friendlist.append(fromuser)
      return '通信建立成功'

    elif fromuser in friendlist:
      if msg['text'] in ['小小冰再见', '小小冰晚安', '小小冰下次聊']:
        friendlist.clear()
        return '再见,和您聊天十分开心,希望您今天过得愉快!'
      elif '新年' in msg['text']:
        return '新年快乐,祝您身体健康,万事胜意。'
      else:
        friendlist.append(fromuser)
        itchat.send(msg['text'], tousername=ai)

        # 如果是自己发送消息,则清空列表
  elif fromuser == user:
    friendlist.clear()

  # 其他公众号信息,就通知一声给微信文件助手
  else:
    itchat.send('公众号信息', tousername='filehelper')


@itchat.msg_register([itcontent.picture, itcontent.recording, itcontent.video, itcontent.map], isfriendchat=true,
           isgroupchat=true, ismpchat=true)
def return_text(msg):
  text = '我不具备识别语音与图片等功能,请说普通话。'
  return text


itchat.run()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。