PyWxDump/pywxdump/__init__.py

22 lines
910 B
Python
Raw Normal View History

2023-08-22 00:40:09 +08:00
# -*- coding: utf-8 -*-#
# -------------------------------------------------------------------------------
# Name: __init__.py.py
# Description:
# Author: xaoyaoo
# Date: 2023/10/14
2023-08-22 00:40:09 +08:00
# -------------------------------------------------------------------------------
2023-12-18 22:36:11 +08:00
from .wx_info import BiasAddr, read_info, get_wechat_db, encrypt, batch_decrypt, decrypt
from .wx_info import merge_copy_db, merge_msg_db, merge_media_msg_db, merge_db
from .analyzer.db_parsing import read_img_dat, read_emoji, decompress_CompressContent, read_audio_buf, read_audio, \
parse_xml_string, read_BytesExtra
from .analyzer import export_csv
2023-12-06 12:26:10 +08:00
from .ui import app_show_chat, get_user_list, export
2023-12-18 22:36:11 +08:00
import os, json
2023-10-14 23:53:06 +08:00
VERSION_LIST_PATH = os.path.join(os.path.dirname(__file__), "version_list.json")
with open(VERSION_LIST_PATH, "r", encoding="utf-8") as f:
VERSION_LIST = json.load(f)
2023-12-18 22:36:11 +08:00
__version__ = "2.3.26"