欧美无码 2024 年最新 Python 基于 itchat 开源框架搭建微信机器东说念主详备教程(更新中)-CSDN博客
发布日期:2025-01-14 10:04    点击次数:200

欧美无码 2024 年最新 Python 基于 itchat 开源框架搭建微信机器东说念主详备教程(更新中)-CSDN博客

详细 ntwork 开源框架

ItChat 是一个基于 Python 的微信个东说念主号接口库。它通过封装微信 API,使得开荒者不错使用 Python 来节略地与微信进行交互,达成一系列微信联系的功能。这些功能包括但不限于发送和接纳讯息、取得好友列表和详备信息、以及进行群聊操作等。ItChat 提供了一套圣洁而巨大的 API欧美无码,闪开荒者粗略轻佻地在 Python 中践诺微信联系的操作。

ItChat 相沿 Python 2.x 和 3.x 版块,而况不错在多个操作系统平台上运行,包括 Windows、Mac 和 Linux 等。这使得开荒者不错把柄我方的需乞降环境聘用相宜的 Python 版块和操作系统。

ItCha t的初学使用相对约略。领先,你需要通过 pip 敕令安设 ItChat 库。安设完成后,你不错通过引入 ItChat 模块,并调用其提供的函数来达成所需的功能。举例,你不错使用 ItChat 的 login() 函数来扫码登录微信,然后使用 get_friends() 函数来取得好友列表和详备信息。此外 ItChat 还提供了发送讯息、注册讯息恢复等功能,使开荒者粗略把柄我方的需求定制微信机器东说念主的当作。

ItChat 不仅是一个功能巨大的器用,亦然一个开源名堂,这意味着开荒者不错把柄我方的需求对其进行膨胀和定制。通过 ItChat,你不错开荒出各式兴味兴味的微信利用,如自动恢复讯息、数据辘集、搭建微信聊天机器东说念主等。

框架 API 文档:https://itchat.readthedocs.io/zh/latest/api/

下载安设 itchat 库

使用 pip 进行安设下载 itchat 库

pip install itchat

清华大学开源软件镜像站

使用如下敕令建树 pip 使用清华大学的镜像源:

pip install itchat -i https://pypi.tuna.tsinghua.edu.cn/simple

若是始终修复这个镜像源,不错创建一个 pip 建树文献(举例:~/.pip/pip.conf)并添加如下推行:

[global]  
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
itchat 登录相当处理有策动
import itchat

itchat.auto_login()

运行测试效果

Getting uuid of QR code.
Downloading QR code.
Please scan the QR code to log in.
Please press confirm on your phone.
Traceback (most recent call last):
······
xml.parsers.expat.ExpatError: mismatched tag: line 64, column 4

相当处理有策动:更新 itchat 库

itchat 库 zip 压缩包结合 https://download.csdn.net/download/qq_47452807/89129949?spm=1001.2014.3001.5503

点击 立即下载 下载新的 itchat 库 zip 压缩包

图片

解压缩 > itchat 文献夹

图片

进行 site-packages 替换 itchat 原库文献夹

图片

再走运行测试

Ready to login.
Getting uuid of QR code.
Downloading QR code.
Please press confirm on your phone.
Loading the contact, this may take a little while.
Login successfully as 一语中的
Start auto replying.
itchat 公约领悟

终点难得:使用itchat或其他雷同器用进行微信操作需要战胜微信的使用公约和联系法律规章,不得用于违警或坏心贪图。同期,由于微信的公约和接口可能随时变化,使用 itchat 品级三方器用时需要难得实时更新和适配。

当今注册的微信也曾不容网页版登陆了,itchat 是基于 web 公约,若是你的微信是 2017 年之后的,或者未进行实名认证的微信号,可能会遭受登录失败的报错。请聘用合理的微信号进行登录。

给文献传输助手发信息
import itchat

itchat.auto_login()
itchat.send('Hello, filehelper', toUserName='filehelper')

运行效果:

图片

自动恢复文本讯息

自动恢复文本讯息

import itchat
from itchat.content import *

@itchat.msg_register(TEXT)
def text_reply(msg):
    return msg.text

itchat.auto_login()
itchat.run()

函数领悟:

开启一个讯息注册器监听来私用户私信的文本类型讯息,自动恢复用户私信发送讯息的推行(文本讯息)

测试效果

图片

自动恢复群讯息

开启一个讯息注册器监听来自群的文本类型讯息。当收到一个来自微信群的文本讯息时,请调用界说的处理函数,达成自动恢复。

import itchat
from itchat.content import *

@itchat.msg_register(TEXT, isGroupChat=True)
def text_reply(msg):
    if msg.isAt:
        msg.user.send(u'@%s I received: %s' % (msg.actualNickName, msg.text))

itchat.auto_login()
itchat.run()

itchat.msg_register 这是 itchat 库中的一个函数,用于注册讯息处理函数。当你收到微信讯息时,itchat会把柄你的注册情况调用相应的处理函数。

TEXT 这是一个常量,代表文本讯息类型。当itchat收到一个文本讯息时,它会查验是否有为这个类型注册的处理函数。

isGroupChat=True 这是一个参数,用于指定这个函数只处理来自微信群的文本讯息,而不是来自好友或公众号等其他着手的讯息。

运行效果:

图片

itchat 讯息类型

讯息注册器讯息类型:itchat.content

TEXT       = 'Text'
MAP        = 'Map'
CARD       = 'Card'
NOTE       = 'Note'
SHARING    = 'Sharing'
PICTURE    = 'Picture'
RECORDING  = VOICE = 'Recording'
ATTACHMENT = 'Attachment'
VIDEO      = 'Video'
FRIENDS    = 'Friends'
SYSTEM     = 'System'
'运行
取得 uuid 账号绚烂

何如要进行登录你需要先得到一个 uuid,当下载 QRcode 需要传递 uuid 生成二维码,为了查验登录景色,还需要 uuid 判断现时用户。

import itchat

uuid = itchat.get_QRuuid()
范围台登录二维码暴露

通过以下敕令不错在登陆的时候使用敕令行暴露二维码:

itchat.auto_login(enableCmdQR=True)

部分系统可能字幅宽度有不同,不错通过将enableCmdQR赋值为特定的倍数进行养息:

itchat.auto_login(enableCmdQR=2)

难得:部分 linux 系统,块字符的宽度为一个字符(泛泛应为两字符)故赋值为 2

默许范围台背昂扬是暗色(玄色)。若背昂扬是淡色(白色)将 enableCmdQR 赋值为负值:

itchat.auto_login(enableCmdQR=-1)
二维码图片暴露

itchat 库提供了 get_QR 函数用于下载暴露二维码欧美无码。

def get_QR(self, uuid=None, enableCmdQR=False, picDir=None, qrCallback=None):
    ''' download and show qrcode

取得登录二维码而况暴露

import itchat

uuid = itchat.get_QRuuid()
itchat.get_QR(uuid)

难得:践诺 itchat.auto_login() 自动登录功能生成二维码进行预览暴露。

检测登录景色

输出现时微信登陆景色的景色码

import itchat

uuid = itchat.get_QRuuid()
status_code = itchat.check_login(uuid)
print(status_code)

若是未修复 uuid 则将使用您取得的最新 uuid:

import itchat

status_code = itchat.check_login()
print(status_code)

景色码领悟

- 200: 登陆得手
- 201: 恭候客户端阐明登陆
- 408: uuid 超时
- 0  : 相当报错
主动退出登陆
import itchat

itchat.auto_login()

time.sleep(10)

item
退出设施暂存登陆景色

通过如下敕令登陆,即使设施关闭,一定技艺内再行开启也不错不必再行扫码。

import itchat

itchat.auto_login(hotReload=True)
保存登陆数据 itchat.pkl

pickle 数据体式领悟

pkl 是 Python 编程说话中的一种数据序列化文献体式,其全称是 pickle。这种体式不错将 Python 中的狂放对象袭击为一种不错保存到磁盘上或通过收集传输的体式,然后再将这些对象从磁盘上读取出来或者从收集上接纳过来,再行规复为原本的 Python 对象。这种武艺使得 pkl 体式文献在 Python 编程中极度有效,尤其是在需要保存和加载复杂数据结构或自界说对象时。

具体来说 pkl 文献是以二进制体式保存的,它包含了对象的景色信息,包括对象的数据良善序。这种存储形貌不错将Python名堂经由顶用到的一些暂时变量、或者需要提真金不怕火、暂存的字符串、列表、字典等数据保存起来,然后在需要使用的时候再进行加载。

在 Python 中 pickle 模块提供了 dump() 和 load() 函数,用于将 Python 对象保存到 pkl 文献和从 pkl 文献加载对象到内存中。使用这些函数,不错节略地达成 Python 对象的序列化和反序列化,从而达成数据的捏久化存储和传输。

需要难得的是,由于pkl文献是以二进制体式保存的,因此在不同的操作系统或Python版块之间可能会出现兼容性问题。此外,在处理来自不行信着手的pkl文献时也需要格外留心,因为加载坏心构造的pkl文献可能会导致安全问题。

存储登陆数据

import itchat
itchat.auto_login(hotReload=True)


itchat.dump_login_status("itchat.pkl")

加载登陆数据

import itchat

itchat.load_login_status("itchat.pkl")

难得:itchat.pkl 存储了举例研究东说念主数据、群组数据、个东说念主信息数据······

取得研究东说念主数据

取恰现时登陆微信下一皆研究东说念主数据(土产货数据 / 实时数据)

get_friends 函数

def get_friends(self, update=False):

终点难得:若是不修复 update 取得是土产货 local 数据(itchat.pkl 数据)

读取实时数据:读取现时登陆态数据

import itchat
itchat.auto_login(hotReload=True)

friendList = itchat.get_friends(update=True)

for friend in friendList:
    print(friend)

读取土产货数据:不登录也相同不错读取数据(itchat.pkl 数据加载)

import itchat

itchat.load_login_status("itchat.pkl")
friendList = itchat.get_friends(update=False)

for friend in friendList:
    print(friend)

咱们莫得进行 itchat 扫描登陆操作,通过加载 itchat.pkl 登陆数据,相同查询到研究东说念主数据。

查询研究东说念主用户数据

使用 search_friends 递次不错搜索用户

1. 仅取得我方的用户信息。
2. 取得特定 UserName 的用户信息。
3. 取得备注、微信号、昵称中的任何一项就是 name 键值的用户。
4. 取得备注、微信号、昵称分手就是相应键值的用户。
5. ······

函数体领悟

def search_friends(self, name=None, userName=None, remarkName=None, nickName=None, wechatAccount=None):

案例领悟

取得我方的用户信息,复返我方的属性字典

itchat.search_friends()

取得特定 UserName 的用户信息

itchat.search_friends(userName='@abcdefg1234567')

取得任何一项就是 name 键值的用户

itchat.search_friends(name='littlecodersh')

取得分手对应相应键值的用户

itchat.search_friends(wechatAccount='littlecodersh')

组合查询

itchat.search_friends(name='LittleCoder机器东说念主', wechatAccount='littlecodersh')

wechatAccount 安全性终点领悟

由于腾讯筹议安全性问题,更新了 web 端安全信息保护机制。目下来说,微信网页端也曾无法取得用户微信账号 wechatAccount 属性。是以 itchat.search_friends(wechatAccount='littlecodersh’) 查询都是为 [] 空。

用户属性案例领悟

查询指定 userName 用户信息

import itchat
itchat.auto_login(hotReload=True)

friends = itchat.search_friends(userName='@16b071aa1a7c5b67b0c7911ede8cc53db5bd0c4d63f059142be7a5d6168ff074')
print(friends[0])

查询昵称 '番茄土豆’ 用户信息(相较于 userName 来说 nickName 更节略使用)

import itchat
itchat.auto_login(hotReload=True)

friends = itchat.search_friends(nickName='番茄土豆')
print(friends[0])

数据体式领悟

'MemberList': '<ContactList: []>',  
'Uin': 0,  
'UserName': '@16b071aa1a7c5b67b0c7911ede8cc53db5bd0c4d63f059142be7a5d6168ff074',  
'NickName': '番茄土豆',  
'HeadImgUrl': '/cgi-bin/mmwebwx-bin/webwxgeticon?seq=768678887&username=@16b071aa1a7c5b67b0c7911ede8cc53db5bd0c4d63f059142be7a5d6168ff074&skey=@crypt_13d84e54_651a5a10883168912a00eb384261832c',  
'ContactFlag': 3,  
'MemberCount': 0,  
'RemarkName': '',  
'HideInputBarFlag': 0,  
'Sex': 0,  
'Signature': '',  
'VerifyFlag': 0,  
'OwnerUin': 0,  
'PYInitial': 'PJTD',  
'PYQuanPin': 'panjiatudou',  
'RemarkPYInitial': '',  
'RemarkPYQuanPin': '',  
'StarFriend': 0,  
'AppAccountFlag': 0,  
'Statues': 0,  
'AttrStatus': 102437,  
'Province': '',  
'City': '',  
'Alias': '',  
'SnsFlag': 1,  
'UniFriend': 0,  
'DisplayName': '',  
'ChatRoomId': 0,  
'KeyWord': '',  
'EncryChatRoomId': '',  
'IsOwner': 0  

图片

修复研究东说念主置顶

在 itchat 的早期版块中,set_pinned 递次用来修复某个微信好友为置顶好友的。然而,由于微信官方接口的变化,这个递次当今可能也曾无法使用了。

查询昵称:番茄土豆的研究东说念主修复置顶操作

import itchat
itchat.auto_login(hotReload=True)


friend_list = itchat.search_friends(nickName='番茄土豆')

if friend_list:
    contact = friend_list[0]
    userName = contact.UserName
    baseResponse = itchat.set_pinned(userName=userName, isPinned=True)
    if baseResponse['BaseResponse']['Ret'] == 0:
        print("success")
    else:
        print("fail")

baseResponse 属性

{'BaseResponse': {'Ret': 0, 'ErrMsg': '肯求得手', 'RawMsg': '肯求得手'}}
'运行
资源上传案例

进行资源文献上传微信办事器取得媒体 ID 即 MediaId。

def upload_file(self, fileDir, isPicture=False, isVideo=False, toUserName='filehelper', file_=None, preparedFile=None):

上传图片资源类型案例

import itchat  
  
itchat.auto_login(hotReload=True)  
  
baseResponse = itchat.upload_file('image.jpg', isPicture=True)

if baseResponse['BaseResponse']['Ret'] == 0:
    MediaId = baseResponse['MediaId']
    print("success")
else:
    print("fail")

baseResponse

{'BaseResponse': {'Ret': 0, 'ErrMsg': '肯求得手', 'RawMsg': '肯求得手'}, 'MediaId': '@crypt_e4c0786c_eb0f1099f841e1f83929986d0cf72492fce0876379a21067dc3b8f5fcbcb2bde100a639cf8abb8e6b54b74305187c3bf9ef4dfa1a71d5e255c114b90f27b44aa7c32d4770a79308c1c562a562872afec89d2ed2ce6762de846161b1f3958bdd0681477e152e1f49bcd32c1d36bcabf85b43b5a5ba641d78ccd7bd3aef24a045763d8015b7c980a65663f190b4787f50c2230f67064e9e1ac62382e0a69e91693f347643103e9283742a0ffe9ca4cf3bc080da5c9dd9d5acda2eb4874c56960c6837380e27968593474be01ddc1a633326d8e74c09651b3255026fe665084a5dbca8e29bacc70e84d08e5dec6e74f95fc224251d55ae7f832fe25580d3fa086c1b099d0c2d180fa6615b478eb0e09af6e91cc8b0ff4571f928593c0d68e6be951', 'StartPos': 54082, 'CDNThumbImgHeight': 100, 'CDNThumbImgWidth': 100, 'EncryFileName': 'image.jpg'}
'运行

上传视频资源类型案例

import itchat  
  
itchat.auto_login(hotReload=True)  
  
baseResponse = itchat.upload_file('video.mp4', isVideo=True)

print(baseResponse)

if baseResponse['BaseResponse']['Ret'] == 0:
    MediaId = baseResponse['MediaId']
    print("success")
else:
    print("fail")
发送图片类型讯息

send_image 函数:发送指定用户指定图片类型

def send_image(self, fileDir=None, toUserName=None, mediaId=None, file_=None):

函数领悟:

属性 toUserName:指定所需要发送给他(她)图片的用户。

属性 fileDir:	文献地址,默许情况下 send_image 会先把土产货图片资源上传到微信办事器,然后进行发送图片。

属性 mediaId:	媒体 Id,通过 itchat.upload_file 取得,若建树了,就不会重叠加载土产货资源,先上传微信办事器,然后再进行发送,而是获胜从微信办事器进行读取,然后进行发送图片。
 
属性 file_:		指定file 对象。建树绽放景色下 file 对象(with open ··· 绽放)。

查询昵称 番茄土豆 研究东说念主发送 image.jpg 图片

import itchat
itchat.auto_login(hotReload=True)


itchat.dump_login_status("itchat.pkl")

friend_list = itchat.search_friends(nickName='番茄土豆')
if friend_list:
    friend = friend_list[0]
    baseResponse = itchat.send_image(fileDir="image.jpg", toUserName=friend.UserName)
    if baseResponse['BaseResponse']['Ret'] == 0:
        print("success")
    else:
        print("fail")

运行效果

图片

文献诞妄 baseResponse 常见报错

{'BaseResponse’: {'ErrMsg’: '文献位置诞妄’, 'Ret’: -1002, 'RawMsg’: 'No file found in specific dir’}}

建树 MediaId 进行发送图片(案例实验)

准备两张疏浚大小、疏浚分辨率、疏浚文献类型的图片 image1.jpg、image2.jpg(不错应酬找张图片复制一个副本进行实验)

import time
import itchat

itchat.auto_login(hotReload=True)


itchat.dump_login_status("itchat.pkl")

friend_list = itchat.search_friends(nickName='夜雨星空')
if friend_list:
    friend = friend_list[0]

    start_time = time.time()
    print("第 1 次开动技艺:", start_time)
    baseResponse = itchat.send_image(fileDir="image1.jpg", toUserName=friend.UserName)
    if baseResponse['BaseResponse']['Ret'] == 0:
        print("success")
    else:
        print("fail")
    end_time = time.time()
    print("第 1 次末端技艺:", end_time)
    print("第 1 次破耗技艺:", end_time - start_time)

    MediaId = None
    baseResponse = itchat.upload_file('image2.jpg', isPicture=True)
    if baseResponse['BaseResponse']['Ret'] == 0:
        MediaId = baseResponse['MediaId']
        print("success")
    else:
        print("fail")

    time.sleep(5)

    if MediaId:
        start_time = time.time()
        print("第 2 次开动技艺:", start_time)
        baseResponse = itchat.send_image(fileDir="image2.jpg", toUserName=friend.UserName, mediaId=MediaId)
        if baseResponse['BaseResponse']['Ret'] == 0:
            print("success")
        else:
            print(baseResponse)
            print("fail")
        end_time = time.time()
        print("第 2 次末端技艺:", end_time)
        print("第 2 次破耗技艺:", end_time - start_time)

	time.sleep(5)

    with open("image.jpg", 'rb') as image:

        start_time = time.time()
        print("第 3 次开动技艺:", start_time)
        baseResponse = itchat.send_image(toUserName=friend.UserName, file_=image)
        if baseResponse['BaseResponse']['Ret'] == 0:
            print("success")
        else:
            print(baseResponse)
            print("fail")
        end_time = time.time()
        print("第 3 次末端技艺:", end_time)
        print("第 3 次破耗技艺:", end_time - start_time)

图片

实验效果:

第 1 次开动技艺: 1713025956.1631649
success
第 1 次末端技艺: 1713025957.1552198
第 1 次破耗技艺: 0.9920549392700195
success
第 2 次开动技艺: 1713025962.2728899
success
第 2 次末端技艺: 1713025962.7113612
第 2 次破耗技艺: 0.43847131729125977
第 3 次开动技艺: 1713025967.712695
success
第 3 次末端技艺: 1713025968.5231287
第 3 次破耗技艺: 0.8104338645935059

实验数据标明:第一次的技艺是 0.90 秒,第二次的技艺是 0.33 秒,第三次的技艺是 0.81 秒。领悟提前把图片资源数据上传到微信办事器,都要比每次土产货读取图片资源上传的技艺支拨要短。

常见问题

{'BaseResponse’: {'ErrMsg’: '参数诞妄’, 'Ret’: -1005, 'RawMsg’: 'Either fileDir or file_ should be specific’}} 文献旅途 fileDir 和 file_ 必须要指定一个。

发送视频类型讯息

查询昵称 夜雨星空 研究东说念主发送 video.mp4 视频

import itchat
itchat.auto_login(hotReload=True)


itchat.dump_login_status("itchat.pkl")

friend_list = itchat.search_friends(nickName='夜雨星空')
if friend_list:
    friend = friend_list[0]
    baseResponse = itchat.send_video(fileDir="video.mp4", toUserName=friend.UserName)
    if baseResponse['BaseResponse']['Ret'] == 0:
        print("success")
    else:
        print("fail")

测试效果

图片

接纳语音类型讯息

开启一个私聊监听语音讯息的讯息注册器,存储私信的语音数据。

import itchat
from itchat.content import *
import time

itchat.auto_login(hotReload=True)


@itchat.msg_register(VOICE)
def download_voice(msg):
	print(msg)
    get_download_fn = msg['Text']
    with open(f"voice_{str(time.time())}.mp3", 'wb') as file:
        file.write(get_download_fn())
        print("success")

itchat.run()

图片

msg 讯息体

{'MsgId': '5692830849988916957', 'FromUserName': '@c0fe14053c62806a81dddb991a99310762a24834c5659209e734b4a8f28e9cf4', 'ToUserName': '@1c36f5debae32a8091e98b867bd3942b880c025866707bc030759313a59616bf', 'MsgType': 34, 'Content': '@f775c6e5de55b0355b2898694e8b33290adce345777eaecf27f83af03663a376d7069003478ce56bdfb935976a0856e53f61ed2a6e50a66803a7b83a6b305cb820617d71ffb4db4064b0a7a08ad04afdf32e6f2f3e1a97694c12ebe9f289dc331f8cda876b8bf0bef46c023917ed48d3843596068fe6950ee111ec729e7209aebc9ee29a0030a5d8711a22a469dbc4c38386c9c455aeb04ddaf3b37d052508b1598ad1a40e12deb2c4c789608c09552e94a18b77d82239992d54a3341d69e466a1bc2fb06909ae69b72d9ddf6a6f962e702e49bb26247bcd7f82a9f3b2d5c4891a060c0c54c812c8c17b046dd3a951fabab83e378690594084913f9d3d3a5afaf02379dcae8d106c7f934ab4303c08f18a0ccabb899cd93e6be0eba2d0b0207a249af537a729cd84e839f833c5b1f3832d6c53250a97c73822481f89eb4ea94bb80b3d4598ad6063b0d5f07b3b00f4ca7477ac22de031f78627d4e6176cbdfa721d039167e61f502baccc6c803ca3b347e7777715686e7ab90d79e86747c453693fcca3e424dcd4c1db4d5635d75cd3d47e059b81dbfb6f1a2e943a5dd3f154c55575827e5c52531139862df8a7f2d3a41d272077655e98b4c9ab75f127caff484269a0120b2f89297756259e732b2ff5b4d073be1a0336ef8ac52a2504e5fd6', 'Status': 3, 'ImgStatus': 1, 'CreateTime': 1713029115, 'VoiceLength': 1648, 'PlayLength': 0, 'FileName': '240414-012516.mp3', 'FileSize': '', 'MediaId': '', 'Url': '', 'AppMsgType': 0, 'StatusNotifyCode': 0, 'StatusNotifyUserName': '', 'RecommendInfo': {'UserName': '', 'NickName': '', 'QQNum': 0, 'Province': '', 'City': '', 'Content': '', 'Signature': '', 'Alias': '', 'Scene': 0, 'VerifyFlag': 0, 'AttrStatus': 0, 'Sex': 0, 'Ticket': '', 'OpCode': 0}, 'ForwardFlag': 0, 'AppInfo': {'AppID': '', 'Type': 0}, 'HasProductId': 0, 'Ticket': '', 'ImgHeight': 0, 'ImgWidth': 0, 'SubMsgType': 0, 'NewMsgId': 5692830849988916957, 'OriContent': '', 'EncryFileName': '', 'User': <User: {'MemberList': <ContactList: []>, 'Uin': 0, 'UserName': '@c0fe14053c62806a81dddb991a99310762a24834c5659209e734b4a8f28e9cf4', 'NickName': '王牌哥哥', 'HeadImgUrl': '/cgi-bin/mmwebwx-bin/webwxgeticon?seq=768687014&username=@c0fe14053c62806a81dddb991a99310762a24834c5659209e734b4a8f28e9cf4&skey=@crypt_13d84e54_0eb12882a8a3a1f04047afebf03db315', 'ContactFlag': 3, 'MemberCount': 0, 'RemarkName': '糯米宝宝', 'HideInputBarFlag': 0, 'Sex': 0, 'Signature': '', 'VerifyFlag': 0, 'OwnerUin': 0, 'PYInitial': 'WPGG', 'PYQuanPin': 'wangpaigege', 'RemarkPYInitial': 'NMBB', 'RemarkPYQuanPin': 'nuomibaobao', 'StarFriend': 0, 'AppAccountFlag': 0, 'Statues': 0, 'AttrStatus': 4135, 'Province': '', 'City': '', 'Alias': '', 'SnsFlag': 256, 'UniFriend': 0, 'DisplayName': '', 'ChatRoomId': 0, 'KeyWord': '', 'EncryChatRoomId': '', 'IsOwner': 0}>, 'Type': 'Recording', 'Text': <function get_download_fn.<locals>.download_fn at 0x000002D7F7C763E0>}

get_download_fn:<function get_download_fn..download_fn at 0x0000020E7E2B63E0>

存储语音数据

图片

发送文献类型讯息

send_file:发送文献函数(指定群 / 用户发送文献)

def send_file(self, fileDir, toUserName=None, mediaId=None, file_=None):

函数领悟:

属性 toUserName:指定所需要发送给他(她)文献资源的用户。

属性 fileDir:	文献地址,默许情况下 send_file 会先把土产货文献资源上传到微信办事器,然后进行发送文献资源。

属性 mediaId:	媒体 Id,通过 itchat.upload_file 取得,若建树了,就不会重叠加载土产货资源,先上传微信办事器,然后再进行发送,而是获胜从微信办事器进行读取,然后进行发送图片。
 
属性 file_:		指定 file 对象。建树绽放景色下 file 对象(with open ··· 绽放)。

查询昵称 夜雨星空 研究东说念主发送 helloworld.docx 文档

import itchat
itchat.auto_login(hotReload=True)


itchat.dump_login_status("itchat.pkl")

friend_list = itchat.search_friends(nickName='夜雨星空')
if friend_list:
    friend = friend_list[0]
    baseResponse = itchat.send_file(fileDir="./helloworld.docx", toUserName=friend.UserName)
    if baseResponse['BaseResponse']['Ret'] == 0:
        print("success")
    else:
        print("fail")

测试效果

图片

取得微信群数据

取恰现时登陆微信下一皆微信群数据(土产货数据 / 实时数据)

get_chatrooms 函数

def get_chatrooms(self, update=False, contactOnly=False):

终点难得:若是不修复 update 取得是土产货 local 数据(itchat.pkl 数据)。属性 contactOnly 若是建树了 True,则仅复返 starred 象征了的微信群。

读取实时数据:读取现时登陆态数据

import itchat
itchat.auto_login(hotReload=True)

chatroom_list = itchat.get_chatrooms(update=True)

for room in chatroom_list:
    print(room)

读取土产货数据:不登录也相同不错读取数据(itchat.pkl 数据加载)

import itchat

itchat.dump_login_status("itchat.pkl")
chatroom_list = itchat.get_chatrooms(update=False)

for room in chatroom_list:
    print(room)

咱们莫得进行 itchat 扫描登陆操作,通过加载 itchat.pkl 登陆数据,相同查询到微信群数据。

修复微信群称呼

查询 “叫醒手腕测试群” 微信群修复新的群称呼:叫醒手腕新群

import itchat
itchat.auto_login(hotReload=True)


itchat.dump_login_status("itchat.pkl")
chatroom_list = itchat.get_chatrooms(update=True)

for room in chatroom_list:
    if room.NickName == "叫醒手腕测试群":
        baseResponse = itchat.set_chatroom_name(chatroomUserName=room.UserName, name="叫醒手腕新群")
        if baseResponse['BaseResponse']['Ret'] == 0:
            print("success")
        else:
            print("fail")

终点难得:由于微信 web 公约圮绝(修复群称呼功能可能也曾失效了)

查询微信群发送讯息

通过 get_friends 递次不错轻佻取得通盘的好友(好友首位是我方)。进行判断群名匹配,从而取得群的 UserName 属性进行发送指定群讯息。

.env 建树文献

SEND_ROOM_NAME=叫醒手腕测试群

达成源码

import itchat
from itchat.content import *

import dotenv
dotenv.load_dotenv('.env')

itchat.auto_login()

chatroom_list = itchat.get_chatrooms(update=True)
for room in chatroom_list:
    if room.NickName == os.getenv("SEND_ROOM_NAME"):
        GROUP_USERNAME = room.UserName

message = "叫醒手腕"        
itchat.send_msg(msg=message, toUserName=GROUP_USERNAME)

itchat.run()

图片

达成讯息群发助手

通过 get_friends 递次不错轻佻取得通盘的好友(好友首位是我方)。基于不同的好友不错发送不同的讯息。这条设施运行后是果然会发讯息出去,若是仅仅演示贪图,把 itchat.send 改为 print 即可。

import itchat
import time
itchat.auto_login(True)

SINCERE_WISH = u'祝%s新年欣忭!'

friendList = itchat.get_friends(update=True)[1:]
for friend in friendList:
    itchat.send(SINCERE_WISH % (friend['DisplayName'] or friend['NickName']), friend['UserName'])
    time.sleep(.5)
登陆踏实性常见问题

敕令行登录一段技艺后无法与办事器泛泛交互,这是因为微信网页端存在心跳机制,一段技艺不交互将会断开结合。另外,每次取得数据时(webwxsync)铭刻更新 SyncKey。

苍井空A级在线观看网站

待更新······欧美无码

本站仅提供存储办事,通盘推行均由用户发布,如发现存害或侵权推行,请点击举报。