您好,登錄后才能下訂單哦!
本文實例講述了Python使用itchat模塊實現群聊轉發,自動回復功能。分享給大家供大家參考,具體如下:
1.itchat自動把好友發來的消息,回復給他
僅能實現自動回復 原文給 好友發來的文本消息、圖片表情消息。
#!/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()
這里注冊了兩個消息類型,文本和圖片(表情),當微信接收到這兩個消息時就會進入注冊的函數simple_reply,msg是一個字典類型里面包含了消息數據包,有發送者、接收者、消息類型、消息內容等超多的信息
itchat要注冊消息類型,比如注冊了TEXT(itchat.content.text),就會接收文本消息,其他消息不會觸發函數。消息類型見庫中的content.py文件
消息類型判斷,msg['Type']
消息發起者,msg['FromUserName']
消息接收者,msg['ToUserName']
文本消息,msg['Content']
文件名字,msg['FileName']
,注:如果是自帶的表情就會顯示表情
2.自動轉發指定的群聊消息給指定的好友。
應用場景:每天會在微信群內收集訂餐的小伙伴名單,訂餐的回復+1,
由于時間跨度,群消息太多,手工上下翻 +1 的消息難免遺漏,所以這段腳本正好滿足此需求。
轉發的內容是:群內昵稱:+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()
更多關于Python相關內容感興趣的讀者可查看本站專題:《Python進程與線程操作技巧總結》、《Python Socket編程技巧總結》、《Python數據結構與算法教程》、《Python函數使用技巧總結》、《Python字符串操作技巧匯總》、《Python入門與進階經典教程》及《Python文件與目錄操作技巧匯總》
希望本文所述對大家Python程序設計有所幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。