5.微信拜年短信自动回复

#此程序需在有网络的条件下运行

import itchat
from itchat.content import *
import re

@itchat.msg_register([TEXT])
def text_reply(msg):
    print("..%s.."%msg['Text'])
    #span去除前后空格 再进行匹配
    match = re.search('',msg['Text']).span()
    if match:
        itchat.send('你也新年快乐啊~',msg['FromUserName'])
    else:
        print('haha')
#程序一运行,生成一个二维码,等待用户扫描
itchat.auto_login(enableCmdQR=True,hotReload=True)
itchat.run()

 

posted @ 2018-03-23 21:06  Bob__Zhang  阅读(340)  评论(0编辑  收藏  举报