资源简介
代码片段和文件信息
import sys
import imp
imp.reload(sys)
import itchat
from itchat.content import *
# 自动回复文本等类别消息
# isGroupChat=False表示非群聊消息
@itchat.msg_register([TEXT MAP CARD NOTE SHARING] isGroupChat=False)
def text_reply(msg):
itchat.send(‘这是我的小号,暂无调戏功能,有事请加我大号:Honlann‘ msg[‘FromUserName‘])
# 自动回复图片等类别消息
# isGroupChat=False表示非群聊消息
@itchat.msg_register([PICTURE RECORDING ATTACHMENT VIDEO] isGroupChat=False)
def download_files(msg):
itchat.send(‘这是我的小号,暂无调戏功能,有事请加我大号:Honlann‘ msg[‘FromUserName‘])
# 自动处理添加好友申请
@itchat.msg_register(FRIENDS)
def add_friend(msg):
itchat.add_friend(**msg[‘Text‘]) # 该操作会自动将新好友的消息录入,不需要重载通讯录
itchat.send_msg(u‘你好哇‘ msg[‘RecommendInfo‘][‘UserName‘])
# 自动回复文本等类别的群聊消息
# isGroupChat=True表示为群聊消息
@itchat.msg_register([TEXT SHARING] isGroupChat=True)
def grou
相关资源
- Python Machine Learning(第1版+第2版)-2
- Python机器学习实践指南中文版带书签
- Python机器学习及实践_从零开始通往
- Python机器学习及实践-从零开始通往
- Introduction to Machine Learning with Python英文
- Python-用python3opencv3做的中国车牌识别
- Python-各种对抗神经网络GAN大合集
- Python-Intel开源增强学习框架Coach
- Python-CENet用于2D医学图像分割的上下文
- nao机器人捡垃圾入桶
- Python Machine Learning( Python机器学习.
- python机器学习经典修正python3.x版
- NAO使用手册互动人形机器人绪论-简体
- Python机器学习及实践高清
- Practical Machine Learning with Python (2018)
- 高清原版《Python深度学习》2018中文版
- python机器学习-不用kinect骨架检测代码
- 《机器学习实战》python3完美运行代码
- Python-基于深度神经网络和蒙特卡罗树
- 2019新书系列-Introduction to Python Progra
- 《Python深度学习》高清中文版带目录
- Python-SPNLearningAffinityviaSpatialPropagatio
- Python-效果超赞的图片自动增强GANs非成
- 吴恩达老师机器学习课的笔记,Pyth
- tensorflow_gpu-1.13.1-cp37
- 菊安酱机器学习PDF.rar
- Python-VoiceactivitydetectionVAD语音端点检测
- Python机器学习基础教程中文版Introdu
- Python+Spark 2.0+Hadoop机器学习与大数据实
- python机器学习 中文版 Sebastian Raschka
评论
共有 条评论