WeChatMsg/example/2-contact.py
2025-03-28 23:43:00 +08:00

41 lines
1.2 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@Time : 2025/3/11 20:46
@Author : SiYuan
@Email : 863909694@qq.com
@File : wxManager-2-contact.py
@Description :
"""
import time
from wxManager import DatabaseConnection
db_dir = '' # 解析后的数据库路径,例如:./db_storage
db_version = 4 # 数据库版本4 or 3
conn = DatabaseConnection(db_dir, db_version) # 创建数据库连接
database = conn.get_interface() # 获取数据库接口
st = time.time()
cnt = 0
contacts = database.get_contacts()
for contact in contacts:
print(contact)
contact.small_head_img_blog = database.get_avatar_buffer(contact.wxid)
cnt += 1
if contact.is_chatroom:
print('*' * 80)
print(contact)
chatroom_members = database.get_chatroom_members(contact.wxid)
print(contact.wxid, '群成员个数:', len(chatroom_members))
for wxid, chatroom_member in chatroom_members.items():
chatroom_member.small_head_img_blog = database.get_avatar_buffer(wxid)
print(chatroom_member)
cnt += 1
et = time.time()
print(f'联系人个数:{cnt} 耗时:{et - st:.2f}s')