91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 4.43KB
    文件類型: .rar
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2024-05-06
  • 語(yǔ)言: Python
  • 標(biāo)簽: 微信??

資源簡(jiǎn)介

掃碼登錄,被撤回消息會(huì)自動(dòng)發(fā)到文件接收內(nèi)

資源截圖

代碼片段和文件信息

import?os
import?re
import?shutil
import?time
import?itchat
from?itchat.content?import?*

#?說(shuō)明:可以撤回的有文本文字、語(yǔ)音、視頻、圖片、位置、名片、分享、附件

#?{msg_id:(msg_frommsg_tomsg_timemsg_time_recmsg_typemsg_contentmsg_share_url)}
msg_dict?=?{}

#?文件存儲(chǔ)臨時(shí)目錄
rev_tmp_dir?=?“/wechat?not?withdraw“
if?not?os.path.exists(rev_tmp_dir):?os.mkdir(rev_tmp_dir)

#?表情有一個(gè)問(wèn)題?|?接受信息和接受note的msg_id不一致?巧合解決方案
face_bug?=?None


#?將接收到的消息存放在字典中,當(dāng)接收到新消息時(shí)對(duì)字典中超時(shí)的消息進(jìn)行清理?|?不接受不具有撤回功能的信息
#?[TEXT?PICTURE?MAP?CARD?SHARING?RECORDING?ATTACHMENT?VIDEO?FRIENDS?NOTE]
@itchat.msg_register([TEXT?PICTURE?MAP?CARD?SHARING?RECORDING?ATTACHMENT?VIDEO])
def?handler_receive_msg(msg):
????global?face_bug
????#?獲取的是本地時(shí)間戳并格式化本地時(shí)間
????msg_time_rec?=?time.strftime(“%Y-%m-%d?%H:%M:%S“?time.localtime())
????#?消息ID
????msg_id?=?msg[‘MsgId‘]
????#?消息時(shí)間
????msg_time?=?msg[‘CreateTime‘]
????#?消息發(fā)送人昵稱?|?這里也可以使用RemarkName備注 但是自己或者沒(méi)有備注的人為None
????msg_from?=?(itchat.search_friends(userName=msg[‘FromUserName‘]))[“NickName“]
????#?消息內(nèi)容
????msg_content?=?None
????#?分享的鏈接
????msg_share_url?=?None
????if?msg[‘Type‘]?==?‘Text‘?\
????????????or?msg[‘Type‘]?==?‘Friends‘:
????????msg_content?=?msg[‘Text‘]
????elif?msg[‘Type‘]?==?‘Recording‘?\
????????????or?msg[‘Type‘]?==?‘Attachment‘?\
????????????or?msg[‘Type‘]?==?‘Video‘?\
????????????or?msg[‘Type‘]?==?‘Picture‘:
????????msg_content?=?r““?+?msg[‘FileName‘]
????????#?保存文件
????????msg[‘Text‘](rev_tmp_dir?+?msg[‘FileName‘])
????elif?msg[‘Type‘]?==?‘Card‘:
????????msg_content?=?msg[‘RecommendInfo‘][‘NickName‘]?+?r“?的名片“
????elif?msg[‘Type‘]?==?‘Map‘:
????????x?y?location?=?re.search(
????????????“????????if?location?is?None:
????????????msg_content?=?r“緯度->“?+?x.__str__()?+?“?經(jīng)度->“?+?y.__str__()
????????else:
????????????msg_content?=?r““?+?location
????elif?msg[‘Type‘]?==?‘Sharing‘:
????????msg_content?=?msg[‘Text‘]
????????m

評(píng)論

共有 條評(píng)論

相關(guān)資源