PyWxDump/pywxdump/db/dbSns.py
2024-08-13 17:37:07 +08:00

23 lines
934 B
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.

# -*- coding: utf-8 -*-#
# -------------------------------------------------------------------------------
# Name: Sns.py
# Description: 负责处理朋友圈相关数据
# Author: xaoyaoo
# Date: 2024/04/15
# -------------------------------------------------------------------------------
from .dbbase import DatabaseBase
from .utils import silk2audio
class SnsHandler(DatabaseBase):
_class_name = "Sns"
Media_required_tables = ["AdFeedsV8", "FeedsV20", "CommentV20", "NotificationV7", "SnsConfigV20", "SnsFailureV5",
"SnsGroupInfoV5", "SnsNoNotifyV5"]
"""
FeedsV20朋友圈的XML数据
CommentV20朋友圈点赞或评论记录
NotificationV7朋友圈通知
SnsConfigV20一些配置信息能读懂的是其中有你的朋友圈背景图
SnsGroupInfoV5猜测是旧版微信朋友圈可见范围的可见或不可见名单
"""