您好,登錄后才能下訂單哦!
本文實例講述了Python使用itchat模塊實現(xiàn)群聊轉(zhuǎn)發(fā),自動回復(fù)功能。分享給大家供大家參考,具體如下:
1.itchat自動把好友發(fā)來的消息,回復(fù)給他
僅能實現(xiàn)自動回復(fù) 原文給 好友發(fā)來的文本消息、圖片表情消息。
#!/usr/bin/python #coding=utf-8 import itchat from itchat.content import * @itchat.msg_register([PICTURE,TEXT]) def simple_reply(msg): if msg['Type'] == TEXT: ReplyContent = 'I received message: '+msg['Content'] if msg['Type'] == PICTURE: ReplyContent = 'I received picture: '+msg['FileName'] itchat.send_msg(ReplyContent,msg['FromUserName']) itchat.auto_login() itchat.run()
這里注冊了兩個消息類型,文本和圖片(表情),當(dāng)微信接收到這兩個消息時就會進(jìn)入注冊的函數(shù)simple_reply,msg是一個字典類型里面包含了消息數(shù)據(jù)包,有發(fā)送者、接收者、消息類型、消息內(nèi)容等超多的信息
itchat要注冊消息類型,比如注冊了TEXT(itchat.content.text),就會接收文本消息,其他消息不會觸發(fā)函數(shù)。消息類型見庫中的content.py文件
消息類型判斷,msg['Type']
消息發(fā)起者,msg['FromUserName']
消息接收者,msg['ToUserName']
文本消息,msg['Content']
文件名字,msg['FileName']
,注:如果是自帶的表情就會顯示表情
2.自動轉(zhuǎn)發(fā)指定的群聊消息給指定的好友。
應(yīng)用場景:每天會在微信群內(nèi)收集訂餐的小伙伴名單,訂餐的回復(fù)+1,
由于時間跨度,群消息太多,手工上下翻 +1 的消息難免遺漏,所以這段腳本正好滿足此需求。
轉(zhuǎn)發(fā)的內(nèi)容是:群內(nèi)昵稱:+1
#!/usr/bin/python #coding=UTF-8 import itchat from itchat.content import * @itchat.msg_register([PICTURE,TEXT],isGroupChat=True) def simple_reply(msg): users = itchat.search_friends(name=u'測試23')#通訊錄中好友備注名 userName = users[0]['UserName'] if msg['Content'] == "+1": itchat.send(u'%s\u2005: %s '%(msg['ActualNickName'],msg['Content']),toUserName=userName) itchat.auto_login()#enableCmdQR=True 可以在命令行顯示二維碼 itchat.run()
更多關(guān)于Python相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Python進(jìn)程與線程操作技巧總結(jié)》、《Python Socket編程技巧總結(jié)》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》、《Python入門與進(jìn)階經(jīng)典教程》及《Python文件與目錄操作技巧匯總》
希望本文所述對大家Python程序設(shè)計有所幫助。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。